@charset "UTF-8";

.aligncenter { text-align:center;  margin: auto;
  display: block;}

@-webkit-keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


@keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes hide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes hide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

a:hover {
  outline: none;
}

a:active {
  outline: none;
}

a:focus {
  outline: none;
}

@media screen and (min-width: 767px) {
  /* =================================
    hover
  ================================= */
  a {
    transition-timing-function: ease-out;
    transition-duration: 0.2s;
    transition-property: all;
  }
  .widelink {
    cursor: pointer;
    transition-timing-function: ease-out;
    transition-duration: 0.2s;
    transition-property: all;
  }
  .widelink .widelink__cover {
    position: relative;
    overflow: hidden;
  }
  .widelink .widelink__cover::before {
    position: absolute;
    z-index: 6;
    top: 45%;
    left: 50%;
    width: 55%;
    padding: 10px 0;
    border: 1px solid #fff;
    font-size: 1.4rem;
    line-height: 1;
    color: #fff;
    text-align: center;
    letter-spacing: .06em;
    content: "詳しく見る";
    opacity: 0;
    transition-timing-function: ease-out;
    transition-duration: 0.15s;
    transition-property: opacity,top;
    transform: translate(-50%, -50%);
  }
  .widelink .widelink__cover::after {
    position: absolute;
    z-index: 5;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(31, 31, 31, 0.5);
    color: white;
    content: "";
    opacity: 0;
    transition-timing-function: ease-out;
    transition-duration: 0.15s;
    transition-property: opacity;
  }
  .widelink .widelink__article {
    position: relative;
    overflow: hidden;
  }
  .widelink .widelink__article::before {
    position: absolute;
    z-index: 6;
    top: 45%;
    left: 50%;
    padding: 10px 0;
    font-size: 1.2rem;
    line-height: 1;
    color: #fff;
    text-align: center;
    content: "この記事を読む";
    opacity: 0;
    transition-timing-function: ease-out;
    transition-duration: 0.15s;
    transition-property: opacity,top;
    transform: translate(-50%, -50%);
  }
  .widelink .widelink__article::after {
    position: absolute;
    z-index: 5;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(31, 31, 31, 0.3);
    color: white;
    content: "";
    opacity: 0;
    transition-timing-function: ease-out;
    transition-duration: 0.15s;
    transition-property: opacity;
  }
  .widelink:hover a {
    text-decoration: none;
  }
  .widelink:hover .widelink__cover::before, .widelink:hover .widelink__article::before {
    top: 50%;
    opacity: 1;
  }
  .widelink:hover .widelink__cover::after, .widelink:hover .widelink__article::after {
    opacity: 1;
  }
  .hoverBg .widelink__cover::before {
    content: none;
  }
  .hoverBg .widelink__cover::after {
    content: none;
  }
  .hoverBg:hover {
    background: #ebfafa;
  }
}

/*=================================
  button
=================================*/
.btnWrap {
  margin: 20px auto 30px;
}

.btnWrap.center {
  text-align: center;
}

.btnWrap.right {
  text-align: right;
}

.btnWrap > * + * {
  margin-top: 9px;
}

.btn--red {
  display: inline-block;
  width: 100%;
  padding: 17px 0px;
  border-radius: 3px;
  background: #ea5454;
  box-shadow: 0 5px 0 #ab1414;
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  text-decoration: none;
}

.btn--blue {
  display: inline-block;
  width: 100%;
  padding: 17px 0px;
  border-radius: 5px;
  background: #337cbd;
  box-shadow: 0 4px 0 #2667a1;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.3;
  color: #fff;
  text-align: center;
}

.btn--blue.lg {
  padding: 15px 0;
  font-size: 1.8rem;
  text-decoration: none;
}

.btn--white {
  display: inline-block;
  width: 100%;
  padding: 17px 0px;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 5px 0 #555;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  transition-timing-function: ease-out;
  transition-duration: 0.1s;
  transition-property: all;
}

@media screen and (min-width: 767px) {
  .btn--white:hover {
    box-shadow: none;
    transform: translateY(5px);
  }
}

.btn--border {
  display: block;
  margin: 0 auto;
  padding: 16px 1%;
  border: 4px solid #333;
  background: #fff;
  font-size: 1.5rem;
  color: #333;
  text-align: center;
  text-decoration: none;
}

.btn--border::before {
  display: inline-block;
  box-sizing: border-box;
  width: 6px;
  height: 6px;
  margin-right: 4px;
  border: 4px solid transparent;
  border-left: 8px solid #333;
  content: "";
}

.btn--grayRound {
  display: inline-block;
  margin-top: 5px;
  padding: 6px 15px;
  border-radius: 50px;
  background: #eee;
  font-size: 1.4rem;
  color: #222;
  text-decoration: none;
}

.link--back {
  margin: 0 0 30px;
}

.link--back a {
  display: block;
  padding: 4px 0 4px 25px;
  background: url(../img/icon/ico_arw01.png) no-repeat left center;
  font-size: 1.5rem;
}

@media screen and (min-width: 767px) {
  /*=================================
    button
  =================================*/
  .btnWrap {
    display: flex;
    justify-content: center;
  }
  .btnWrap > * + * {
    margin: 0 0 0 20px;
  }
  .btn--red {
    max-width: 94%;
    padding: 23px 10px;
    border-radius: 5px;
    font-size: 2.6rem;
    transition-timing-function: ease-out;
    transition-duration: 0.1s;
    transition-property: all;
  }
  .btn--red:hover {
    box-shadow: none;
    transform: translateY(6px);
  }
  .btn--blue {
    max-width: 94%;
    padding: 13px 10px;
    border-radius: 5px;
    box-shadow: 0 4px 0 #2667a1;
    font-size: 1.6rem;
    transition-timing-function: ease-out;
    transition-duration: 0.1s;
    transition-property: all;
  }
  .btn--blue:hover {
    box-shadow: none;
    transform: translateY(4px);
  }
  .btn--blue.lg {
    max-width: 1160px;
    padding: 30px 0;
    font-size: 2.6rem;
    line-height: 1;
  }
  .btn--white {
    max-width: 555px;
    padding: 23px 10px;
    border-radius: 5px;
    box-shadow: 0 6px 0 #555;
    font-size: 2.4rem;
    transition-timing-function: ease-out;
    transition-duration: 0.1s;
    transition-property: all;
  }
  .btn--white:hover {
    box-shadow: none;
    transform: translateY(6px);
  }
  .btn--border {
    max-width: 94%;
    padding: 19px 15px;
    font-size: 1.6rem;
    transition-timing-function: ease-out;
    transition-duration: 0.1s;
    transition-property: all;
  }
  .btn--border:hover {
    border-color: #005bac;
    background: #005bac;
    color: #fff;
    text-decoration: underline;
  }
  .btn--border:hover::before {
    border-left: 8px solid #fff;
  }
  .btn--grayRound {
    padding: 8px 25px;
    font-size: 1.6rem;
  }
  .btn--grayRound:hover {
    background: #337cbd;
    color: #fff;
  }
  .link--back {
    margin: 0 0 40px;
  }
  .link--back a {
    font-size: 1.6rem;
  }
}

/*=================================
  title
=================================*/
.contTtl {
  margin-bottom: 44px;
  font-size: 2.6rem;
  font-weight: 500;
  color: #222;
  text-align: center;
}

.contTtl.white {
  color: #fff;
}

.mainTtl--col2 {
  display: flex;
  margin-bottom: 40px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.mainTtl--col2 .ttl {
  font-size: 3.4rem;
  font-weight: 500;
  line-height: 1.3;
  color: #222;
}

.pageTtl {
  padding: 0px 12px 40px 12px;
  background: #fff;
}

.pageTtl__inner {
  position: relative;
  display: flex;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 30px;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.pageTtl__inner::before {
  /* IE6-9 */
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 12px;
  height: 100%;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#005bac+0,005bac+33,337cbd+33,337cbd+66,337cbd+66,dddddd+66,dddddd+100 */
  background: #005bac;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #005bac 0%, #005bac 33%, #337cbd 33%, #337cbd 66%, #337cbd 66%, #dddddd 66%, #dddddd 100%);
  content: "";
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#005bac', endColorstr='#dddddd',GradientType=1 );
}

.pageTtl__inner .ttlWrap {
  max-width: calc(100% - 300px);
}

.pageTtl__inner .ttlWrap .catch {
  display: block;
  font-size: 2.4rem;
  font-weight: 400;
  color: #005bac;
}

.pageTtl__inner .ttlWrap .ttl {
  font-size: 3.6rem;
  font-weight: 400;
}

.pageTtl__inner .field {
  position: relative;
  width: 280px;
}

.pageTtl__inner .fieldTtl {
  position: absolute;
  z-index: 1;
  top: -20px;
  left: 50%;
  display: inline-block;
  padding: 5px;
  background: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  transform: translateX(-50%);
}

.pageTtl__inner .fieldList {
  display: flex;
  padding: 15px;
  border: 2px solid #d0d0d0;
  border-radius: 10px;
  flex-wrap: wrap;
}

.pageTtl__inner .fieldList__item {
  position: relative;
  width: 45px;
  text-align: center;
}

.pageTtl__inner .fieldList__item img {
  width: 40px;
}

.pageTtl__inner .fieldList__item .balloon {
  position: absolute;
  z-index: 1;
  top: -15px;
  left: 50%;
  visibility: hidden;
  width: 100px;
  border-radius: 50px;
  background: #005bac;
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
  opacity: 0;
  transition-timing-function: ease-out;
  transition-duration: 0.2s;
  transition-property: all;
  transform: translateX(-50%);
}

.pageTtl__inner .fieldList__item .balloon::after {
  position: absolute;
  bottom: -10px;
  left: 50%;
  display: inline-block;
  box-sizing: border-box;
  width: 6px;
  height: 6px;
  border: 4px solid transparent;
  border-top: 8px solid #005bac;
  content: "";
  transform: translateX(-50%);
}

@media screen and (min-width: 767px) {
  .pageTtl__inner .fieldList__item:hover .balloon {
    top: -20px;
    visibility: visible;
    opacity: 1;
  }
}

@media screen and (max-width: 767px) {
  /*=================================
    title
  =================================*/
  .contTtl {
    margin-bottom: 30px;
    font-size: 2.2rem;
  }
  .mainTtl--col2 {
    display: block;
    margin-bottom: 20px;
  }
  .mainTtl--col2 .ttl {
    font-size: 2.4rem;
  }
  .mainTtl--col2 .btn--grayRound {
    margin-top: 20px;
  }
  .pageTtl {
    padding: 30px 3%;
    background: #fff;
  }
  .pageTtl__inner {
    display: block;
    padding-left: 20px;
  }
  .pageTtl__inner::before {
    /* IE6-9 */
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 12px;
    height: 100%;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#005bac+0,005bac+33,337cbd+33,337cbd+66,337cbd+66,dddddd+66,dddddd+100 */
    background: #005bac;
    /* Old browsers */
    /* FF3.6-15 */
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #005bac 0%, #005bac 33%, #337cbd 33%, #337cbd 66%, #337cbd 66%, #dddddd 66%, #dddddd 100%);
    content: "";
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#005bac', endColorstr='#dddddd',GradientType=1 );
  }
  .pageTtl__inner .ttlWrap {
    max-width: inherit;
  }
  .pageTtl__inner .ttlWrap .catch {
    margin-bottom: 5px;
    font-size: 1.6rem;
    line-height: 1.2;
  }
  .pageTtl__inner .ttlWrap .ttl {
    font-size: 2.4rem;
  }
  .pageTtl__inner .field {
    width: 100%;
    margin-top: 20px;
  }
  .pageTtl__inner .fieldTtl {
    top: -15px;
    font-size: 1.4rem;
  }
  .pageTtl__inner .fieldList {
    padding: 10px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
  }
  .pageTtl__inner .fieldList__item {
    width: 35px;
  }
  .pageTtl__inner .fieldList__item img {
    width: 30px;
  }
  .pageTtl__inner .fieldList__item .balloon {
    display: none;
  }
}

/*=================================
  tab
=================================*/
.tabMenu {
  position: relative;
  display: flex;
}

.tabMenu__item {
  position: relative;
  width: calc(100% / 6);
  padding: 17px 0;
  background: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
}

.tabMenu__item::before {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-top: -5px;
  margin-right: 6px;
  background: url(../img/icon/ico_rank_bla.png) no-repeat center center;
  background-size: contain;
  vertical-align: middle;
  content: "";
}

.tabMenu__item.divorce::before {
  background: url(../img/icon/ico_divorce_bla.png) no-repeat center center;
  background-size: contain;
}

.tabMenu__item.debt::before {
  background: url(../img/icon/ico_debt_bla.png) no-repeat center center;
  background-size: contain;
}

.tabMenu__item.real-estate::before {
  background: url(../img/icon/ico_real-estate_bla.png) no-repeat center center;
  background-size: contain;
}

.tabMenu__item.labor-problems::before {
  background: url(../img/icon/ico_labor-problems_bla.png) no-repeat center center;
  background-size: contain;
}

.tabMenu__item.traffic-accident::before {
  background: url(../img/icon/ico_traffic-accident_bla.png) no-repeat center center;
  background-size: contain;
}

.tabMenu__item.corporate::before {
  background: url(../img/icon/ico_corporate_bla.png) no-repeat center center;
  background-size: contain;
}

.tabMenu__item.criminal-case::before {
  background: url(../img/icon/ico_criminal-case_bla.png) no-repeat center center;
  background-size: contain;
}

.tabMenu__item.debt-collection::before {
  background: url(../img/icon/ico_debt-collection_bla.png) no-repeat center center;
  background-size: contain;
}

.tabMenu__item.consumer-damage::before {
  background: url(../img/icon/ico_consumer-damage_bla.png) no-repeat center center;
  background-size: contain;
}

.tabMenu__item.inheritance::before {
  background: url(../img/icon/ico_inheritance_bla.png) no-repeat center center;
  background-size: contain;
}

.tabMenu__item:not(.active) {
  cursor: pointer;
}

.tabMenu__item.active {
  background: #005bac;
  color: #fff;
}

.tabMenu__item.active::before {
  background: url(../img/icon/ico_rank_whi.png) no-repeat center center;
  background-size: contain;
}

.tabMenu__item.active.divorce::before {
  background: url(../img/icon/ico_divorce_whi.png) no-repeat center center;
  background-size: contain;
}

.tabMenu__item.active.debt::before {
  background: url(../img/icon/ico_debt_whi.png) no-repeat center center;
  background-size: contain;
}

.tabMenu__item.active.real-estate::before {
  background: url(../img/icon/ico_real-estate_whi.png) no-repeat center center;
  background-size: contain;
}

.tabMenu__item.active.labor-problems::before {
  background: url(../img/icon/ico_labor-problems_whi.png) no-repeat center center;
  background-size: contain;
}

.tabMenu__item.active.traffic-accident::before {
  background: url(../img/icon/ico_traffic-accident_whi.png) no-repeat center center;
  background-size: contain;
}

.tabMenu__item.active.corporate::before {
  background: url(../img/icon/ico_corporate_whi.png) no-repeat center center;
  background-size: contain;
}

.tabMenu__item.active.criminal-case::before {
  background: url(../img/icon/ico_criminal-case_whi.png) no-repeat center center;
  background-size: contain;
}

.tabMenu__item.active.debt-collection::before {
  background: url(../img/icon/ico_debt-collection_whi.png) no-repeat center center;
  background-size: contain;
}

.tabMenu__item.active.consumer-damage::before {
  background: url(../img/icon/ico_consumer-damage_whi.png) no-repeat center center;
  background-size: contain;
}

.tabMenu__item.active.inheritance::before {
  background: url(../img/icon/ico_inheritance_whi.png) no-repeat center center;
  background-size: contain;
}

.tabItem {
  min-height: 300px;
  background: #fff;
}

.tabItem .tabList {
  display: none;
}

.tabItem .tabList.show {
  display: block !important;
}

@media screen and (max-width: 767px) {
  /*=================================
    tab
  =================================*/
  .tabMenu {
    flex-wrap: wrap;
  }
  .tabMenu__item {
    width: calc(100% / 3);
    padding: 5px;
    font-size: 1.1rem;
  }
  .tabMenu__item::before {
    display: block;
    margin: 0 auto;
  }
  .tabItem {
    min-height: inherit;
  }
}

/*=================================
  accordion
=================================*/
.js-accordion__btn {
  position: relative;
  cursor: pointer;
}

.js-accordion__item {
  display: none;
}

@media screen and (max-width: 767px) {
  /*=================================
    accordion
  =================================*/
}

/*=================================
  table
=================================*/
table {
  width: 100%;
  margin: 50px 0 30px;
  border: 1px solid #ccc;
  border-spacing: 0;
  border-collapse: collapse;
}

table caption {
  margin-bottom: 20px;
  font-size: 1.8rem;
}

table thead th {
  background: #005bac;
  font-weight: 700;
  color: #fff;
}

table tr {
  border-bottom: 1px solid #ddd;
}

table th {
  padding: 20px;
  background: #f6f6f6;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.25;
  text-align: left;
}

table td {
  padding: 20px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.25;
}

table.scroll {
  display: block;
  overflow: auto;
  border: none;
  white-space: nowrap;
}

table.scroll ::-webkit-scrollbar {
  height: 5px;
}

table.scroll ::-webkit-scrollbar-track {
  background: #F1F1F1;
}

table.scroll ::-webkit-scrollbar-thumb {
  background: #BCBCBC;
}

@media screen and (max-width: 767px) {
  /*=================================
    table
  =================================*/
  table {
    display: block;
    overflow-x: auto;
    margin: 20px 0;
    border: none;
    white-space: nowrap;
  }
  table tbody {
    display: table;
    min-width: calc(100vw - 12px);
    border: 1px solid #ccc;
  }
  table caption {
    width: 94vw;
    margin: 15px 0;
    font-size: 1.5rem;
  }
  table th {
    padding: 10px;
    font-size: 1.3rem;
  }
  table td {
    padding: 10px;
    font-size: 1.3rem;
  }
}

/*=================================
  breadcrumb
=================================*/
.breadcrumb {
  padding: 30px 0 30px;
}

.breadcrumb ul {
  display: flex;
  align-items: center;
}

.breadcrumb ul li {
  position: relative;
  font-size: 1.4rem;
  line-height: 1;
}

.breadcrumb ul li a, .breadcrumb ul li span {
  display: block;
  padding: 10px 8px 12px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 1.4rem;
  line-height: 1;
}

.breadcrumb ul li + li {
  padding-left: 20px;
}

.breadcrumb ul li + li::before {
  position: absolute;
  top: 50%;
  left: 5px;
  display: inline-block;
  font-size: 1rem;
  content: "≫";
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  /*=================================
    breadcrumb
  =================================*/
  .breadcrumb {
    overflow-x: scroll;
    padding: 20px 3%;
    white-space: nowrap;
  }
  .breadcrumb ul li {
    font-size: 1.2rem;
  }
  .breadcrumb ul li a, .breadcrumb ul li span {
    padding: 8px 6px 10px;
    font-size: 1.2rem;
  }
  .breadcrumb ul li + li::before {
    font-size: 1rem;
  }
}

/*=================================
  search
=================================*/
.searchBox {
  padding: 15px 0;
  background: #333;
}

.searchBox__inner {
  max-width: 1160px;
  margin: 0 auto;
}

.searchBox .officeNum {
  display: none;
  /* top-page only parts */
  margin-bottom: 20px;
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  text-align: center;
}

.searchBox .officeNum .num {
  font-size: 3.4rem;
}

.searchBox .inputBox {
  padding: 10px;
  background: #222;
}

.searchBox .inputBox__inner {
  background: #fff;
}

.searchBox .inputBox .formWrap {
  display: flex;
}

.searchBox .inputBox .ken {
  position: relative;
  width: calc((115% - 180px) / 2);
  padding-left: 90px;
}

.searchBox .inputBox .ken::before {
  position: absolute;
  top: 2px;
  left: 25px;
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 300;
  content: "エリア";
}

.searchBox .inputBox .ken::after {
  position: absolute;
  bottom: 18px;
  left: 30px;
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url(../img/icon/ico_sea01.png) no-repeat;
  background-size: cover;
  content: "";
}

.searchBox .inputBox .ken .area {
  position: absolute;
  top: 50%;
  right: 16px;
  font-size: 1.6rem;
  color: #555;
  text-decoration: underline;
  cursor: pointer;
  transform: translateY(-50%);
}

@media screen and (min-width: 767px) {
  .searchBox .inputBox .ken .area:hover {
    text-decoration: none;
  }
}

.searchBox .inputBox .naiyo {
  position: relative;
  width: calc((85% - 180px) / 2);
  padding-left: 90px;
  background: #f2f2f2;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #f2f2f2 0%, #ffffff 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2f2f2', endColorstr='#ffffff',GradientType=1 );
  /* IE6-9 */
}

.searchBox .inputBox .naiyo::before {
  position: absolute;
  top: 2px;
  left: 14px;
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 300;
  content: "ご相談内容";
}

.searchBox .inputBox .naiyo::after {
  position: absolute;
  bottom: 18px;
  left: 36px;
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url(../img/icon/ico_sea02.png) no-repeat;
  background-size: cover;
  content: "";
}

.searchBox .inputBox .btn {
  width: 180px;
  background: #1166b2;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #1166b2 0%, #005bac 100%);
  cursor: pointer;
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1166b2', endColorstr='#005bac',GradientType=0 );
  /* IE6-9 */
}

.searchBox .inputBox .btn a {
  position: relative;
  display: block;
  height: 100%;
}

.searchBox .inputBox .btn a::before {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url(../img/icon/ico_sea03.png) no-repeat;
  background-size: cover;
  content: "";
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 767px) {
  .searchBox .inputBox .btn:hover {
    background: #157ad4;
    background: linear-gradient(to bottom, #157ad4 0%, #0471d1 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#157ad4', endColorstr='#0471d1',GradientType=0 );
  }
}

.searchBox .inputBox .input {
  display: inline-block;
  width: 100%;
  padding: 16px 0;
  font-size: 2.6rem;
  cursor: pointer;
}

.searchBox .kenlist, .searchBox .naiyolist {
  display: none;
}

.searchBox .kenlist {
  position: fixed;
  z-index: 9999;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 800px;
  padding: 30px 30px 10px;
  background: #fff;
  box-shadow: 0 1px 6px -4px #000;
  transform: translate(-50%, -50%);
}

.searchBox .kenlist .kenTtl {
  margin-bottom: 5px;
  font-size: 1.5rem;
  font-weight: 500;
  color: #005bac;
}

.searchBox .kenlist .kenName {
  float: left;
  margin: 0 10px 10px 0;
  line-height: 1;
}

.searchBox .kenlist .kenName a, .searchBox .kenlist .kenName span {
  font-size: 1.4rem;
  color: #333;
  text-decoration: underline;
  cursor: pointer;
}

@media screen and (min-width: 767px) {
  .searchBox .kenlist .kenName a:hover, .searchBox .kenlist .kenName span:hover {
    text-decoration: none;
  }
}

.searchBox .kenlist__block {
  float: left;
  width: 370px;
}

.searchBox .kenlist__item {
  margin-bottom: 10px;
}

.searchBox .naiyolist {
  position: fixed;
  z-index: 9999;
  top: 50%;
  left: 50%;
  max-width: 600px;
  background: #fff;
  box-shadow: 0 1px 6px -4px #000;
  transform: translate(-50%, -50%);
}

.searchBox .naiyolist__item {
  float: left;
  width: 25%;
  height: 80px;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  text-align: center;
}

.searchBox .naiyolist__item span {
  display: block;
  padding: 20px 0;
  font-size: 1.4rem;
  color: #333;
  cursor: pointer;
}

.searchBox .naiyolist__item span .icon {
  margin-right: 6px;
  vertical-align: middle;
}

@media screen and (min-width: 767px) {
  .searchBox .naiyolist__item span:hover {
    background: #ecf8fd;
  }
}

.searchBox .naiyolist .other {
  padding: 15px 20px;
  background: #fff;
  color: #333;
}

/* オーバーレイ */
#overlay {
  position: fixed;
  z-index: 9001;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  text-align: center;
  cursor: pointer;
}

@media screen and (max-width: 1025px) {
  /*=================================
    search
  =================================*/
  .searchBox {
    padding: 20px 10px;
  }
  .searchBox .officeNum {
    font-size: 1.8rem;
  }
  .searchBox .officeNum .num {
    font-size: 2.4rem;
  }
  .searchBox .inputBox {
    padding: 5px;
  }
  .searchBox .inputBox .formWrap {
    display: block;
  }
  .searchBox .inputBox .area {
    top: 10px;
    right: 10px;
    left: inherit;
    display: none;
    width: 50px;
    text-align: left;
  }
  .searchBox .inputBox .ken {
    position: relative;
    width: 100%;
    padding-left: 64px;
    border-bottom: 1px solid #ddd;
  }
  .searchBox .inputBox .ken::before {
    top: 7px;
    left: 16px;
    font-size: 1.1rem;
  }
  .searchBox .inputBox .ken::after {
    bottom: 7px;
    left: 20px;
    width: 22px;
    height: 22px;
  }
  .searchBox .inputBox .ken .area {
    display: none;
  }
  .searchBox .inputBox .naiyo {
    position: relative;
    width: 100%;
    padding-left: 64px;
    background: #fff;
  }
  .searchBox .inputBox .naiyo::before {
    top: 7px;
    left: 6px;
    font-size: 1.1rem;
  }
  .searchBox .inputBox .naiyo::after {
    bottom: 7px;
    left: 20px;
    width: 22px;
    height: 22px;
  }
  .searchBox .inputBox .btn {
    width: 100%;
    padding: 20px 0;
  }
  .searchBox .inputBox .btn a::before {
    width: 18px;
    height: 18px;
  }
  .searchBox .inputBox .input {
    padding: 15px 0;
    font-size: 1.6rem;
  }
  .searchBox .kenlist {
    position: absolute;
    top: 55px;
    right: 0;
    left: inherit;
    overflow-y: auto;
    width: calc(100% - 56px);
    max-height: calc(50vh - 55px);
    padding: 0;
    border: 1px solid #ddd;
    transform: inherit;
  }
  .searchBox .kenlist .kenTtl {
    font-size: 1.7rem;
    color: #333;
  }
  .searchBox .kenlist .kenName {
    float: none;
    margin: 0 0 0 1.8rem;
    padding: 8px 0;
  }
  .searchBox .kenlist .kenName a, .searchBox .kenlist .kenName span {
    font-size: 1.6rem;
    color: #444;
  }
  .searchBox .kenlist__block {
    float: none;
    width: 100%;
  }
  .searchBox .kenlist__item {
    margin-bottom: 10px;
  }
  .searchBox .naiyolist {
    position: absolute;
    top: 55px;
    right: 0;
    left: inherit;
    overflow-y: auto;
    width: calc(100% - 56px);
    max-height: calc(50vh - 55px);
    border: 1px solid #ddd;
    transform: inherit;
  }
  .searchBox .naiyolist__item {
    float: none;
    width: 100%;
    height: inherit;
    border: none;
    text-align: left;
  }
  .searchBox .naiyolist__item span {
    padding: 8px 0;
    font-size: 1.6rem;
    color: #444;
  }
  .searchBox .naiyolist__item span .icon {
    display: none;
  }
  .searchBox .naiyolist .other {
    display: none;
  }
}

/*=================================
  pager
=================================*/
.pager {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.pagerList {
  display: flex;
}

.pagerList__item {
  margin-right: 10px;
}

.pagerList__item a, .pagerList__item span {
  display: block;
  padding: 15px 12px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}

.pagerList__item a {
  border-bottom: 4px solid #ccc;
  color: #333;
  text-decoration: none;
}

@media screen and (min-width: 767px) {
  .pagerList__item a:hover {
    border-color: #337cbd;
    color: #005bac;
  }
}

.pagerList__item span {
  border-bottom: 4px solid #337cbd;
  color: #005bac;
}

.pager .output {
  font-size: 1.8rem;
}

.pager .output .num {
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  /*=================================
    pager
  =================================*/
  .pager {
    display: block;
  }
  .pagerList {
    justify-content: center;
  }
  .pagerList__item a, .pagerList__item span {
    padding: 12px 10px;
    font-size: 1.8rem;
  }
  .pager .output {
    display: none;
  }
}

/*=================================
  topPage
=================================*/
#topPage {
  /* 都道府県 */
  /* 主要都市 */
  /* 都道府県一覧 */
  /* 厳選事務所 */
  /* 新着 */
}

#topPage .searchBox {
  padding: 30px 3%;
}

#topPage .searchBox__inner {
  display: block;
  margin: 0 auto;
}

#topPage .searchBox .officeNum {
  display: block;
}

#topPage .secWrap {
  padding: 50px 1%;
}

#topPage .secWrap .topTtl {
  margin-bottom: 44px;
  font-size: 2.6rem;
  font-weight: 500;
  color: #222;
  text-align: center;
}

#topPage .secWrap .topTtl.white {
  color: #fff;
}

#topPage .secWrap__inner {
  max-width: 1160px;
  margin: 0 auto;
}

#topPage .secWrap.white {
  background: #fff;
}

#topPage .secWrap.gray {
  background: #eee;
}

#topPage .layout--2col {
  padding-top: 50px;
}

#topPage .meritList {
  display: flex;
}

#topPage .meritList__item {
  width: calc((100% - 4px) / 3);
  padding: 138px 2% 60px;
  background: #fff;
}

#topPage .meritList__item .meritTtl {
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: 500;
  color: #005bac;
  text-align: center;
}

#topPage .meritList__item .meritText {
  line-height: 1.5;
}

#topPage .meritList__item:not(:last-child) {
  margin-right: 2px;
}

#topPage .meritList__item:nth-child(1) {
  background: #fff url(../img/icon/ico_mer01.png) no-repeat center top 50px;
}

#topPage .meritList__item:nth-child(1) .meritTtl {
  position: relative;
  padding-top: 60px;
}

#topPage .meritList__item:nth-child(1) .meritTtl::before {
  position: absolute;
  top: 0;
  left: 0;
  padding: 8px 23px;
  border-radius: 50px;
  background: #eee;
  font-size: 1.4rem;
  color: #333;
  content: "メリット1";
}

#topPage .meritList__item:nth-child(2) {
  background: #fff url(../img/icon/ico_mer02.png) no-repeat center top 50px;
}

#topPage .meritList__item:nth-child(2) .meritTtl {
  position: relative;
  padding-top: 60px;
}

#topPage .meritList__item:nth-child(2) .meritTtl::before {
  position: absolute;
  top: 0;
  left: 0;
  padding: 8px 23px;
  border-radius: 50px;
  background: #eee;
  font-size: 1.4rem;
  color: #333;
  content: "メリット2";
}

#topPage .meritList__item:nth-child(3) {
  background: #fff url(../img/icon/ico_mer03.png) no-repeat center top 50px;
}

#topPage .meritList__item:nth-child(3) .meritTtl {
  position: relative;
  padding-top: 60px;
}

#topPage .meritList__item:nth-child(3) .meritTtl::before {
  position: absolute;
  top: 0;
  left: 0;
  padding: 8px 23px;
  border-radius: 50px;
  background: #eee;
  font-size: 1.4rem;
  color: #333;
  content: "メリット3";
}

#topPage .prefMajorList {
  display: flex;
}

#topPage .prefMajorList__item {
  width: calc((100% - 5.2%) / 5);
  min-width: 120px;
  margin-bottom: 20px;
  text-align: center;
}

#topPage .prefMajorList__item a {
  display: block;
  padding: 19% 0;
  font-size: 2.4rem;
  color: #fff;
  text-decoration: none;
}

#topPage .prefMajorList__item a .ruby {
  display: block;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}

@media screen and (min-width: 767px) {
  #topPage .prefMajorList__item a:hover {
    opacity: .9;
  }
}

#topPage .prefMajorList__item:not(:nth-child(5n + 1)) {
  margin-left: 1.3%;
}

#topPage .prefMajorList__item.tokyo a {
  background: url(../img/pref_tokyo.png) no-repeat center center;
  background-size: cover;
}

#topPage .prefMajorList__item.osaka a {
  background: url(../img/pref_osaka.png) no-repeat center center;
  background-size: cover;
}

#topPage .prefMajorList__item.aichi a {
  background: url(../img/pref_aichi.png) no-repeat center center;
  background-size: cover;
}

#topPage .prefMajorList__item.hokkaido a {
  background: url(../img/pref_hokkaido.png) no-repeat center center;
  background-size: cover;
}

#topPage .prefMajorList__item.fukuoka a {
  background: url(../img/pref_fukuoka.png) no-repeat center center;
  background-size: cover;
}

#topPage .prefWrap {
  display: flex;
  flex-wrap: wrap;
}

#topPage .prefWrap__block {
  width: calc((100% - 5.2%) / 5);
  margin-bottom: 20px;
}

#topPage .prefWrap__block .prefTtl {
  margin-bottom: 10px;
  color: #005bac;
}

#topPage .prefWrap__block .prefList {
  display: flex;
  flex-wrap: wrap;
}

#topPage .prefWrap__block .prefList__item {
  margin: 0 10px 12px 0;
  line-height: 1;
}

#topPage .prefWrap__block .prefList__item a {
  font-size: 1.4rem;
  color: #222;
}

#topPage .prefWrap__block:not(:nth-child(5n + 1)) {
  margin-left: 1.3%;
}

#topPage .pickUpOffice {
  background: #77b8f2 url(../img/bg_pickup_office.png) no-repeat center top;
}

#topPage .pickUpOffice .tabList__ttl {
  position: relative;
  padding: 27px 32px;
  background: #f3f3f3;
  font-size: 2rem;
  font-weight: 500;
}

#topPage .pickUpOffice .tabList__ttl .date {
  margin-right: 2rem;
  color: #005bac;
}

#topPage .pickUpOffice .tabList__ttl::after {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: calc(100% / 6);
  height: 4px;
  background: #005bac;
  content: "";
}

#topPage .pickUpOffice__list {
  display: flex;
  border-top: 1px solid #ccc;
  background: #f3f3f3;
}

#topPage .pickUpOffice__list__item {
  position: relative;
  width: calc(100% / 4);
  min-height: 380px;
  padding: 15px 15px 25px;
  background: #f3f3f3;
}

#topPage .pickUpOffice__list__item .thumb {
  margin-bottom: 20px;
}

#topPage .pickUpOffice__list__item .textWrap .name {
  display: block;
  text-align: center;
}

#topPage .pickUpOffice__list__item .textWrap .text {
  margin-top: 15px;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8571;
}

#topPage .pickUpOffice__list__item .areaWrap {
  position: absolute;
  bottom: 25px;
  left: 15px;
}

#topPage .pickUpOffice__list__item .areaWrap::before {
  display: inline-block;
  width: 14px;
  height: 20px;
  background: url(../img/icon/ico_taiou.png) no-repeat center center;
  background-size: cover;
  vertical-align: middle;
  content: "";
}

#topPage .pickUpOffice__list__item .areaWrap .lavel, #topPage .pickUpOffice__list__item .areaWrap .area {
  display: inline-block;
  font-size: 1.2rem;
}

#topPage .pickUpOffice__list__item .areaWrap .area::before {
  display: inline-block;
  margin: 0 .2rem 0 0;
  content: "/";
}

#topPage .pickUpOffice__list__item:not(:first-child) {
  border-left: 1px solid #ccc;
}

@media screen and (min-width: 767px) {
  #topPage .pickUpOffice__list__item:hover {
    background: #fff;
    opacity: 1 !important;
  }
}

#topPage .newCont {
  background: linear-gradient(#333 30%, #fff 30%, #fff);
}

#topPage .newCont__wrap {
  display: flex;
  justify-content: space-between;
}

#topPage .newCont__ttl {
  margin-bottom: 50px;
  font-size: 2.6rem;
  font-weight: 500;
  color: #fff;
}

#topPage .newCont__ttl .ruby {
  margin-left: 2rem;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  vertical-align: middle;
}

#topPage .newCont__item {
  width: calc((100% - 60px) / 2);
}

#topPage .newCont__list {
  padding: 10px;
  background: #fff;
}

#topPage .newCont__list__item {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
}

#topPage .newCont__list__item .thumb {
  position: relative;
  float: left;
  width: 120px;
}

#topPage .newCont__list__item .thumb.new::before {
  position: absolute;
  top: 0;
  left: 0;
  padding: 7px 16px 5px;
  background: rgba(232, 48, 33, 0.9);
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  content: "NEW";
}

#topPage .newCont__list__item .textWrap {
  float: right;
  width: calc(100% - 120px);
  padding: 0 0 0 15px;
}

#topPage .newCont__list__item .textWrap__ttl {
  font-size: 1.6rem;
  font-weight: 500;
}

#topPage .newCont__list__item .textWrap__text {
  font-size: 1.4rem;
  line-height: 1.8571;
  color: #222;
}

#topPage .newCont__list__item .textWrap .info__tag {
  display: inline-block;
  margin-right: 5px;
}

#topPage .newCont__list__item .textWrap .info__tag__item {
  display: inline-block;
  padding: 4px 8px 5px;
  border-radius: 2px;
  background: #333;
  font-size: 1.2rem;
  line-height: 1;
  color: #fff;
}

#topPage .newCont__list__item .textWrap .info__date {
  display: inline-block;
  padding: 0 0 0 20px;
  background: url(../img/icon/ico_cal.png) no-repeat left center;
  font-size: 1.2rem;
}

#topPage .articleCat {
  padding-top: 0;
  padding-bottom: 0;
}

#topPage .articleCat__wrap {
  display: flex;
  flex-wrap: wrap;
}

#topPage .articleCat__item {
  width: calc((100% - 80px) / 3);
  margin-bottom: 35px;
}

#topPage .articleCat__item:not(:nth-child(3n + 1)) {
  margin-left: 40px;
}

#topPage .articleCat__ttl {
  position: relative;
  padding: 36px 0;
  font-size: 2.6rem;
  font-weight: 300;
}

#topPage .articleCat__ttl::before {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 80px;
  height: 4px;
  background: #005bac;
  content: "";
}

#topPage .articleCat__list__item {
  padding: 15px 10px;
  background: #fff;
}

#topPage .articleCat__list__item:not(:last-child) {
  border-bottom: 1px solid #ddd;
}

#topPage .articleCat__list__item .thumb {
  float: left;
  width: 80px;
}

#topPage .articleCat__list__item .textWrap {
  float: right;
  width: calc(100% - 80px);
  padding: 0 0 0 12px;
}

#topPage .articleCat__list__item .textWrap__ttl {
  font-size: 1.4rem;
  font-weight: 500;
}

#topPage .articleCat__list__item .textWrap__view {
  margin-top: 10px;
  padding-left: 22px;
  background: url(../img/icon/ico_eye.png) no-repeat left center;
  font-size: 1.2rem;
  line-height: 1;
}

#topPage .articleCat .moreLink {
  margin-top: 30px;
  text-align: center;
}

#topPage .articleCat .moreLink a {
  position: relative;
  font-size: 1.4rem;
}

#topPage .articleCat .moreLink a::before {
  display: inline-block;
  box-sizing: border-box;
  width: 6px;
  height: 6px;
  margin-right: 4px;
  border: 4px solid transparent;
  border-left: 8px solid #005bac;
  content: "";
}

@media screen and (max-width: 767px) {
  /*=================================
    topPage
  =================================*/
  #topPage {
    /* 都道府県 */
    /* 主要都市 */
    /* 都道府県一覧 */
    /* 厳選事務所 */
    /* 新着 */
  }
  #topPage .secWrap {
    padding: 30px 0;
  }
  #topPage .secWrap .topTtl {
    margin-bottom: 30px;
    font-size: 2.2rem;
  }
  #topPage .layout--2col {
    padding-top: 0;
  }
  #topPage .meritList {
    display: block;
    padding: 0 4.3%;
  }
  #topPage .meritList__item {
    width: 100%;
    padding: 50px 4.3% 25px;
  }
  #topPage .meritList__item .meritTtl {
    margin-bottom: 15px;
    font-size: 1.6rem;
  }
  #topPage .meritList__item:not(:last-child) {
    margin: 0 0 4.3%;
  }
  #topPage .meritList__item:nth-child(1) {
    background: #fff url(../img/icon/ico_mer01.png) no-repeat center top 30px;
    background-size: 50px;
  }
  #topPage .meritList__item:nth-child(1) .meritTtl {
    padding-top: 50px;
  }
  #topPage .meritList__item:nth-child(1) .meritTtl::before {
    padding: 6px 18px;
    font-size: 1.2rem;
  }
  #topPage .meritList__item:nth-child(2) {
    background: #fff url(../img/icon/ico_mer02.png) no-repeat center top 30px;
    background-size: 50px;
  }
  #topPage .meritList__item:nth-child(2) .meritTtl {
    padding-top: 50px;
  }
  #topPage .meritList__item:nth-child(2) .meritTtl::before {
    padding: 6px 18px;
    font-size: 1.2rem;
  }
  #topPage .meritList__item:nth-child(3) {
    background: #fff url(../img/icon/ico_mer03.png) no-repeat center top 30px;
    background-size: 50px;
  }
  #topPage .meritList__item:nth-child(3) .meritTtl {
    padding-top: 50px;
  }
  #topPage .meritList__item:nth-child(3) .meritTtl::before {
    padding: 6px 18px;
    font-size: 1.2rem;
  }
  #topPage .prefMajor {
    display: none;
  }
  #topPage .prefMajorList {
    flex-wrap: wrap;
    justify-content: center;
  }
  #topPage .prefMajorList__item {
    margin-bottom: 5px;
  }
  #topPage .prefMajorList__item a {
    font-size: 1.8rem;
  }
  #topPage .prefMajorList__item a .ruby {
    font-size: 1.1rem;
  }
  #topPage .prefMajorList__item:not(:nth-child(5n + 1)) {
    margin-left: 5px;
  }
  #topPage .pref {
    padding: 0 4.3%;
  }
  #topPage .prefWrap {
    display: block;
  }
  #topPage .prefWrap__block {
    width: 100%;
    margin-bottom: 18px;
  }
  #topPage .prefWrap__block .prefTtl {
    font-size: 1.6rem;
    font-weight: 500;
  }
  #topPage .prefWrap__block:not(:nth-child(5n + 1)) {
    margin-left: 0;
  }
  #topPage .pickUpOffice {
    padding-right: 3%;
    padding-left: 3%;
  }
  #topPage .pickUpOffice .tabList__ttl {
    padding: 10px 15px 15px;
    font-size: 1.6rem;
  }
  #topPage .pickUpOffice .tabList__ttl .date {
    display: block;
    margin: 0 0 5px 0;
  }
  #topPage .pickUpOffice .tabList__ttl::after {
    width: 100px;
    height: 3px;
  }
  #topPage .pickUpOffice__list {
    display: block;
  }
  #topPage .pickUpOffice__list__item {
    width: 100%;
    min-height: inherit;
    padding: 15px 15px 55px;
  }
  #topPage .pickUpOffice__list__item .thumb {
    margin: 0 auto;
    margin-bottom: 15px;
    text-align: center;
  }
  #topPage .pickUpOffice__list__item .textWrap .text {
    margin-top: 10px;
  }
  #topPage .pickUpOffice__list__item .areaWrap {
    bottom: 15px;
  }
  #topPage .pickUpOffice__list__item:not(:first-child) {
    border-top: 1px solid #ccc;
    border-left: none;
  }
  #topPage .newCont {
    padding-right: 3%;
    padding-left: 3%;
    background: #333;
  }
  #topPage .newCont__wrap {
    display: block;
  }
  #topPage .newCont__ttl {
    margin-bottom: 30px;
    font-size: 2.2rem;
  }
  #topPage .newCont__ttl .ruby {
    margin-left: 1.5rem;
    font-size: 1.2rem;
  }
  #topPage .newCont__item {
    width: 100%;
  }
  #topPage .newCont__item + .newCont__item {
    margin-top: 30px;
  }
  #topPage .newCont__list {
    padding: 0;
  }
  #topPage .newCont__list__item {
    margin-bottom: 0;
    padding: 15px;
  }
  #topPage .newCont__list__item .thumb {
    width: 80px;
  }
  #topPage .newCont__list__item .thumb.new::before {
    padding: 5px 6px 3px;
    font-size: 1.2rem;
  }
  #topPage .newCont__list__item .textWrap {
    width: calc(100% - 80px);
    padding: 0 0 0 10px;
  }
  #topPage .newCont__list__item .textWrap__ttl {
    font-size: 1.4rem;
  }
  #topPage .newCont__list__item .textWrap__text {
    margin-top: 3px;
    line-height: 1.2142;
  }
  #topPage .newCont__list__item .textWrap .info {
    margin-top: 10px;
  }
  #topPage .newCont__list__item .textWrap .info__tag {
    margin-right: 4px;
  }
  #topPage .newCont__list__item .textWrap .info__tag__item {
    padding: 4px 4px 5px;
    font-size: 1.1rem;
  }
  #topPage .newCont__list__item .textWrap .info__date {
    font-size: 1.1rem;
  }
  #topPage .articleCat {
    padding: 30px 3%;
  }
  #topPage .articleCat__wrap {
    display: block;
  }
  #topPage .articleCat__item {
    width: 100%;
    margin-bottom: 30px;
  }
  #topPage .articleCat__item:not(:nth-child(3n + 1)) {
    margin-left: 0;
  }
  #topPage .articleCat__ttl {
    margin-bottom: 12px;
    padding: 4px 15px 8px;
    font-size: 2rem;
  }
  #topPage .articleCat__ttl::before {
    width: 5px;
    height: 100%;
  }
  #topPage .articleCat__list__item {
    padding: 15px 10px;
    border-bottom: 1px solid #ddd;
    background: #fff;
  }
  #topPage .articleCat__list__item .textWrap {
    padding: 0 0 0 10px;
  }
  #topPage .articleCat__list__item .textWrap__view {
    padding-left: 18px;
    font-size: 1.1rem;
  }
  #topPage .articleCat .moreLink {
    margin-top: 25px;
  }
}

/*=================================
  下層ページ共通
=================================*/
/* 記事一覧 */
.articleList--simple {
  display: flex;
  flex-wrap: wrap;
}

.articleList--simple .articleList__item {
  width: calc((100% - 80px) / 3);
  margin-bottom: 40px;
}

@media screen and (min-width: 767px) and (max-width: 1024px) {
  .articleList--simple .articleList__item {
    width: calc((100% - 20px) / 2);
  }
  .articleList--simple .articleList__item:nth-child(2n) {
    margin-left: 20px !important;
  }
}

.articleList--simple .articleList__item:not(:nth-child(3n + 1)) {
  margin-left: 40px;
}

@media screen and (min-width: 767px) and (max-width: 1024px) {
  .articleList--simple .articleList__item:not(:nth-child(3n + 1)):not(:nth-child(3n + 1)) {
    margin-left: inherit;
  }
}

.articleList--simple .articleList__item .itemWrap {
  position: relative;
}

.articleList--simple .articleList__item .itemWrap .thumb img {
  width: 100%;
}

.articleList--simple .articleList__item .itemWrap .textWrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
}

.articleList--simple .articleList__item .itemWrap .textWrap__ttl {
  display: block;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.625;
  color: #fff;
}

.articleList--simple .articleList__item .itemWrap .textWrap .info {
  overflow: hidden;
  margin-top: 16px;
  font-size: 1.2rem;
}

.articleList--simple .articleList__item .itemWrap .textWrap .info__date {
  float: left;
  padding: 3px 0 3px 20px;
  background: url(../img/icon/ico_cal_w.png) no-repeat left center;
}

.articleList--simple .articleList__item .itemWrap .textWrap .info__view {
  float: right;
  padding: 3px 0 3px 20px;
  background: url(../img/icon/ico_eye_w.png) no-repeat left center;
}

@media screen and (min-width: 767px) {
  .articleList--simple .articleList__item.widelink:hover .textWrap {
    background: rgba(0, 91, 172, 0.8);
  }
}

.articleList--col2 .articleList__item {
  width: 100%;
  margin-bottom: 30px;
}

.articleList--col2 .articleList__item .itemWrap {
  display: flex;
}

.articleList--col2 .articleList__item .itemWrap .thumb {
  width: 360px;
}

.articleList--col2 .articleList__item .itemWrap .thumb img {
  width: 100%;
}

.articleList--col2 .articleList__item .itemWrap .textWrap {
  width: calc(100% - 360px);
  padding: 15px 25px;
  background: #333;
  color: #fff;
  transition-timing-function: ease-out;
  transition-duration: 0.2s;
  transition-property: all;
}

.articleList--col2 .articleList__item .itemWrap .textWrap__ttl {
  display: block;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.625;
  color: #fff;
}

.articleList--col2 .articleList__item .itemWrap .textWrap__text {
  margin-top: 10px;
  font-size: 1.4rem;
  font-weight: 400;
}

.articleList--col2 .articleList__item .itemWrap .textWrap .tagList {
  display: flex;
  margin-top: 15px;
  flex-wrap: wrap;
}

.articleList--col2 .articleList__item .itemWrap .textWrap .tagList__item {
  padding: 3px 4px;
  border: 1px solid #fff;
  font-size: 1.2rem;
  color: #fff;
}

.articleList--col2 .articleList__item .itemWrap .textWrap .tagList__item + .tagList__item {
  margin-left: 6px;
}

.articleList--col2 .articleList__item .itemWrap .textWrap .info {
  overflow: hidden;
  margin-top: 10px;
  font-size: 1.2rem;
}

.articleList--col2 .articleList__item .itemWrap .textWrap .info__date {
  float: left;
  padding: 3px 0 3px 20px;
  background: url(../img/icon/ico_cal_w.png) no-repeat left center;
}

.articleList--col2 .articleList__item .itemWrap .textWrap .info__view {
  float: right;
  padding: 3px 0 3px 20px;
  background: url(../img/icon/ico_eye_w.png) no-repeat left center;
}

@media screen and (min-width: 767px) {
  .articleList--col2 .articleList__item.widelink:hover .textWrap {
    background: #005bac;
  }
}

/* 弁護士を探す */
.pushBox {
  margin: 60px 0 0;
}

.pushBox__ttl {
  padding: 68px 30px;
  background: url(../img/img_sec02.png) no-repeat;
  background-size: cover;
  font-size: 2.8rem;
  line-height: 1.4;
  color: #fff;
}

.pushBox__list {
  padding: 30px 30px 10px;
  border-right: 1px solid #ddd;
  border-left: 1px solid #ddd;
  background: #eee;
}

.pushBox__list__item {
  margin-bottom: 20px;
  padding: 0 0 0 30px;
  background: url(../img/icon/ico_chk02.png) no-repeat left center;
  font-size: 1.8rem;
  font-weight: 500;
  color: #e50000;
}

.pushBox .band {
  padding: 25px 0;
  background: #f14537;
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
}

.pushBox .pref {
  display: flex;
  padding: 40px;
  background: #333;
  color: #fff;
  justify-content: space-between;
  flex-wrap: wrap;
}

.pushBox .pref a {
  color: #fff;
}

.pushBox .pref__block {
  width: calc((100% - 40px) / 2);
}

.pushBox .prefTtl {
  margin-bottom: 7px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
}

.pushBox .prefWrap {
  margin-bottom: 10px;
}

.pushBox .prefList__item {
  display: inline-block;
  margin: 0 10px 10px 0;
}

.pushBox .pref .pushBtn {
  width: 100%;
  margin-top: 20px;
}

.pushBox .pref .pushBtn a {
  display: block;
  padding: 15px 0;
  border: 3px solid #fff;
  border-radius: 6px;
  color: #fff;
  text-align: center;
}

.pushBox .pref .pushBtn a::before {
  display: inline-block;
  box-sizing: border-box;
  width: 6px;
  height: 6px;
  margin-right: 4px;
  border: 4px solid transparent;
  border-left: 8px solid #fff;
  content: "";
}

@media screen and (min-width: 767px) {
  .pushBox .pref .pushBtn a:hover {
    background: rgba(255, 255, 255, 0.1);
  }
}

/* 関連記事 */
.relatedBox__ttl {
  position: relative;
  margin-top: 54px;
  padding: 40px 20px;
  border-top: 4px solid #999;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.2272;
}

.relatedBox__ttl::before {
  position: absolute;
  top: -4px;
  left: 0;
  display: block;
  width: 28%;
  height: 4px;
  background: #005bac;
  content: "";
}

.relatedBox .articleList__item {
  width: calc((100% - 40px) / 2);
}

.relatedBox .articleList__item:not(:nth-child(3n + 1)) {
  margin-left: inherit;
}

.relatedBox .articleList__item:nth-child(2n) {
  margin-left: 40px;
}

/* 事案絞り込み */
.caseSearch {
  margin-bottom: 45px;
  text-align: center;
}

.caseSearch .caseSwitch {
  position: relative;
  display: inline-block;
  margin: 20px auto;
  padding: 1px 10px;
  border-radius: 50px;
  background: #337cbd;
  font-size: 1.6rem;
  font-weight: 400;
  color: #fff;
  text-align: center;
}

.caseSearch .caseSwitch::before {
  display: inline-block;
  box-sizing: border-box;
  width: 6px;
  height: 6px;
  margin: -3px 1px 0 0;
  border: 4px solid transparent;
  border-left: 8px solid #fff;
  vertical-align: middle;
  content: "";
}

.caseSearch .caseSwitch.open::before {
  margin-top: -5px;
  transform: rotate(-90deg);
}

.caseSearch .caseList {
  padding: 30px 15px;
  border: 1px solid #ddd;
  background: #f6f6f6;
  text-align: left;
}

.caseSearch .caseList__item {
  display: inline-block;
  margin: 0 15px;
}

.caseSearch .caseList__item a {
  position: relative;
  padding: 4px 0 5px 15px;
  font-size: 1.6rem;
  color: #333;
  text-decoration: none;
}

.caseSearch .caseList__item a::before {
  position: absolute;
  top: 12px;
  left: 0;
  display: inline-block;
  border-width: 5px 0 5px 8px;
  border-style: solid;
  border-color: transparent transparent transparent #005bac;
  content: "";
}

@media screen and (max-width: 1024px) {
  .articleList--col2 .articleList__item {
    margin-bottom: 15px;
  }
  .articleList--col2 .articleList__item .itemWrap {
    position: relative;
    display: block;
  }
  .articleList--col2 .articleList__item .itemWrap .thumb {
    width: 100%;
  }
  .articleList--col2 .articleList__item .itemWrap .textWrap {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px 5%;
    background: rgba(0, 0, 0, 0.8);
  }
  .articleList--col2 .articleList__item .itemWrap .textWrap__ttl {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.5;
  }
  .articleList--col2 .articleList__item .itemWrap .textWrap__text {
    margin-top: 8px;
    font-size: 1.3rem;
  }
  .articleList--col2 .articleList__item .itemWrap .textWrap .tagList {
    margin-top: 10px;
  }
  .articleList--col2 .articleList__item .itemWrap .textWrap .tagList__item + .tagList__item {
    margin-left: 4px;
  }
  .articleList--col2 .articleList__item .itemWrap .textWrap .info {
    margin-top: 15px;
  }
}

@media screen and (max-width: 767px) {
  /*=================================
    下層ページ共通
  =================================*/
  .articleList--simple {
    display: block;
  }
  .articleList--simple .articleList__item {
    width: 100%;
    margin-bottom: 15px;
  }
  .articleList--simple .articleList__item:not(:nth-child(3n + 1)) {
    margin-left: 0;
  }
  .articleList--simple .articleList__item .itemWrap .textWrap .info {
    margin-top: 5px;
  }
  /* 弁護士を探す */
  .pushBox {
    margin: 40px 0 0;
  }
  .pushBox__ttl {
    padding: 12px 3%;
    font-size: 1.8rem;
  }
  .pushBox__list {
    padding: 15px 15px 5px;
  }
  .pushBox__list__item {
    margin-bottom: 15px;
    padding: 3px 0 3px 30px;
    font-size: 1.4rem;
  }
  .pushBox .band {
    padding: 20px 10px;
    font-size: 1.6rem;
  }
  .pushBox .pref {
    display: block;
    padding: 15px 15px 25px;
  }
  .pushBox .pref__block {
    width: 100%;
  }
  .pushBox .prefTtl {
    font-size: 1.4rem;
  }
  .pushBox .prefWrap {
    margin-bottom: 15px;
  }
  .pushBox .prefList__item {
    display: inline-block;
    margin: 0 8px 5px 0;
  }
  .pushBox .pref .pushBtn {
    margin-top: 25px;
  }
  /* 関連記事 */
  .relatedBox {
    padding: 0 3%;
  }
  .relatedBox__ttl {
    margin-top: 40px;
    padding: 20px 3% 20px;
    font-size: 1.8rem;
  }
  .relatedBox__ttl::before {
    width: 130px;
  }
  .relatedBox .articleList__item {
    width: 100%;
  }
  .relatedBox .articleList__item:nth-child(2n) {
    margin-left: inherit;
  }
  /* 事案絞り込み */
  .caseSearch {
    margin-bottom: 30px;
  }
  .caseSearch .caseSwitch {
    margin: 15px auto;
    padding: 2px 8px;
    font-size: 1.5rem;
  }
  .caseSearch .caseSwitch::before {
    width: 5px;
    height: 5px;
    border: 3px solid transparent;
    border-left: 7px solid #fff;
  }
  .caseSearch .caseList {
    padding: 15px 3%;
  }
  .caseSearch .caseList__item {
    margin: 0 5px;
  }
  .caseSearch .caseList__item a {
    padding: 2px 0 3px 12px;
    font-size: 1.4rem;
  }
  .caseSearch .caseList__item a::before {
    top: 8px;
    border-width: 4px 0 4px 6px;
  }
}

/*=================================
  page--article
=================================*/
/* singlePage */
.singlePage__in > p {
  margin-top: 30px;
  font-size: 1.6rem;
  line-height: 1.875;
}

.singlePage__in > h1 {
  margin-bottom: 20px;
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1.2;
}

.singlePage__in > h2 {
  position: relative;
  margin-top: 54px;
  margin-bottom: 30px;
  padding: 40px 16px;
  border-top: 4px solid #999;
  border-bottom: 1px solid #ddd;
  background: #f6f6f6;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.2272;
}

.singlePage__in > h2::before {
  position: absolute;
  top: -4px;
  left: 0;
  display: block;
  width: 28%;
  height: 4px;
  background: #005bac;
  content: "";
}

.singlePage__in > h3 {
  position: relative;
  margin-top: 35px;
  margin-bottom: 24px;
  padding: 18px;
  border: 1px solid #ddd;
  background: #f6f6f6;
  font-size: 2rem;
  font-weight: 500;
  color: #333;
}

.singlePage__in > h3::before {
  position: absolute;
  top: -1px;
  left: -1px;
  display: block;
  width: 4px;
  height: calc(100% + 2px);
  background: #005bac;
  content: "";
}

.singlePage__in > h4 {
  position: relative;
  margin-top: 35px;
  margin-bottom: 25px;
  padding: 0 0 26px;
  border-bottom: 2px solid #ddd;
  font-size: 1.8rem;
  font-weight: 500;
  color: #333;
}

.singlePage__in > h4::before {
  position: absolute;
  bottom: -2px;
  left: 0;
  display: block;
  width: 28%;
  height: 2px;
  background: #005bac;
  content: "";
}

.singlePage__in > h5 {
  position: relative;
  margin-top: 30px;
  margin-bottom: 20px;
  padding: 8px 4px 12px;
  border-bottom: 1px solid #ddd;
  background: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  color: #333;
}

.singlePage__in > h5::before {
  position: absolute;
  top: -1px;
  left: -1px;
  display: block;
  width: 4px;
  height: calc(100% + 2px);
  background: #005bac;
  content: "";
}

.singlePage__in > h6 {
  margin-top: 30px;
  margin-bottom: 20px;
  font-size: 1.5rem;
  font-weight: 500;
}

.singlePage__in > h6::before {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-top: -2px;
  margin-right: .8rem;
  background: #005bac;
  vertical-align: middle;
  content: "";
}

.singlePage__in > blockquote {
  position: relative;
  box-sizing: border-box;
  margin: 30px 0;
  padding: 40px 35px;
  border: 3px solid #ddd;
  font-style: italic;
  color: #464646;
}

.singlePage__in > blockquote::before {
  position: absolute;
  top: -28px;
  left: 0;
  display: inline-block;
  width: 80px;
  height: 50px;
  background: #fff;
  font-size: 8rem;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
  color: #337cbd;
  text-align: center;
  content: "“";
}

.singlePage__in > blockquote h4, .singlePage__in > blockquote h5, .singlePage__in > blockquote h6 {
  position: relative;
  margin: 0 0 20px;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: .06em;
}

.singlePage__in > blockquote h4::after, .singlePage__in > blockquote h5::after, .singlePage__in > blockquote h6::after {
  position: relative;
  bottom: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 10px;
  background-image: repeating-linear-gradient(-45deg, #337cbd, #337cbd 1px, transparent 2px, transparent 5px);
  background-size: 7px 7px;
  content: '';
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.singlePage__in > blockquote p {
  font-style: normal;
}

.singlePage__in > blockquote cite {
  display: block;
  margin: 10px 0 0;
  font-size: 0.9em;
  line-height: 1;
  color: #888888;
  text-align: right;
}

.singlePage__in > img {
  display: block;
  margin: 15px auto 20px;
}

.singlePage__in > ul:not([class]) {
  margin-top: 30px;
  margin-bottom: 54px;
  padding: 20px 30px;
  border: 1px solid #ddd;
  background: #f6f6f6;
}

.singlePage__in > ul:not([class]) li {
  position: relative;
  padding-left: 22px;
  font-size: 1.6rem;
  font-weight: 400;
}

.singlePage__in > ul:not([class]) li::before {
  position: absolute;
  top: 12px;
  left: 0;
  display: inline-block;
  border-width: 5px 0 5px 8px;
  border-style: solid;
  border-color: transparent transparent transparent #005bac;
  content: "";
}

.singlePage__in > ul:not([class]) li + li {
  margin-top: 15px;
}

.singlePage__in > ol:not([class]) {
  margin-top: 30px;
  margin-bottom: 54px;
  padding: 20px 25px;
  border: 1px solid #ddd;
  background: #f6f6f6;
  counter-reset: listNum;
}

.singlePage__in > ol:not([class]) li {
  position: relative;
  padding-left: 34px;
  font-size: 1.6rem;
  font-weight: 400;
}

.singlePage__in > ol:not([class]) li::before {
  position: absolute;
  top: 2px;
  left: 0;
  padding: 3px 8px 4px 8px;
  border-radius: 50%;
  background: #337cbd;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.8rem;
  line-height: 1;
  color: #fff;
  content: counter(listNum);
  counter-increment: listNum;
}

.singlePage__in > ol:not([class]) li + li {
  margin-top: 15px;
}

@media screen and (min-width: 0) and (max-width: 767px) {
  .singlePage__in > p {
    margin-top: 15px;
    font-size: 1.4rem;
    line-height: 1.5;
  }
  .singlePage__in > h1 {
    margin-bottom: 10px;
    font-size: 2rem;
    line-height: 1.2;
  }
  .singlePage__in > h2 {
    margin-top: 40px;
    margin-bottom: 15px;
    padding: 15px 10px;
    font-size: 1.8rem;
    line-height: 1.38888;
  }
  .singlePage__in > h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    padding: 15px 10px;
    font-size: 1.6rem;
  }
  .singlePage__in > h4 {
    margin-top: 30px;
    margin-bottom: 15px;
    padding: 0 0 12px;
    font-size: 1.5rem;
  }
  .singlePage__in > h5 {
    margin-bottom: 15px;
    padding: 6px 12px 8px;
  }
  .singlePage__in > h6 {
    margin-bottom: 15px;
  }
  .singlePage__in > h6::before {
    width: 8px;
    height: 8px;
    margin-right: .6rem;
  }
  .singlePage__in > blockquote {
    margin: 20px 0;
    padding: 25px 3% 20px;
  }
  .singlePage__in > blockquote::before {
    top: -22px;
    width: 50px;
    font-size: 6rem;
  }
  .singlePage__in > blockquote h4, .singlePage__in > blockquote h5, .singlePage__in > blockquote h6 {
    margin: 0 0 15px;
    font-size: 1.4rem;
    line-height: 1.2;
  }
  .singlePage__in > blockquote h4::after, .singlePage__in > blockquote h5::after, .singlePage__in > blockquote h6::after {
    height: 7px;
  }
  .singlePage__in > img {
    display: block;
    margin: 15px auto;
  }
  .singlePage__in > ul:not([class]) {
    margin-bottom: 15px;
    padding: 15px 3%;
  }
  .singlePage__in > ul:not([class]) li {
    padding-left: 15px;
    font-size: 1.5rem;
  }
  .singlePage__in > ul:not([class]) li::before {
    top: 7px;
    border-width: 5px 0 5px 6px;
  }
  .singlePage__in > ul:not([class]) li + li {
    margin-top: 10px;
  }
  .singlePage__in > ol:not([class]) {
    margin-bottom: 15px;
    padding: 15px 3%;
  }
  .singlePage__in > ol:not([class]) li {
    padding-left: 30px;
    font-size: 1.5rem;
  }
  .singlePage__in > ol:not([class]) li::before {
    padding: 3px 6px 3px 6px;
    font-size: 1.4rem;
  }
  .singlePage__in > ol:not([class]) li + li {
    margin-top: 10px;
  }
}

.singlePage .tocBox {
  margin: 40px 0 20px;
}

.singlePage .tocBox__ttl {
  padding: 12px 0;
  font-size: 2.2rem;
  font-weight: 300;
  text-align: center;
}

.singlePage .tocBox__ttl .toc_toggle {
  margin: 0 0 0 18px;
  font-size: 1.2rem;
  font-weight: normal;
  color: #999;
  vertical-align: middle;
  cursor: pointer;
}

.singlePage .tocBox .tocList {
  counter-reset: tocNum;
}

.singlePage .tocBox .tocList__item a {
  position: relative;
  display: block;
  padding: 18px 16px 18px 60px;
  border-bottom: 1px solid #e2e2e2;
  font-size: 1.6rem;
  font-weight: 500;
}

.singlePage .tocBox .tocList__item a::before {
  position: absolute;
  top: 23px;
  left: 23px;
  width: 22px;
  border-radius: 50%;
  background: #337cbd;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.4rem;
  line-height: 22px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  content: counter(tocNum);
  counter-increment: tocNum;
}

.singlePage .infoWrap {
  margin-bottom: 30px;
}

.singlePage .infoWrap .info--left {
  float: left;
}

.singlePage .infoWrap .info--left .data {
  display: flex;
}

.singlePage .infoWrap .info--left .data .date {
  padding-left: 20px;
  background: url(../img/icon/ico_cal.png) no-repeat left center;
  font-size: 1.8rem;
  font-weight: 500;
  color: #005bac;
}

.singlePage .infoWrap .info--left .data .date + .date {
  margin-left: 1rem;
  background: url(../img/icon/ico_sea02.png) no-repeat left center;
  background-size: 16px auto;
}

.singlePage .infoWrap .info--left .data .view {
  margin-left: 2rem;
  padding-left: 18px;
  background: url(../img/icon/ico_eye.png) no-repeat left center;
  font-size: 1.4rem;
}

.singlePage .infoWrap .info--left .data .view .num {
  margin-right: 3px;
  font-size: 1.8rem;
  font-weight: 500;
  color: #005bac;
}

.singlePage .infoWrap .info--right {
  display: flex;
  float: right;
}

.singlePage .infoWrap .info--right .list--cat {
  display: flex;
  padding-left: 22px;
  background: url(../img/icon/ico_fol.png) no-repeat left center;
}

.singlePage .infoWrap .info--right .list--tag {
  display: flex;
  margin-left: 1rem;
  padding-left: 22px;
  background: url(../img/icon/ico_tag.png) no-repeat left center;
}

.singlePage .infoWrap .info--right a {
  font-size: 1.4rem;
  color: #333;
}

.singlePage .articleMv {
  margin: 20px auto;
  text-align: center;
}

.singlePage .snsWrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.singlePage .snsWrap::before {
  margin: -10px 1rem 0 0;
  font-size: 1.4rem;
  line-height: 1;
  content: "この記事をシェアする";
}

.singlePage .snsList {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.singlePage .snsList li {
  margin-left: 5px;
  line-height: 1;
}

.singlePage .snsList li.fb {
  margin-right: -5px;
}

.singlePage .understand {
  margin: 60px auto 30px;
}

.singlePage .understand__ttl {
  position: relative;
  padding: 12px 15px;
  background: #337cbd;
  font-weight: 500;
  color: #fff;
  text-align: center;
}

.singlePage .understand__ttl::before {
  display: inline-block;
  width: 25px;
  height: 22px;
  margin-right: 6px;
  background: url(../img/icon/ico_kiji.png) no-repeat;
  vertical-align: middle;
  content: "";
}

.singlePage .understand__cont {
  padding: 25px;
  border: 1px solid #ddd;
  border-top: none;
  background: #f8f8f8;
}

.singlePage .understand__list__item {
  position: relative;
  padding: 8px 0;
  font-size: 1.8rem;
}

.singlePage .understand__list__item::before {
  display: inline-block;
  width: 21px;
  height: 21px;
  margin-right: 10px;
  background: url(../img/icon/ico_chk01.png) no-repeat;
  vertical-align: middle;
  content: "";
}

.singlePage .understand__text {
  margin-top: 20px;
}

.singlePage .link-bx {
  position: relative;
  z-index: 0;
  margin: 40px auto 20px;
  border: 1px solid #aecbe5;
}

.singlePage .link-bx a {
  display: block;
  padding: 16px 20px;
  background: #e9f5ff;
}

@media screen and (min-width: 767px) {
  .singlePage .link-bx a:hover {
    background: #fff;
  }
}

.singlePage .link-bx::before {
  position: absolute;
  z-index: 1;
  top: -5px;
  right: -5px;
  padding: 5px 10px;
  background: #F30;
  color: #fff;
  content: "関連記事";
}

.singlePage .point {
  margin: 40px auto 20px;
  background: #337cbd;
  color: #fff;
  text-align: center;
}

.singlePage .point-ttl {
  padding: 20px 0;
  border-bottom: 1px solid #71a4d1;
  font-size: 2rem;
}

.singlePage .point-ttl::before {
  display: inline-block;
  width: 19px;
  height: 25px;
  margin-right: 10px;
  background: url(../img/icon/ico_pnt.png) no-repeat;
  vertical-align: middle;
  content: "";
}

.singlePage .point-bx {
  padding: 20px;
  text-align: center;
}

.singlePage .check-bx {
  margin-top: 35px;
  margin-bottom: 54px;
  padding: 15px 30px;
  border: 3px solid #ff8d8d;
  background: #fff5f5;
}

.singlePage .check-bx li {
  padding: 8px 0 8px 34px;
  background: url(../img/icon/ico_chk02.png) no-repeat left center;
  font-weight: 600;
  color: #e50000;
}

.singlePage .related--simple {
  position: relative;
  margin: 50px auto;
  border: 1px solid #ddd;
}

.singlePage .related--simple__item a {
  display: block;
  padding: 20px 15px;
}

@media screen and (min-width: 767px) {
  .singlePage .related--simple__item a:hover {
    background: #337cbd;
    color: #fff;
  }
}

.singlePage .related--simple__item + .related--simple__item {
  border-top: 1px dotted #ddd;
}

.singlePage .related--simple::before {
  position: absolute;
  top: -15px;
  right: -1px;
  padding: 8px 10px;
  background: #005bac;
  line-height: 1;
  color: #fff;
  content: "一緒に読まれている記事";
}

@media screen and (min-width: 0) and (max-width: 767px) {
  .singlePage .tocBox {
    margin: 30px 0 20px;
  }
  .singlePage .tocBox__ttl {
    padding: 10px 0;
    font-size: 2rem;
  }
  .singlePage .tocBox__ttl .toc_toggle {
    margin: 0 0 0 10px;
  }
  .singlePage .tocBox .tocList__item a {
    padding: 15px 3% 15px 40px;
    font-size: 1.4rem;
  }
  .singlePage .tocBox .tocList__item a::before {
    top: 15px;
    left: 10px;
  }
  .singlePage .infoWrap {
    margin-bottom: 20px;
  }
  .singlePage .infoWrap .info--left {
    float: none;
  }
  .singlePage .infoWrap .info--left .data .date {
    font-size: 1.4rem;
  }
  .singlePage .infoWrap .info--left .data .date + .date {
    margin-left: .8rem;
  }
  .singlePage .infoWrap .info--left .data .view {
    margin-left: 1.5rem;
    padding-left: 20px;
    font-size: 1.2rem;
  }
  .singlePage .infoWrap .info--left .data .view .num {
    font-size: 1.4rem;
  }
  .singlePage .infoWrap .info--right {
    display: block;
    float: none;
    margin-top: 5px;
  }
  .singlePage .infoWrap .info--right .list--tag {
    margin-left: 0;
  }
  .singlePage .infoWrap .info--right a {
    font-size: 1.2rem;
  }
  .singlePage .snsWrap::before {
    content: none;
  }
  .singlePage .snsList li {
    margin-left: 3px;
  }
  .singlePage .understand {
    margin: 40px auto 20px;
  }
  .singlePage .understand__ttl {
    padding: 10px 3%;
  }
  .singlePage .understand__cont {
    padding: 15px;
  }
  .singlePage .understand__list__item {
    position: relative;
    padding: 5px 0 5px 30px;
    font-size: 1.4rem;
  }
  .singlePage .understand__list__item::before {
    position: absolute;
    top: 5px;
    left: 0;
    margin-right: 0;
  }
  .singlePage .understand__text {
    margin-top: 15px;
    padding: 0 3%;
  }
  .singlePage .link-bx {
    margin: 30px auto 15px;
  }
  .singlePage .link-bx a {
    padding: 20px 3% 15px;
  }
  .singlePage .link-bx::before {
    top: -10px;
    right: -5px;
    padding: 3px 5px;
  }
  .singlePage .point {
    margin: 30px auto 15px;
  }
  .singlePage .point-ttl {
    padding: 15px 0 10px;
    font-size: 1.4rem;
  }
  .singlePage .point-bx {
    padding: 15px;
    text-align: left;
  }
  .singlePage .check-bx {
    margin-top: 30px;
    margin-bottom: 15px;
    padding: 10px 3%;
  }
  .singlePage .check-bx li {
    padding: 5px 0 5px 32px;
  }
  .singlePage .related--simple {
    margin: 40px auto;
  }
  .singlePage .related--simple__item a {
    padding: 15px 3%;
  }
  .singlePage .related--simple::before {
    top: -20px;
    padding: 8px 6px;
  }
}

/* 記事詳細ページ */
.articleDetail__in > p {
  margin-top: 30px;
  font-size: 1.6rem;
  line-height: 1.875;
}

.articleDetail__in > h1 {
  margin-bottom: 20px;
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1.2;
}

.articleDetail__in > h2 {
  position: relative;
  margin-top: 54px;
  margin-bottom: 30px;
  padding: 40px 16px;
  border-top: 4px solid #999;
  border-bottom: 1px solid #ddd;
  background: #f6f6f6;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.2272;
}

.articleDetail__in > h2::before {
  position: absolute;
  top: -4px;
  left: 0;
  display: block;
  width: 28%;
  height: 4px;
  background: #005bac;
  content: "";
}

.articleDetail__in > h3 {
  position: relative;
  margin-top: 35px;
  margin-bottom: 24px;
  padding: 18px;
  border: 1px solid #ddd;
  background: #f6f6f6;
  font-size: 2rem;
  font-weight: 500;
  color: #333;
}

.articleDetail__in > h3::before {
  position: absolute;
  top: -1px;
  left: -1px;
  display: block;
  width: 4px;
  height: calc(100% + 2px);
  background: #005bac;
  content: "";
}

.articleDetail__in > h4 {
  position: relative;
  margin-top: 35px;
  margin-bottom: 25px;
  padding: 0 0 26px;
  border-bottom: 2px solid #ddd;
  font-size: 1.8rem;
  font-weight: 500;
  color: #333;
}

.articleDetail__in > h4::before {
  position: absolute;
  bottom: -2px;
  left: 0;
  display: block;
  width: 28%;
  height: 2px;
  background: #005bac;
  content: "";
}

.articleDetail__in > h5 {
  position: relative;
  margin-top: 30px;
  margin-bottom: 20px;
  padding: 8px 4px 12px;
  border-bottom: 1px solid #ddd;
  background: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  color: #333;
}

.articleDetail__in > h5::before {
  position: absolute;
  top: -1px;
  left: -1px;
  display: block;
  width: 4px;
  height: calc(100% + 2px);
  background: #005bac;
  content: "";
}

.articleDetail__in > h6 {
  margin-top: 30px;
  margin-bottom: 20px;
  font-size: 1.5rem;
  font-weight: 500;
}

.articleDetail__in > h6::before {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-top: -2px;
  margin-right: .8rem;
  background: #005bac;
  vertical-align: middle;
  content: "";
}

.articleDetail__in > blockquote {
  position: relative;
  box-sizing: border-box;
  margin: 30px 0;
  padding: 40px 35px;
  border: 3px solid #ddd;
  font-style: italic;
  color: #464646;
}

.articleDetail__in > blockquote::before {
  position: absolute;
  top: -28px;
  left: 0;
  display: inline-block;
  width: 80px;
  height: 50px;
  background: #fff;
  font-size: 8rem;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
  color: #337cbd;
  text-align: center;
  content: "“";
}

.articleDetail__in > blockquote h4, .articleDetail__in > blockquote h5, .articleDetail__in > blockquote h6 {
  position: relative;
  margin: 0 0 20px;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: .06em;
}

.articleDetail__in > blockquote h4::after, .articleDetail__in > blockquote h5::after, .articleDetail__in > blockquote h6::after {
  position: relative;
  bottom: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 10px;
  background-image: repeating-linear-gradient(-45deg, #337cbd, #337cbd 1px, transparent 2px, transparent 5px);
  background-size: 7px 7px;
  content: '';
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.articleDetail__in > blockquote p {
  font-style: normal;
}

.articleDetail__in > blockquote cite {
  display: block;
  margin: 10px 0 0;
  font-size: 0.9em;
  line-height: 1;
  color: #888888;
  text-align: right;
}

.articleDetail__in > img {
  display: block;
  margin: 15px auto 20px;
}

.articleDetail__in > ul:not([class]) {
  margin-top: 30px;
  margin-bottom: 54px;
  padding: 20px 30px;
  border: 1px solid #ddd;
  background: #f6f6f6;
}

.articleDetail__in > ul:not([class]) li {
  position: relative;
  padding-left: 22px;
  font-size: 1.6rem;
  font-weight: 400;
}

.articleDetail__in > ul:not([class]) li::before {
  position: absolute;
  top: 12px;
  left: 0;
  display: inline-block;
  border-width: 5px 0 5px 8px;
  border-style: solid;
  border-color: transparent transparent transparent #005bac;
  content: "";
}

.articleDetail__in > ul:not([class]) li + li {
  margin-top: 15px;
}

.articleDetail__in > ol:not([class]) {
  margin-top: 30px;
  margin-bottom: 54px;
  padding: 20px 25px;
  border: 1px solid #ddd;
  background: #f6f6f6;
  counter-reset: listNum;
}

.articleDetail__in > ol:not([class]) li {
  position: relative;
  padding-left: 34px;
  font-size: 1.6rem;
  font-weight: 400;
}

.articleDetail__in > ol:not([class]) li::before {
  position: absolute;
  top: 2px;
  left: 0;
  padding: 3px 8px 4px 8px;
  border-radius: 50%;
  background: #337cbd;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.8rem;
  line-height: 1;
  color: #fff;
  content: counter(listNum);
  counter-increment: listNum;
}

.articleDetail__in > ol:not([class]) li + li {
  margin-top: 15px;
}

@media screen and (min-width: 0) and (max-width: 767px) {
  .articleDetail__in > p {
    margin-top: 15px;
    font-size: 1.4rem;
    line-height: 1.5;
  }
  .articleDetail__in > h1 {
    margin-bottom: 10px;
    font-size: 2rem;
    line-height: 1.2;
  }
  .articleDetail__in > h2 {
    margin-top: 40px;
    margin-bottom: 15px;
    padding: 15px 10px;
    font-size: 1.8rem;
    line-height: 1.38888;
  }
  .articleDetail__in > h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    padding: 15px 10px;
    font-size: 1.6rem;
  }
  .articleDetail__in > h4 {
    margin-top: 30px;
    margin-bottom: 15px;
    padding: 0 0 12px;
    font-size: 1.5rem;
  }
  .articleDetail__in > h5 {
    margin-bottom: 15px;
    padding: 6px 12px 8px;
  }
  .articleDetail__in > h6 {
    margin-bottom: 15px;
  }
  .articleDetail__in > h6::before {
    width: 8px;
    height: 8px;
    margin-right: .6rem;
  }
  .articleDetail__in > blockquote {
    margin: 20px 0;
    padding: 25px 3% 20px;
  }
  .articleDetail__in > blockquote::before {
    top: -22px;
    width: 50px;
    font-size: 6rem;
  }
  .articleDetail__in > blockquote h4, .articleDetail__in > blockquote h5, .articleDetail__in > blockquote h6 {
    margin: 0 0 15px;
    font-size: 1.4rem;
    line-height: 1.2;
  }
  .articleDetail__in > blockquote h4::after, .articleDetail__in > blockquote h5::after, .articleDetail__in > blockquote h6::after {
    height: 7px;
  }
  .articleDetail__in > img {
    display: block;
    margin: 15px auto;
  }
  .articleDetail__in > ul:not([class]) {
    margin-bottom: 15px;
    padding: 15px 3%;
  }
  .articleDetail__in > ul:not([class]) li {
    padding-left: 15px;
    font-size: 1.5rem;
  }
  .articleDetail__in > ul:not([class]) li::before {
    top: 7px;
    border-width: 5px 0 5px 6px;
  }
  .articleDetail__in > ul:not([class]) li + li {
    margin-top: 10px;
  }
  .articleDetail__in > ol:not([class]) {
    margin-bottom: 15px;
    padding: 15px 3%;
  }
  .articleDetail__in > ol:not([class]) li {
    padding-left: 30px;
    font-size: 1.5rem;
  }
  .articleDetail__in > ol:not([class]) li::before {
    padding: 3px 6px 3px 6px;
    font-size: 1.4rem;
  }
  .articleDetail__in > ol:not([class]) li + li {
    margin-top: 10px;
  }
}

.articleDetail .tocBox {
  margin: 40px 0 20px;
}

.articleDetail .tocBox__ttl {
  padding: 12px 0;
  font-size: 2.2rem;
  font-weight: 300;
  text-align: center;
}

.articleDetail .tocBox__ttl .toc_toggle {
  margin: 0 0 0 18px;
  font-size: 1.2rem;
  font-weight: normal;
  color: #999;
  vertical-align: middle;
  cursor: pointer;
}

.articleDetail .tocBox .tocList {
  counter-reset: tocNum;
}

.articleDetail .tocBox .tocList__item a {
  position: relative;
  display: block;
  padding: 18px 16px 18px 60px;
  border-bottom: 1px solid #e2e2e2;
  font-size: 1.6rem;
  font-weight: 500;
}

.articleDetail .tocBox .tocList__item a::before {
  position: absolute;
  top: 23px;
  left: 23px;
  width: 22px;
  border-radius: 50%;
  background: #337cbd;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.4rem;
  line-height: 22px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  content: counter(tocNum);
  counter-increment: tocNum;
}

.articleDetail .infoWrap {
  margin-bottom: 30px;
}

.articleDetail .infoWrap .info--left {
  float: left;
}

.articleDetail .infoWrap .info--left .data {
  display: flex;
}

.articleDetail .infoWrap .info--left .data .date {
  padding-left: 20px;
  background: url(../img/icon/ico_cal.png) no-repeat left center;
  font-size: 1.8rem;
  font-weight: 500;
  color: #005bac;
}

.articleDetail .infoWrap .info--left .data .date + .date {
  margin-left: 1rem;
  background: url(../img/icon/ico_sea02.png) no-repeat left center;
  background-size: 16px auto;
}

.articleDetail .infoWrap .info--left .data .view {
  margin-left: 2rem;
  padding-left: 18px;
  background: url(../img/icon/ico_eye.png) no-repeat left center;
  font-size: 1.4rem;
}

.articleDetail .infoWrap .info--left .data .view .num {
  margin-right: 3px;
  font-size: 1.8rem;
  font-weight: 500;
  color: #005bac;
}

.articleDetail .infoWrap .info--right {
  display: flex;
  float: right;
}

.articleDetail .infoWrap .info--right .list--cat {
  display: flex;
  padding-left: 22px;
  background: url(../img/icon/ico_fol.png) no-repeat left center;
}

.articleDetail .infoWrap .info--right .list--tag {
  display: flex;
  margin-left: 1rem;
  padding-left: 22px;
  background: url(../img/icon/ico_tag.png) no-repeat left center;
}

.articleDetail .infoWrap .info--right a {
  font-size: 1.4rem;
  color: #333;
}

.articleDetail .articleMv {
  margin: 20px auto;
  text-align: center;
}

.articleDetail .snsWrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.articleDetail .snsWrap::before {
  margin: -10px 1rem 0 0;
  font-size: 1.4rem;
  line-height: 1;
  content: "この記事をシェアする";
}

.articleDetail .snsList {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.articleDetail .snsList li {
  margin-left: 5px;
  line-height: 1;
}

.articleDetail .snsList li.fb {
  margin-right: -5px;
}

.articleDetail .understand {
  margin: 60px auto 30px;
}

.articleDetail .understand__ttl {
  position: relative;
  padding: 12px 15px;
  background: #337cbd;
  font-weight: 500;
  color: #fff;
  text-align: center;
}

.articleDetail .understand__ttl::before {
  display: inline-block;
  width: 25px;
  height: 22px;
  margin-right: 6px;
  background: url(../img/icon/ico_kiji.png) no-repeat;
  vertical-align: middle;
  content: "";
}

.articleDetail .understand__cont {
  padding: 25px;
  border: 1px solid #ddd;
  border-top: none;
  background: #f8f8f8;
}

.articleDetail .understand__list__item {
  position: relative;
  padding: 8px 0;
  font-size: 1.8rem;
}

.articleDetail .understand__list__item::before {
  display: inline-block;
  width: 21px;
  height: 21px;
  margin-right: 10px;
  background: url(../img/icon/ico_chk01.png) no-repeat;
  vertical-align: middle;
  content: "";
}

.articleDetail .understand__text {
  margin-top: 20px;
}

.articleDetail .link-bx {
  position: relative;
  z-index: 0;
  margin: 40px auto 20px;
  border: 1px solid #aecbe5;
}

.articleDetail .link-bx a {
  display: block;
  padding: 16px 20px;
  background: #e9f5ff;
}

@media screen and (min-width: 767px) {
  .articleDetail .link-bx a:hover {
    background: #fff;
  }
}

.articleDetail .link-bx::before {
  position: absolute;
  z-index: 1;
  top: -5px;
  right: -5px;
  padding: 5px 10px;
  background: #F30;
  color: #fff;
  content: "関連記事";
}

.articleDetail .point {
  margin: 40px auto 20px;
  background: #337cbd;
  color: #fff;
  text-align: center;
}

.articleDetail .point-ttl {
  padding: 20px 0;
  border-bottom: 1px solid #71a4d1;
  font-size: 2rem;
}

.articleDetail .point-ttl::before {
  display: inline-block;
  width: 19px;
  height: 25px;
  margin-right: 10px;
  background: url(../img/icon/ico_pnt.png) no-repeat;
  vertical-align: middle;
  content: "";
}

.articleDetail .point-bx {
  padding: 20px;
  text-align: center;
}

.articleDetail .check-bx {
  margin-top: 35px;
  margin-bottom: 54px;
  padding: 15px 30px;
  border: 3px solid #ff8d8d;
  background: #fff5f5;
}

.articleDetail .check-bx li {
  padding: 8px 0 8px 34px;
  background: url(../img/icon/ico_chk02.png) no-repeat left center;
  font-weight: 600;
  color: #e50000;
}

.articleDetail .related--simple {
  position: relative;
  margin: 50px auto;
  border: 1px solid #ddd;
}

.articleDetail .related--simple__item a {
  display: block;
  padding: 20px 15px;
}

@media screen and (min-width: 767px) {
  .articleDetail .related--simple__item a:hover {
    background: #337cbd;
    color: #fff;
  }
}

.articleDetail .related--simple__item + .related--simple__item {
  border-top: 1px dotted #ddd;
}

.articleDetail .related--simple::before {
  position: absolute;
  top: -15px;
  right: -1px;
  padding: 8px 10px;
  background: #005bac;
  line-height: 1;
  color: #fff;
  content: "一緒に読まれている記事";
}

@media screen and (min-width: 0) and (max-width: 767px) {
  .articleDetail .tocBox {
    margin: 30px 0 20px;
  }
  .articleDetail .tocBox__ttl {
    padding: 10px 0;
    font-size: 2rem;
  }
  .articleDetail .tocBox__ttl .toc_toggle {
    margin: 0 0 0 10px;
  }
  .articleDetail .tocBox .tocList__item a {
    padding: 15px 3% 15px 40px;
    font-size: 1.4rem;
  }
  .articleDetail .tocBox .tocList__item a::before {
    top: 15px;
    left: 10px;
  }
  .articleDetail .infoWrap {
    margin-bottom: 20px;
  }
  .articleDetail .infoWrap .info--left {
    float: none;
  }
  .articleDetail .infoWrap .info--left .data .date {
    font-size: 1.4rem;
  }
  .articleDetail .infoWrap .info--left .data .date + .date {
    margin-left: .8rem;
  }
  .articleDetail .infoWrap .info--left .data .view {
    margin-left: 1.5rem;
    padding-left: 20px;
    font-size: 1.2rem;
  }
  .articleDetail .infoWrap .info--left .data .view .num {
    font-size: 1.4rem;
  }
  .articleDetail .infoWrap .info--right {
    display: block;
    float: none;
    margin-top: 5px;
  }
  .articleDetail .infoWrap .info--right .list--tag {
    margin-left: 0;
  }
  .articleDetail .infoWrap .info--right a {
    font-size: 1.2rem;
  }
  .articleDetail .snsWrap::before {
    content: none;
  }
  .articleDetail .snsList li {
    margin-left: 3px;
  }
  .articleDetail .understand {
    margin: 40px auto 20px;
  }
  .articleDetail .understand__ttl {
    padding: 10px 3%;
  }
  .articleDetail .understand__cont {
    padding: 15px;
  }
  .articleDetail .understand__list__item {
    position: relative;
    padding: 5px 0 5px 30px;
    font-size: 1.4rem;
  }
  .articleDetail .understand__list__item::before {
    position: absolute;
    top: 5px;
    left: 0;
    margin-right: 0;
  }
  .articleDetail .understand__text {
    margin-top: 15px;
    padding: 0 3%;
  }
  .articleDetail .link-bx {
    margin: 30px auto 15px;
  }
  .articleDetail .link-bx a {
    padding: 20px 3% 15px;
  }
  .articleDetail .link-bx::before {
    top: -10px;
    right: -5px;
    padding: 3px 5px;
  }
  .articleDetail .point {
    margin: 30px auto 15px;
  }
  .articleDetail .point-ttl {
    padding: 15px 0 10px;
    font-size: 1.4rem;
  }
  .articleDetail .point-bx {
    padding: 15px;
    text-align: left;
  }
  .articleDetail .check-bx {
    margin-top: 30px;
    margin-bottom: 15px;
    padding: 10px 3%;
  }
  .articleDetail .check-bx li {
    padding: 5px 0 5px 32px;
  }
  .articleDetail .related--simple {
    margin: 40px auto;
  }
  .articleDetail .related--simple__item a {
    padding: 15px 3%;
  }
  .articleDetail .related--simple::before {
    top: -20px;
    padding: 8px 6px;
  }
}

/*=================================
  カテゴリーページ
=================================*/
.blackBox {
  padding: 27px 1%;
  background: #333;
}

.blackBox .btnWrap {
  margin: 0 auto;
}

.blackBox .btnWrap a {
  display: inline-block;
  width: 100%;
  max-width: 1160px;
  padding: 30px 0;
  border-radius: 5px;
  background: #337cbd;
  box-shadow: 0 4px 0 #2667a1;
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  text-align: center;
  text-decoration: none;
  transition-timing-function: ease-out;
  transition-duration: 0.1s;
  transition-property: all;
}

.blackBox .btnWrap a:hover {
  box-shadow: none;
  transform: translateY(4px);
}

.catContWrap {
  padding: 60px 1%;
  background: #fff;
}

.catContWrap__inner {
  display: flex;
  max-width: 1160px;
  margin: 0 auto;
  justify-content: space-between;
}

.catContWrap .catContTtl {
  margin-bottom: 50px;
  font-size: 2.6rem;
  font-weight: 500;
  color: #222;
}

.catContWrap .merit {
  width: calc((100% - 60px) / 2);
}

.catContWrap .meritList__item {
  width: 100%;
  padding: 30px 5px 30px 50px;
  border-top: 1px solid #ccc;
  background: #fff;
}

.catContWrap .meritList__item:last-child {
  border-bottom: 1px solid #ccc;
}

.catContWrap .meritList__item .meritTtl {
  position: relative;
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: 500;
  color: #005bac;
}

.catContWrap .meritList__item .meritText {
  line-height: 1.5;
}

.catContWrap .meritList__item:not(:last-child) {
  margin-right: 2px;
}

.catContWrap .meritList__item:nth-child(1) .meritTtl::before {
  position: absolute;
  top: 0;
  left: -50px;
  display: inline-block;
  width: 35px;
  height: 35px;
  background: #fff url(../img/icon/ico_mer01.png) no-repeat left top;
  background-size: contain;
  content: "";
}

.catContWrap .meritList__item:nth-child(2) .meritTtl::before {
  position: absolute;
  top: 0;
  left: -50px;
  display: inline-block;
  width: 35px;
  height: 35px;
  background: #fff url(../img/icon/ico_mer02.png) no-repeat left top;
  background-size: contain;
  content: "";
}

.catContWrap .meritList__item:nth-child(3) .meritTtl::before {
  position: absolute;
  top: 0;
  left: -50px;
  display: inline-block;
  width: 35px;
  height: 35px;
  background: #fff url(../img/icon/ico_mer03.png) no-repeat left top;
  background-size: contain;
  content: "";
}

.catContWrap .pref {
  width: calc((100% - 60px) / 2);
}

.catContWrap .prefWrap__block {
  display: flex;
  align-items: center;
}

.catContWrap .prefWrap__block:nth-child(2n - 1) {
  background: #f4f4f4;
}

.catContWrap .prefTtl {
  width: 190px;
  padding: 20px 15px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #005bac;
}

.catContWrap .prefList {
  width: calc(100% - 190px);
  padding: 20px 15px;
  line-height: 1.2;
}

.catContWrap .prefList__item {
  display: inline-block;
  margin-right: 5px;
  line-height: 1;
}

.catContWrap .prefList__item a {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  color: #222;
}

.catContOffice {
  padding: 50px 1%;
  background: #77b8f2 url(../img/bg_pickup_office.png) no-repeat center top;
}

.catContOffice__inner {
  max-width: 1160px;
  margin: 0 auto;
}

.catContOffice .pickOfficeWrap__ttl {
  position: relative;
  padding: 27px 32px;
  background: #f3f3f3;
  font-size: 2rem;
  font-weight: 500;
}

.catContOffice .pickOfficeWrap__ttl .date {
  margin-right: 2rem;
  color: #005bac;
}

.catContOffice .pickOfficeWrap__ttl::after {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: calc(100% / 6);
  height: 4px;
  background: #005bac;
  content: "";
}

.catContOffice .pickOfficeWrap__list {
  display: flex;
  border-top: 1px solid #ccc;
  background: #f3f3f3;
}

.catContOffice .pickOfficeWrap__list__item {
  position: relative;
  width: calc(100% / 4);
  min-height: 380px;
  padding: 15px 15px 25px;
  background: #f3f3f3;
}

.catContOffice .pickOfficeWrap__list__item .thumb {
  margin-bottom: 20px;
}

.catContOffice .pickOfficeWrap__list__item .textWrap .name {
  display: block;
  text-align: center;
}

.catContOffice .pickOfficeWrap__list__item .textWrap .text {
  margin-top: 15px;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8571;
}

.catContOffice .pickOfficeWrap__list__item .areaWrap {
  position: absolute;
  bottom: 25px;
  left: 15px;
}

.catContOffice .pickOfficeWrap__list__item .areaWrap::before {
  display: inline-block;
  width: 14px;
  height: 20px;
  background: url(../img/icon/ico_taiou.png) no-repeat center center;
  background-size: cover;
  vertical-align: middle;
  content: "";
}

.catContOffice .pickOfficeWrap__list__item .areaWrap .lavel, .catContOffice .pickOfficeWrap__list__item .areaWrap .area {
  display: inline-block;
  font-size: 1.2rem;
}

.catContOffice .pickOfficeWrap__list__item .areaWrap .area::before {
  display: inline-block;
  margin: 0 .2rem 0 0;
  content: "/";
}

.catContOffice .pickOfficeWrap__list__item:not(:first-child) {
  border-left: 1px solid #ccc;
}

@media screen and (min-width: 767px) {
  .catContOffice .pickOfficeWrap__list__item:hover {
    background: #fff;
    opacity: 1 !important;
  }
}

.catConArticle {
  padding: 50px 1% 130px;
  background: #eee;
}

.catConArticle__inner {
  max-width: 1160px;
  margin: 0 auto;
}

.catConArticle .moreBtn {
  margin-top: 30px;
}

.catConArticle .moreBtn .btn--border {
  max-width: 720px;
}

@media screen and (max-width: 767px) {
  /*=================================
    カテゴリーページ
  =================================*/
  .blackBox {
    padding: 15px 3%;
  }
  .blackBox .btnWrap a {
    padding: 17px 0;
    font-size: 1.8rem;
    line-height: 1.3;
  }
  .catContWrap {
    padding: 30px 0;
  }
  .catContWrap__inner {
    display: block;
  }
  .catContWrap .catContTtl {
    margin-bottom: 25px;
    font-size: 2.2rem;
    text-align: center;
  }
  .catContWrap .merit {
    width: 100%;
  }
  .catContWrap .meritList__item {
    padding: 20px 5% 20px 60px;
  }
  .catContWrap .meritList__item .meritTtl {
    margin-bottom: 10px;
    font-size: 1.8rem;
  }
  .catContWrap .meritList__item:not(:last-child) {
    margin-right: 0;
  }
  .catContWrap .pref {
    width: 100%;
    padding-top: 30px;
  }
  .catContWrap .prefWrap__block {
    display: block;
    align-items: center;
  }
  .catContWrap .prefTtl {
    width: 100%;
    padding: 25px 15px 0;
  }
  .catContWrap .prefList {
    width: 100%;
    padding: 10px 15px 25px;
    line-height: 1.4;
  }
  .catContWrap .prefList__item a {
    display: block;
    font-size: 1.4rem;
    font-weight: 400;
    color: #222;
  }
  .catContOffice {
    padding: 30px 3%;
  }
  .catContOffice .pickOfficeWrap__ttl {
    padding: 10px 15px 15px;
    font-size: 1.6rem;
  }
  .catContOffice .pickOfficeWrap__ttl .date {
    display: block;
    margin: 0 0 .5rem;
  }
  .catContOffice .pickOfficeWrap__ttl::after {
    width: 100px;
    height: 3px;
  }
  .catContOffice .pickOfficeWrap__list {
    display: block;
  }
  .catContOffice .pickOfficeWrap__list__item {
    width: 100%;
    min-height: inherit;
    padding: 15px 15px 55px;
  }
  .catContOffice .pickOfficeWrap__list__item .thumb {
    margin: 0 auto;
    margin-bottom: 15px;
    text-align: center;
  }
  .catContOffice .pickOfficeWrap__list__item .textWrap .text {
    margin-top: 10px;
  }
  .catContOffice .pickOfficeWrap__list__item .areaWrap {
    bottom: 15px;
  }
  .catContOffice .pickOfficeWrap__list__item:not(:first-child) {
    border-top: 1px solid #ccc;
    border-left: none;
  }
  .catConArticle {
    padding: 30px 3% 60px;
  }
  .catConArticle .moreBtn {
    margin-top: 10px;
  }
}

/*=================================
  事務所一覧
=================================*/
.catSelectWrap {
  padding: 20px 1%;
  background: #333;
}

.catSelectList {
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
  border: 1px solid #515151;
  border-radius: 4px;
  background: #3d3d3d;
}

.catSelectList__item {
  display: inline-block;
}

.catSelectList__item a {
  display: block;
  padding: 20px 35px 20px;
  background: #3d3d3d;
  font-size: 1.6rem;
  color: #fff;
  text-decoration: none;
}

@media screen and (min-width: 767px) and (max-width: 1024px) {
  .catSelectList__item a {
    padding: 15px 10px 15px;
  }
}

.catSelectList__item a .icon {
  width: 40px;
  margin-right: 10px;
  vertical-align: middle;
}

.catSelectList__item:last-child::after {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background: #515151;
  content: "";
}

.catSelectList__item.on a {
  background: #777;
}

@media screen and (min-width: 767px) {
  .catSelectList__item:hover a {
    text-decoration: underline;
  }
}

.bengoList {
  background: #eee;
}

.bengoList .layout--2col {
  padding: 10px 0 100px;
}

.bengoList .layout--2col__cont {
  width: calc(100% - 300px);
  padding: 0;
  border-top: none;
}

.bengoList .layout--2col__cont::before {
  content: none;
}

.officeList__item {
  margin: 30px 0;
  background: #fff;
  box-shadow: 0 0 15px -5px rgba(0, 0, 0, 0.1);
}

.officeList__item .thumb {
  float: left;
  width: 270px;
}

.officeList__item .thumb + .contWrap {
  padding: 30px 30px 0 310px;
}

.officeList__item .contWrap {
  padding: 20px;
}

.officeList__item .contWrap .tag {
  margin-bottom: 15px;
}

.officeList__item .contWrap .tag__item {
  display: inline-block;
  margin: 0 3px 3px 0;
  padding: 4px 8px;
  border-radius: 3px;
  background: #337cbd;
  font-size: 1.1rem;
  line-height: 1;
  color: #fff;
}

.officeList__item .contWrap .name {
  margin-bottom: 10px;
  font-size: 2.4rem;
}

.officeList__item .contWrap .add {
  font-size: 1.4rem;
}

.officeList__item .contWrap .tableWrap {
  display: flex;
  border-top: 1px solid #d6d6d6;
  border-bottom: 1px solid #d6d6d6;
}

.officeList__item .contWrap .tableWrap .tableBlock {
  width: 50%;
  text-align: center;
}

.officeList__item .contWrap .tableWrap .tableBlock:not(:first-child) {
  border-left: 1px solid #d6d6d6;
}

.officeList__item .contWrap .tableWrap .tableBlock .ttl {
  padding: 3px;
  background: #f3f3f3;
  font-size: 1.3rem;
  font-weight: 600;
}

.officeList__item .contWrap .tableWrap .tableBlock .cont {
  padding: 10px;
}

.officeList__item .contWrap .tableWrap .tableBlock .cont .text {
  display: inline-block;
  vertical-align: middle;
}

.officeList__item .contWrap .tableWrap .tableBlock .cont .fieldList__item {
  display: inline-block;
  width: 40px;
  margin: 0 4px;
}

.officeList__item .contWrap h4 {
  margin-top: 20px;
  font-size: 1.8rem;
}

.officeList__item .contWrap .text {
  margin: 10px 0;
  font-size: 1.4rem;
}

.officeList__item .btnWrap {
  margin: 0;
  padding: 40px 20px;
  background: #e9f5ff;
}

.officeList__item .btnWrap .telBtn {
  display: flex;
  width: 48%;
  padding: 15px;
  border-radius: 5px;
  background: #338d3d;
  box-shadow: 0 5px 0 #1b7025;
  font-size: 3.4rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 767px) {
  .officeList__item .btnWrap .telBtn:hover {
    box-shadow: none;
    transform: translateY(5px);
  }
}

.officeList__item .btnWrap .mailBtn {
  display: flex;
  width: 48%;
  padding: 15px;
  border-radius: 5px;
  background: #337cbd;
  box-shadow: 0 5px 0 #2667a1;
  font-size: 2.8rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 767px) {
  .officeList__item .btnWrap .mailBtn:hover {
    box-shadow: none;
    transform: translateY(5px);
  }
}

@media screen and (max-width: 767px) {
  /*=================================
    事務所一覧
  =================================*/
  .catSelectWrap {
    padding: 20px 3%;
  }
  .catSelectList {
    display: flex;
    border: none;
    border-radius: 0;
    background: none;
    flex-wrap: wrap;
  }
  .catSelectList__item {
    display: block;
    width: calc(100% / 3);
    text-align: center;
  }
  .catSelectList__item a {
    padding: 8px 0;
    background: none;
    font-size: 1.4rem;
  }
  .catSelectList__item a .icon {
    width: 20px;
    margin-top: -2px;
    margin-right: 3px;
  }
  .catSelectList__item:last-child::after {
    content: none;
  }
  .bengoList .layout--2col {
    padding: 30px 3% 50px;
  }
  .bengoList .layout--2col__cont {
    width: 100%;
  }
  .bengoList .layout--2col__cont::before {
    content: none;
  }
  .officeList__item {
    margin: 30px 0;
  }
  .officeList__item .thumb {
    width: 30%;
    margin: 20px 15px 0 15px;
  }
  .officeList__item .thumb + .contWrap {
    padding: 20px 15px;
  }
  .officeList__item .contWrap {
    padding: 20px 15px;
  }
  .officeList__item .contWrap .name {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.4;
  }
  .officeList__item .contWrap .tableWrap {
    width: 100%;
    margin: 20px 0;
  }
  .officeList__item .contWrap .tableWrap .tableBlock .ttl {
    font-size: 1.2rem;
  }
  .officeList__item .contWrap .tableWrap .tableBlock .cont {
    padding: 5px;
  }
  .officeList__item .contWrap .tableWrap .tableBlock .cont .fieldList__item {
    width: 35px;
    margin: 0 2px;
  }
  .officeList__item .contWrap .text {
    margin-top: 20px;
  }
  .officeList__item .btnWrap {
    padding: 20px 5%;
  }
  .officeList__item .btnWrap .telBtn {
    width: 100%;
    padding: 10px;
    border-radius: 3px;
    font-size: 2.4rem;
  }
  .officeList__item .btnWrap .mailBtn {
    width: 100%;
    padding: 10px;
    border-radius: 3px;
    font-size: 2.4rem;
  }
}

/*=================================
  事務所詳細
=================================*/
.pageNav {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.pageNav__list {
  display: flex;
  max-width: 1160px;
  margin: 0 auto;
}

.pageNav__list a {
  display: block;
  padding: 18px 5px;
  font-size: 1.6rem;
  text-align: center;
  text-decoration: none;
}

@media screen and (min-width: 767px) {
  .pageNav__list a:hover {
    text-decoration: underline;
  }
}

.pageNav__list__item {
  position: relative;
  z-index: 100;
  width: calc(100% / 6);
  border-right: 1px solid #ddd;
}

.pageNav__list__item a {
  color: #333;
}

@media screen and (min-width: 767px) {
  .pageNav__list__item a:hover {
    background: #005bac;
    color: #fff;
  }
}

.pageNav__list__item:first-child {
  border-left: 1px solid #ddd;
}

.pageNav__list__item:hover .pageNav__listChild {
  top: 100%;
  visibility: visible;
  opacity: 1;
}

.pageNav__listChild {
  position: absolute;
  top: 70%;
  left: 0;
  visibility: hidden;
  width: 100%;
  opacity: 0;
  transition-timing-function: ease-out;
  transition-duration: 0.2s;
  transition-property: all;
}

.pageNav__listChild__item a {
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
}

@media screen and (min-width: 767px) {
  .pageNav__listChild__item a:hover {
    background: rgba(0, 0, 0, 0.8);
  }
}

.pageNav__listChild__item:not(:last-child) {
  border-bottom: 1px solid #6a6a6a;
}

.bengoDetail {
  padding: 40px 1% 100px;
  background: #eee;
}

.bengoDetail--2col {
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
}

.bengoDetail .bengoInfo {
  position: absolute;
  top: 0;
  right: 0;
  width: 480px;
}

.bengoDetail .bengoInfo__inner {
  width: 480px;
  border-bottom: 1px solid #ddd;
  background: #fff;
}

.bengoDetail .bengoInfo__inner .contactItem .ttl {
  display: table-cell;
  width: 20%;
  min-width: 100px;
  height: 100px;
  font-size: 1.8rem;
  color: #fff;
  text-align: center;
  vertical-align: middle;
}

.bengoDetail .bengoInfo__inner .contactItem .text {
  display: table-cell;
  width: 80%;
  padding: 16px 18px;
  border-top: 1px solid #ddd;
  border-right: 1px solid #ddd;
  vertical-align: middle;
}

.bengoDetail .bengoInfo__inner .contactItem.tel .ttl {
  background: #338d3d;
}

.bengoDetail .bengoInfo__inner .contactItem.tel .text a {
  font-size: 3.6rem;
  font-weight: 500;
  color: #338d3d;
}

.bengoDetail .bengoInfo__inner .contactItem.tel .text a::before {
  display: inline-block;
  width: 23px;
  height: 30px;
  margin-right: 7px;
  background: url(../img/icon/ico_tel_g.png) no-repeat center center;
  background-size: contain;
  content: "";
}

.bengoDetail .bengoInfo__inner .contactItem.status .ttl {
  background: #337cbd;
}

.bengoDetail .bengoInfo__inner .contactItem.status .text {
  font-size: 1.8rem;
}

.bengoDetail .bengoInfo__inner .contactItem.status .text .time {
  display: inline-block;
  margin-right: 3rem;
}

.bengoDetail .bengoInfo__inner .contactItem.status .text .holiday {
  display: inline-block;
}

.bengoDetail .bengoInfo__inner .contactItem.status .text .holiday .label {
  display: inline;
  margin-right: 1rem;
  padding: 5px 19px;
  border-radius: 50px;
  background: #eee;
  font-size: 1.4rem;
  font-weight: 600;
}

.bengoDetail .bengoInfo__inner .contactItem.status .text .holiday .day {
  display: inline;
}

.bengoDetail .bengoInfo__inner .contactItem:last-of-type .text {
  border-bottom: 1px solid #ddd;
}

.bengoDetail .bengoInfo__inner .contact .mailBtn {
  padding: 20px 25px 25px;
  border-right: 1px solid #ddd;
  border-left: 1px solid #ddd;
}

.bengoDetail .bengoInfo__inner .contact .mailBtn .btn--blue {
  max-width: 100%;
  padding-top: 22px;
  padding-bottom: 22px;
  font-size: 1.8rem;
  text-decoration: none;
}

.bengoDetail .bengoInfo__inner .contact .mailBtn .btn--blue::before {
  display: inline-block;
  width: 21px;
  height: 17px;
  margin-right: 5px;
  background: url(../img/icon/ico_mail.png) no-repeat;
  vertical-align: middle;
  content: "";
}

.bengoDetail .bengoInfo__inner .moreInfo__item .ttl {
  padding: 20px;
  background: #333;
  font-size: 1.8rem;
  color: #fff;
}

.bengoDetail .bengoInfo__inner .moreInfo__item .cont {
  padding: 20px 28px;
  border-right: 1px solid #ddd;
  border-left: 1px solid #ddd;
}

.bengoDetail .bengoInfo__inner .moreInfo__item .cont .areaList__item {
  display: inline-block;
  margin-right: 1.5rem;
  font-size: 1.6rem;
  color: #222;
}

.bengoDetail .bengoInfo__inner .moreInfo__item .cont .areaList__item a {
  font-size: 1.6rem;
}

.bengoDetail .bengoInfo__inner .moreInfo__item .cont .list__item {
  display: inline-block;
  margin: 0 1.5rem 1rem 0;
  padding-left: 34px;
  background: url(../img/icon/ico_arw04.png) no-repeat left center;
  background-size: contain;
  font-size: 1.6rem;
  color: #222;
}

.bengoDetail__cont {
  padding-right: 520px;
}

.bengoDetail .bengoMv {
  display: flex;
  margin: 0 auto 20px;
  flex-wrap: wrap;
}

.bengoDetail .bengoMv__item:first-child {
  width: 100%;
  margin: 0 auto;
}

.bengoDetail .bengoMv__item:nth-child(n + 2) {
  width: calc((100% - 40px) / 3);
  margin: 20px 0 0 20px;
}

.bengoDetail .bengoMv__item:nth-child(n + 2):nth-child(3n - 1) {
  margin-left: 0;
}

.bengoDetail.form {
  background: #fff;
}

.bengoSec {
  padding: 0 0 80px;
}

.bengoSec__inner {
  max-width: calc(1160px + 2%);
  margin: 0 auto;
  padding: 0 1%;
}

.bengoSecTtl {
  padding: 50px 0;
  background: #fff;
  font-size: 3.6rem;
  font-weight: 500;
  color: #222;
  text-align: center;
}

.strongList__item__inner {
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
  padding: 120px 0 100px;
}

.strongList__item__inner .strongTtl {
  position: absolute;
  top: -70px;
  left: 50%;
  width: 160px;
  height: 160px;
  text-align: center;
  transform: translateX(-50%);
}

.strongList__item__inner .strongTtl__inner {
  display: table-cell;
  width: 160px;
  height: 160px;
  background: #337cbd;
  font-size: 2.6rem;
  font-weight: 500;
  color: #fff;
  vertical-align: middle;
}

.strongList__item__inner .strongCont > p {
  margin-top: 30px;
  font-size: 1.6rem;
  line-height: 1.875;
}

.strongList__item__inner .strongCont > h1 {
  margin-bottom: 20px;
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1.2;
}

.strongList__item__inner .strongCont > h2 {
  position: relative;
  margin-top: 54px;
  margin-bottom: 30px;
  padding: 40px 16px;
  border-top: 4px solid #999;
  border-bottom: 1px solid #ddd;
  background: #f6f6f6;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.2272;
}

.strongList__item__inner .strongCont > h2::before {
  position: absolute;
  top: -4px;
  left: 0;
  display: block;
  width: 28%;
  height: 4px;
  background: #005bac;
  content: "";
}

.strongList__item__inner .strongCont > h3 {
  position: relative;
  margin-top: 35px;
  margin-bottom: 24px;
  padding: 18px;
  border: 1px solid #ddd;
  background: #f6f6f6;
  font-size: 2rem;
  font-weight: 500;
  color: #333;
}

.strongList__item__inner .strongCont > h3::before {
  position: absolute;
  top: -1px;
  left: -1px;
  display: block;
  width: 4px;
  height: calc(100% + 2px);
  background: #005bac;
  content: "";
}

.strongList__item__inner .strongCont > h4 {
  position: relative;
  margin-top: 35px;
  margin-bottom: 25px;
  padding: 0 0 26px;
  border-bottom: 2px solid #ddd;
  font-size: 1.8rem;
  font-weight: 500;
  color: #333;
}

.strongList__item__inner .strongCont > h4::before {
  position: absolute;
  bottom: -2px;
  left: 0;
  display: block;
  width: 28%;
  height: 2px;
  background: #005bac;
  content: "";
}

.strongList__item__inner .strongCont > h5 {
  position: relative;
  margin-top: 30px;
  margin-bottom: 20px;
  padding: 8px 4px 12px;
  border-bottom: 1px solid #ddd;
  background: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  color: #333;
}

.strongList__item__inner .strongCont > h5::before {
  position: absolute;
  top: -1px;
  left: -1px;
  display: block;
  width: 4px;
  height: calc(100% + 2px);
  background: #005bac;
  content: "";
}

.strongList__item__inner .strongCont > h6 {
  margin-top: 30px;
  margin-bottom: 20px;
  font-size: 1.5rem;
  font-weight: 500;
}

.strongList__item__inner .strongCont > h6::before {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-top: -2px;
  margin-right: .8rem;
  background: #005bac;
  vertical-align: middle;
  content: "";
}

.strongList__item__inner .strongCont > blockquote {
  position: relative;
  box-sizing: border-box;
  margin: 30px 0;
  padding: 40px 35px;
  border: 3px solid #ddd;
  font-style: italic;
  color: #464646;
}

.strongList__item__inner .strongCont > blockquote::before {
  position: absolute;
  top: -28px;
  left: 0;
  display: inline-block;
  width: 80px;
  height: 50px;
  background: #fff;
  font-size: 8rem;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
  color: #337cbd;
  text-align: center;
  content: "“";
}

.strongList__item__inner .strongCont > blockquote h4, .strongList__item__inner .strongCont > blockquote h5, .strongList__item__inner .strongCont > blockquote h6 {
  position: relative;
  margin: 0 0 20px;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: .06em;
}

.strongList__item__inner .strongCont > blockquote h4::after, .strongList__item__inner .strongCont > blockquote h5::after, .strongList__item__inner .strongCont > blockquote h6::after {
  position: relative;
  bottom: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 10px;
  background-image: repeating-linear-gradient(-45deg, #337cbd, #337cbd 1px, transparent 2px, transparent 5px);
  background-size: 7px 7px;
  content: '';
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.strongList__item__inner .strongCont > blockquote p {
  font-style: normal;
}

.strongList__item__inner .strongCont > blockquote cite {
  display: block;
  margin: 10px 0 0;
  font-size: 0.9em;
  line-height: 1;
  color: #888888;
  text-align: right;
}

.strongList__item__inner .strongCont > img {
  display: block;
  margin: 15px auto 20px;
}

.strongList__item__inner .strongCont > ul:not([class]) {
  margin-top: 30px;
  margin-bottom: 54px;
  padding: 20px 30px;
  border: 1px solid #ddd;
  background: #f6f6f6;
}

.strongList__item__inner .strongCont > ul:not([class]) li {
  position: relative;
  padding-left: 22px;
  font-size: 1.6rem;
  font-weight: 400;
}

.strongList__item__inner .strongCont > ul:not([class]) li::before {
  position: absolute;
  top: 12px;
  left: 0;
  display: inline-block;
  border-width: 5px 0 5px 8px;
  border-style: solid;
  border-color: transparent transparent transparent #005bac;
  content: "";
}

.strongList__item__inner .strongCont > ul:not([class]) li + li {
  margin-top: 15px;
}

.strongList__item__inner .strongCont > ol:not([class]) {
  margin-top: 30px;
  margin-bottom: 54px;
  padding: 20px 25px;
  border: 1px solid #ddd;
  background: #f6f6f6;
  counter-reset: listNum;
}

.strongList__item__inner .strongCont > ol:not([class]) li {
  position: relative;
  padding-left: 34px;
  font-size: 1.6rem;
  font-weight: 400;
}

.strongList__item__inner .strongCont > ol:not([class]) li::before {
  position: absolute;
  top: 2px;
  left: 0;
  padding: 3px 8px 4px 8px;
  border-radius: 50%;
  background: #337cbd;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.8rem;
  line-height: 1;
  color: #fff;
  content: counter(listNum);
  counter-increment: listNum;
}

.strongList__item__inner .strongCont > ol:not([class]) li + li {
  margin-top: 15px;
}

@media screen and (min-width: 0) and (max-width: 767px) {
  .strongList__item__inner .strongCont > p {
    margin-top: 15px;
    font-size: 1.4rem;
    line-height: 1.5;
  }
  .strongList__item__inner .strongCont > h1 {
    margin-bottom: 10px;
    font-size: 2rem;
    line-height: 1.2;
  }
  .strongList__item__inner .strongCont > h2 {
    margin-top: 40px;
    margin-bottom: 15px;
    padding: 15px 10px;
    font-size: 1.8rem;
    line-height: 1.38888;
  }
  .strongList__item__inner .strongCont > h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    padding: 15px 10px;
    font-size: 1.6rem;
  }
  .strongList__item__inner .strongCont > h4 {
    margin-top: 30px;
    margin-bottom: 15px;
    padding: 0 0 12px;
    font-size: 1.5rem;
  }
  .strongList__item__inner .strongCont > h5 {
    margin-bottom: 15px;
    padding: 6px 12px 8px;
  }
  .strongList__item__inner .strongCont > h6 {
    margin-bottom: 15px;
  }
  .strongList__item__inner .strongCont > h6::before {
    width: 8px;
    height: 8px;
    margin-right: .6rem;
  }
  .strongList__item__inner .strongCont > blockquote {
    margin: 20px 0;
    padding: 25px 3% 20px;
  }
  .strongList__item__inner .strongCont > blockquote::before {
    top: -22px;
    width: 50px;
    font-size: 6rem;
  }
  .strongList__item__inner .strongCont > blockquote h4, .strongList__item__inner .strongCont > blockquote h5, .strongList__item__inner .strongCont > blockquote h6 {
    margin: 0 0 15px;
    font-size: 1.4rem;
    line-height: 1.2;
  }
  .strongList__item__inner .strongCont > blockquote h4::after, .strongList__item__inner .strongCont > blockquote h5::after, .strongList__item__inner .strongCont > blockquote h6::after {
    height: 7px;
  }
  .strongList__item__inner .strongCont > img {
    display: block;
    margin: 15px auto;
  }
  .strongList__item__inner .strongCont > ul:not([class]) {
    margin-bottom: 15px;
    padding: 15px 3%;
  }
  .strongList__item__inner .strongCont > ul:not([class]) li {
    padding-left: 15px;
    font-size: 1.5rem;
  }
  .strongList__item__inner .strongCont > ul:not([class]) li::before {
    top: 7px;
    border-width: 5px 0 5px 6px;
  }
  .strongList__item__inner .strongCont > ul:not([class]) li + li {
    margin-top: 10px;
  }
  .strongList__item__inner .strongCont > ol:not([class]) {
    margin-bottom: 15px;
    padding: 15px 3%;
  }
  .strongList__item__inner .strongCont > ol:not([class]) li {
    padding-left: 30px;
    font-size: 1.5rem;
  }
  .strongList__item__inner .strongCont > ol:not([class]) li::before {
    padding: 3px 6px 3px 6px;
    font-size: 1.4rem;
  }
  .strongList__item__inner .strongCont > ol:not([class]) li + li {
    margin-top: 10px;
  }
}

.strongList__item__inner .strongCont .tocBox {
  margin: 40px 0 20px;
}

.strongList__item__inner .strongCont .tocBox__ttl {
  padding: 12px 0;
  font-size: 2.2rem;
  font-weight: 300;
  text-align: center;
}

.strongList__item__inner .strongCont .tocBox__ttl .toc_toggle {
  margin: 0 0 0 18px;
  font-size: 1.2rem;
  font-weight: normal;
  color: #999;
  vertical-align: middle;
  cursor: pointer;
}

.strongList__item__inner .strongCont .tocBox .tocList {
  counter-reset: tocNum;
}

.strongList__item__inner .strongCont .tocBox .tocList__item a {
  position: relative;
  display: block;
  padding: 18px 16px 18px 60px;
  border-bottom: 1px solid #e2e2e2;
  font-size: 1.6rem;
  font-weight: 500;
}

.strongList__item__inner .strongCont .tocBox .tocList__item a::before {
  position: absolute;
  top: 23px;
  left: 23px;
  width: 22px;
  border-radius: 50%;
  background: #337cbd;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.4rem;
  line-height: 22px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  content: counter(tocNum);
  counter-increment: tocNum;
}

.strongList__item__inner .strongCont .infoWrap {
  margin-bottom: 30px;
}

.strongList__item__inner .strongCont .infoWrap .info--left {
  float: left;
}

.strongList__item__inner .strongCont .infoWrap .info--left .data {
  display: flex;
}

.strongList__item__inner .strongCont .infoWrap .info--left .data .date {
  padding-left: 20px;
  background: url(../img/icon/ico_cal.png) no-repeat left center;
  font-size: 1.8rem;
  font-weight: 500;
  color: #005bac;
}

.strongList__item__inner .strongCont .infoWrap .info--left .data .date + .date {
  margin-left: 1rem;
  background: url(../img/icon/ico_sea02.png) no-repeat left center;
  background-size: 16px auto;
}

.strongList__item__inner .strongCont .infoWrap .info--left .data .view {
  margin-left: 2rem;
  padding-left: 18px;
  background: url(../img/icon/ico_eye.png) no-repeat left center;
  font-size: 1.4rem;
}

.strongList__item__inner .strongCont .infoWrap .info--left .data .view .num {
  margin-right: 3px;
  font-size: 1.8rem;
  font-weight: 500;
  color: #005bac;
}

.strongList__item__inner .strongCont .infoWrap .info--right {
  display: flex;
  float: right;
}

.strongList__item__inner .strongCont .infoWrap .info--right .list--cat {
  display: flex;
  padding-left: 22px;
  background: url(../img/icon/ico_fol.png) no-repeat left center;
}

.strongList__item__inner .strongCont .infoWrap .info--right .list--tag {
  display: flex;
  margin-left: 1rem;
  padding-left: 22px;
  background: url(../img/icon/ico_tag.png) no-repeat left center;
}

.strongList__item__inner .strongCont .infoWrap .info--right a {
  font-size: 1.4rem;
  color: #333;
}

.strongList__item__inner .strongCont .articleMv {
  margin: 20px auto;
  text-align: center;
}

.strongList__item__inner .strongCont .snsWrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.strongList__item__inner .strongCont .snsWrap::before {
  margin: -10px 1rem 0 0;
  font-size: 1.4rem;
  line-height: 1;
  content: "この記事をシェアする";
}

.strongList__item__inner .strongCont .snsList {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.strongList__item__inner .strongCont .snsList li {
  margin-left: 5px;
  line-height: 1;
}

.strongList__item__inner .strongCont .snsList li.fb {
  margin-right: -5px;
}

.strongList__item__inner .strongCont .understand {
  margin: 60px auto 30px;
}

.strongList__item__inner .strongCont .understand__ttl {
  position: relative;
  padding: 12px 15px;
  background: #337cbd;
  font-weight: 500;
  color: #fff;
  text-align: center;
}

.strongList__item__inner .strongCont .understand__ttl::before {
  display: inline-block;
  width: 25px;
  height: 22px;
  margin-right: 6px;
  background: url(../img/icon/ico_kiji.png) no-repeat;
  vertical-align: middle;
  content: "";
}

.strongList__item__inner .strongCont .understand__cont {
  padding: 25px;
  border: 1px solid #ddd;
  border-top: none;
  background: #f8f8f8;
}

.strongList__item__inner .strongCont .understand__list__item {
  position: relative;
  padding: 8px 0;
  font-size: 1.8rem;
}

.strongList__item__inner .strongCont .understand__list__item::before {
  display: inline-block;
  width: 21px;
  height: 21px;
  margin-right: 10px;
  background: url(../img/icon/ico_chk01.png) no-repeat;
  vertical-align: middle;
  content: "";
}

.strongList__item__inner .strongCont .understand__text {
  margin-top: 20px;
}

.strongList__item__inner .strongCont .link-bx {
  position: relative;
  z-index: 0;
  margin: 40px auto 20px;
  border: 1px solid #aecbe5;
}

.strongList__item__inner .strongCont .link-bx a {
  display: block;
  padding: 16px 20px;
  background: #e9f5ff;
}

@media screen and (min-width: 767px) {
  .strongList__item__inner .strongCont .link-bx a:hover {
    background: #fff;
  }
}

.strongList__item__inner .strongCont .link-bx::before {
  position: absolute;
  z-index: 1;
  top: -5px;
  right: -5px;
  padding: 5px 10px;
  background: #F30;
  color: #fff;
  content: "関連記事";
}

.strongList__item__inner .strongCont .point {
  margin: 40px auto 20px;
  background: #337cbd;
  color: #fff;
  text-align: center;
}

.strongList__item__inner .strongCont .point-ttl {
  padding: 20px 0;
  border-bottom: 1px solid #71a4d1;
  font-size: 2rem;
}

.strongList__item__inner .strongCont .point-ttl::before {
  display: inline-block;
  width: 19px;
  height: 25px;
  margin-right: 10px;
  background: url(../img/icon/ico_pnt.png) no-repeat;
  vertical-align: middle;
  content: "";
}

.strongList__item__inner .strongCont .point-bx {
  padding: 20px;
  text-align: center;
}

.strongList__item__inner .strongCont .check-bx {
  margin-top: 35px;
  margin-bottom: 54px;
  padding: 15px 30px;
  border: 3px solid #ff8d8d;
  background: #fff5f5;
}

.strongList__item__inner .strongCont .check-bx li {
  padding: 8px 0 8px 34px;
  background: url(../img/icon/ico_chk02.png) no-repeat left center;
  font-weight: 600;
  color: #e50000;
}

.strongList__item__inner .strongCont .related--simple {
  position: relative;
  margin: 50px auto;
  border: 1px solid #ddd;
}

.strongList__item__inner .strongCont .related--simple__item a {
  display: block;
  padding: 20px 15px;
}

@media screen and (min-width: 767px) {
  .strongList__item__inner .strongCont .related--simple__item a:hover {
    background: #337cbd;
    color: #fff;
  }
}

.strongList__item__inner .strongCont .related--simple__item + .related--simple__item {
  border-top: 1px dotted #ddd;
}

.strongList__item__inner .strongCont .related--simple::before {
  position: absolute;
  top: -15px;
  right: -1px;
  padding: 8px 10px;
  background: #005bac;
  line-height: 1;
  color: #fff;
  content: "一緒に読まれている記事";
}

@media screen and (min-width: 0) and (max-width: 767px) {
  .strongList__item__inner .strongCont .tocBox {
    margin: 30px 0 20px;
  }
  .strongList__item__inner .strongCont .tocBox__ttl {
    padding: 10px 0;
    font-size: 2rem;
  }
  .strongList__item__inner .strongCont .tocBox__ttl .toc_toggle {
    margin: 0 0 0 10px;
  }
  .strongList__item__inner .strongCont .tocBox .tocList__item a {
    padding: 15px 3% 15px 40px;
    font-size: 1.4rem;
  }
  .strongList__item__inner .strongCont .tocBox .tocList__item a::before {
    top: 15px;
    left: 10px;
  }
  .strongList__item__inner .strongCont .infoWrap {
    margin-bottom: 20px;
  }
  .strongList__item__inner .strongCont .infoWrap .info--left {
    float: none;
  }
  .strongList__item__inner .strongCont .infoWrap .info--left .data .date {
    font-size: 1.4rem;
  }
  .strongList__item__inner .strongCont .infoWrap .info--left .data .date + .date {
    margin-left: .8rem;
  }
  .strongList__item__inner .strongCont .infoWrap .info--left .data .view {
    margin-left: 1.5rem;
    padding-left: 20px;
    font-size: 1.2rem;
  }
  .strongList__item__inner .strongCont .infoWrap .info--left .data .view .num {
    font-size: 1.4rem;
  }
  .strongList__item__inner .strongCont .infoWrap .info--right {
    display: block;
    float: none;
    margin-top: 5px;
  }
  .strongList__item__inner .strongCont .infoWrap .info--right .list--tag {
    margin-left: 0;
  }
  .strongList__item__inner .strongCont .infoWrap .info--right a {
    font-size: 1.2rem;
  }
  .strongList__item__inner .strongCont .snsWrap::before {
    content: none;
  }
  .strongList__item__inner .strongCont .snsList li {
    margin-left: 3px;
  }
  .strongList__item__inner .strongCont .understand {
    margin: 40px auto 20px;
  }
  .strongList__item__inner .strongCont .understand__ttl {
    padding: 10px 3%;
  }
  .strongList__item__inner .strongCont .understand__cont {
    padding: 15px;
  }
  .strongList__item__inner .strongCont .understand__list__item {
    position: relative;
    padding: 5px 0 5px 30px;
    font-size: 1.4rem;
  }
  .strongList__item__inner .strongCont .understand__list__item::before {
    position: absolute;
    top: 5px;
    left: 0;
    margin-right: 0;
  }
  .strongList__item__inner .strongCont .understand__text {
    margin-top: 15px;
    padding: 0 3%;
  }
  .strongList__item__inner .strongCont .link-bx {
    margin: 30px auto 15px;
  }
  .strongList__item__inner .strongCont .link-bx a {
    padding: 20px 3% 15px;
  }
  .strongList__item__inner .strongCont .link-bx::before {
    top: -10px;
    right: -5px;
    padding: 3px 5px;
  }
  .strongList__item__inner .strongCont .point {
    margin: 30px auto 15px;
  }
  .strongList__item__inner .strongCont .point-ttl {
    padding: 15px 0 10px;
    font-size: 1.4rem;
  }
  .strongList__item__inner .strongCont .point-bx {
    padding: 15px;
    text-align: left;
  }
  .strongList__item__inner .strongCont .check-bx {
    margin-top: 30px;
    margin-bottom: 15px;
    padding: 10px 3%;
  }
  .strongList__item__inner .strongCont .check-bx li {
    padding: 5px 0 5px 32px;
  }
  .strongList__item__inner .strongCont .related--simple {
    margin: 40px auto;
  }
  .strongList__item__inner .strongCont .related--simple__item a {
    padding: 15px 3%;
  }
  .strongList__item__inner .strongCont .related--simple::before {
    top: -20px;
    padding: 8px 6px;
  }
}

.strongList__item__inner .strongCont h1 {
  margin-top: 40px;
}

.strongList__item__inner .strongCont img:not([class]) {
  max-width: 380px;
  margin-bottom: 15px;
}

.strongList__item__inner .strongCont .ttl {
  margin-bottom: 30px;
  font-size: 3.6rem;
  font-weight: 500;
  color: #222;
}

.strongList__item:nth-child(2n - 1) img:not([class]) {
  float: right;
  margin-left: 60px;
}

.strongList__item:nth-child(2n) {
  background: #eee;
}

.strongList__item:nth-child(2n) img:not([class]) {
  float: left;
  margin-right: 60px;
}

.price .bengoSecTtl {
  border-top: 1px solid #dbdbdb;
  border-bottom: 1px solid #dbdbdb;
}

.member {
  background: #eee;
}

.member .bengoSecTtl {
  border-top: 1px solid #dbdbdb;
  border-bottom: 1px solid #dbdbdb;
}

.memberList {
  padding-top: 68px;
}

.memberList__item .memberInfo__band {
  display: flex;
  padding: 18px 30px 18px 50px;
  background: #333;
  color: #fff;
  flex-wrap: wrap;
  align-items: center;
}

.memberList__item .memberInfo__band .img {
  width: 100px;
  margin-right: 30px;
}

.memberList__item .memberInfo__band .ttl {
  margin-right: 40px;
  font-size: 1.8rem;
}

.memberList__item .memberInfo__band .ttl .name {
  margin-right: 1rem;
  font-size: 2.8rem;
}

.memberList__item .memberInfo__band .affInfo {
  display: flex;
  margin-top: 5px;
}

.memberList__item .memberInfo__band .affInfo__item .label {
  display: inline-block;
  min-width: 80px;
  margin-right: 10px;
  padding: 2px 12px;
  border-radius: 50px;
  background: #337cbd;
  font-size: 1.4rem;
  color: #fff;
  text-align: center;
}

.memberList__item .memberInfo__band .affInfo__item .text {
  display: inline-block;
  font-size: 1.8rem;
}

.memberList__item .memberInfo__band .affInfo__item + .affInfo__item {
  margin-left: 40px;
}

.memberList__item .memberInfo__sub {
  display: flex;
  padding: 20px 0;
  background: #fff;
}

.memberList__item .memberInfo__sub .subInfo {
  width: 50%;
  padding: 0 25px;
}

.memberList__item .memberInfo__sub .subInfo + .subInfo {
  border-left: 1px solid #d5d5d5;
}

.memberList__item .memberInfo__sub .subInfoCont {
  display: flex;
}

.memberList__item .memberInfo__sub .subInfoCont .subInfo__ttl {
  width: 125px;
}

.memberList__item .memberInfo__sub .subInfoCont .subInfo__cont {
  width: calc(100% - 125px);
}

.memberList__item .memberInfo__sub .subInfoCont + .subInfoCont {
  margin-top: 30px;
}

.memberList__item + .memberList__item {
  margin-top: 30px;
}

.access {
  padding-bottom: 0;
}

.access .gMap {
  margin: 0 auto;
}

.access .gMap iframe {
  width: 100%;
}

.access table {
  margin: 0;
  border: none;
}

.access table tr, .access table th, .access table td {
  border: none;
  background: transparent;
  font-size: 1.4rem;
}

.access table th {
  padding-right: 30px;
  padding-left: calc((100% - 1160px) / 2);
  font-weight: 500;
  color: #005bac;
}

.access table td {
  padding-right: calc((100% - 1160px) / 2);
}

.access table tr:nth-child(2n + 1) {
  background: #f4f4f4;
}

@media screen and (max-width: 1250px) and (min-width: 767px) {
  .access table th {
    padding: 20px;
  }
  .access table td {
    padding: 20px;
  }
}

.office .bengoSecTtl {
  border-bottom: 1px solid #dbdbdb;
}

.office__inner {
  padding: 0 1%;
}

.office table {
  max-width: 1160px;
  margin: 0;
  margin: 0 auto;
  border: none;
}

.office tr, .office th, .office td {
  background: transparent;
  font-size: 1.4rem;
}

.office th, .office td {
  border: none;
}

.office th {
  padding-left: 0;
  color: #005bac;
}

.fixedBnr.bengo {
  border: 5px solid #337cbd;
  background: #f1f8ff;
}

.fixedBnr.bengo .bnrInner {
  display: flex;
}

.fixedBnr.bengo .bnrInner .cont {
  width: calc(100% - 150px);
  padding: 25px 35px 40px;
}

.fixedBnr.bengo .bnrInner .cont .name {
  margin-bottom: 5px;
  font-size: 2.6rem;
  font-weight: 400;
  color: #222;
}

.fixedBnr.bengo .bnrInner .cont .info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.fixedBnr.bengo .bnrInner .cont .info .tel {
  margin-right: 30px;
}

.fixedBnr.bengo .bnrInner .cont .info .tel .label {
  display: inline-block;
  min-width: 80px;
  margin-right: 15px;
  border-radius: 50px;
  background: #338d3d;
  font-size: 1.4rem;
  color: #fff;
  text-align: center;
  vertical-align: middle;
}

.fixedBnr.bengo .bnrInner .cont .info .tel .num {
  display: inline-block;
  vertical-align: bottom;
}

.fixedBnr.bengo .bnrInner .cont .info .tel .num a {
  display: block;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1;
  color: #338d3d;
}

.fixedBnr.bengo .bnrInner .cont .info .tel .num a::before {
  display: inline-block;
  width: 23px;
  height: 30px;
  margin-right: 7px;
  background: url(../img/icon/ico_tel_g.png) no-repeat center center;
  background-size: contain;
  vertical-align: middle;
  content: "";
}

.fixedBnr.bengo .bnrInner .cont .info .status {
  display: flex;
  margin-top: 5px;
  align-items: center;
}

.fixedBnr.bengo .bnrInner .cont .info .status__item .label {
  display: inline-block;
  min-width: 80px;
  margin-right: 15px;
  border-radius: 50px;
  background: #fff;
  font-size: 1.4rem;
  text-align: center;
}

.fixedBnr.bengo .bnrInner .cont .info .status__item .text {
  display: inline-block;
  font-size: 1.8rem;
}

.fixedBnr.bengo .bnrInner .cont .info .status__item + .status__item {
  margin-left: 20px;
}

.fixedBnr.bengo .bnrInner .message {
  position: relative;
  width: 150px;
  background: #337cbd;
  text-align: center;
}

.fixedBnr.bengo .bnrInner .message .text {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  padding: 20px;
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 1025px) {
  .bengoDetail {
    padding: 20px 3% 60px;
  }
  .bengoDetail .bengoInfo {
    position: static;
    width: 100%;
  }
  .bengoDetail .bengoInfo__inner {
    width: 100%;
  }
  .bengoDetail .bengoInfo__inner .contactItem {
    display: flex;
  }
  .bengoDetail .bengoInfo__inner .contactItem .ttl {
    display: flex;
    width: 60px;
    min-width: 60px;
    height: inherit;
    font-size: 1.4rem;
    align-items: center;
    justify-content: center;
  }
  .bengoDetail .bengoInfo__inner .contactItem .text {
    display: block;
    width: calc(100% - 60px);
    padding: 10px;
  }
  .bengoDetail .bengoInfo__inner .contactItem.tel .text a {
    font-size: 2.4rem;
  }
  .bengoDetail .bengoInfo__inner .contactItem.tel .text a::before {
    width: 18px;
    height: 24px;
    margin-right: 5px;
  }
  .bengoDetail .bengoInfo__inner .contactItem.status .text {
    font-size: 1.4rem;
  }
  .bengoDetail .bengoInfo__inner .contactItem.status .text .time {
    margin-right: 1.5rem;
  }
  .bengoDetail .bengoInfo__inner .contactItem.status .text .holiday .label {
    margin-right: .5rem;
    padding: 3px 8px;
    font-size: 1.2rem;
  }
  .bengoDetail .bengoInfo__inner .contact .mailBtn {
    padding: 15px;
  }
  .bengoDetail .bengoInfo__inner .contact .mailBtn .btn--blue {
    padding-top: 18px;
    padding-bottom: 18px;
    font-size: 1.6rem;
  }
  .bengoDetail .bengoInfo__inner .moreInfo__item .ttl {
    padding: 12px;
    font-size: 1.6rem;
  }
  .bengoDetail .bengoInfo__inner .moreInfo__item .cont {
    padding: 15px;
  }
  .bengoDetail .bengoInfo__inner .moreInfo__item .cont .areaList__item {
    margin-right: 1rem;
    font-size: 1.4rem;
  }
  .bengoDetail .bengoInfo__inner .moreInfo__item .cont .areaList__item a {
    font-size: 1.4rem;
  }
  .bengoDetail .bengoInfo__inner .moreInfo__item .cont .list__item {
    padding-left: 30px;
    font-size: 1.4rem;
  }
  .bengoDetail__cont {
    margin: 0;
    padding-right: 0;
  }
}

@media screen and (max-width: 767px) {
  /*=================================
    事務所詳細
  =================================*/
  .pageNav {
    display: none;
  }
  .bengoSec {
    padding: 0 0 40px;
  }
  .bengoSec__inner {
    padding: 0 3%;
  }
  .bengoSecTtl {
    padding: 25px 0;
    font-size: 2.2rem;
  }
  .strongList__item__inner {
    padding: 80px 3% 45px;
  }
  .strongList__item__inner .strongTtl {
    top: -35px;
    width: 100px;
    height: 100px;
  }
  .strongList__item__inner .strongTtl__inner {
    width: 100px;
    height: 100px;
    font-size: 1.8rem;
  }
  .strongList__item__inner .strongCont h1 {
    margin-top: 20px;
  }
  .strongList__item__inner .strongCont img:not([class]) {
    display: block;
    max-width: 80%;
    margin: 0 auto 15px;
  }
  .strongList__item__inner .strongCont .ttl {
    margin-bottom: 20px;
    font-size: 1.8rem;
  }
  .strongList__item:nth-child(2n - 1) img:not([class]) {
    float: none;
    margin-left: auto;
  }
  .strongList__item:nth-child(2n) img:not([class]) {
    float: none;
    margin-right: auto;
  }
  .memberList {
    padding-top: 40px;
  }
  .memberList__item .memberInfo__band {
    display: block;
    padding: 20px 10px 10px;
    text-align: center;
  }
  .memberList__item .memberInfo__band .img {
    margin: 0 auto;
  }
  .memberList__item .memberInfo__band .ttl {
    margin: 5px 0 0;
    font-size: 1.4rem;
  }
  .memberList__item .memberInfo__band .ttl .name {
    margin-right: .5rem;
    font-size: 2rem;
  }
  .memberList__item .memberInfo__band .affInfo {
    margin-top: 5px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .memberList__item .memberInfo__band .affInfo__item {
    margin-right: 1.5rem;
  }
  .memberList__item .memberInfo__band .affInfo__item .label {
    min-width: inherit;
    margin-right: 3px;
    padding: 2px 8px;
    font-size: 1.1rem;
  }
  .memberList__item .memberInfo__band .affInfo__item .text {
    font-size: 1.4rem;
  }
  .memberList__item .memberInfo__band .affInfo__item + .affInfo__item {
    margin-left: 0;
  }
  .memberList__item .memberInfo__sub {
    display: block;
    padding: 10px 0;
  }
  .memberList__item .memberInfo__sub .subInfo {
    width: 100%;
    padding: 0 3%;
    font-size: 1.3rem;
  }
  .memberList__item .memberInfo__sub .subInfo + .subInfo {
    border-left: none;
  }
  .memberList__item .memberInfo__sub .subInfoCont .subInfo__ttl {
    width: 8em;
  }
  .memberList__item .memberInfo__sub .subInfoCont .subInfo__cont {
    width: calc(100% - 8em);
  }
  .memberList__item .memberInfo__sub .subInfoCont + .subInfoCont {
    margin-top: 10px;
  }
  .memberList__item .memberInfo__sub .subInfo + .subInfo {
    margin-top: 10px;
  }
  .memberList__item + .memberList__item {
    margin-top: 20px;
  }
  .access table {
    display: table;
    white-space: normal;
  }
  .access table tbody {
    border: none;
  }
  .access table th {
    width: 10em;
    padding: 15px 10px;
  }
  .access table td {
    padding: 15px 10px;
  }
  .office__inner {
    padding: 0 3%;
  }
  .office table {
    display: table;
    white-space: normal;
  }
  .office table tbody {
    border: none;
  }
  .office table th, .office table td {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .office table th {
    width: 8em;
  }
  .fixedBnr.bengo {
    border: 3px solid #337cbd;
  }
  .fixedBnr.bengo .bnrInner .cont {
    width: calc(100% - 90px);
    padding: 10px 15px 15px;
  }
  .fixedBnr.bengo .bnrInner .cont .name {
    display: none;
    font-size: 1.5rem;
  }
  .fixedBnr.bengo .bnrInner .cont .info .tel {
    margin: 0;
  }
  .fixedBnr.bengo .bnrInner .cont .info .tel .label {
    min-width: 60px;
    margin-right: 3px;
    font-size: 1.2rem;
  }
  .fixedBnr.bengo .bnrInner .cont .info .tel .num a {
    font-size: 2rem;
  }
  .fixedBnr.bengo .bnrInner .cont .info .tel .num a::before {
    width: 18px;
    height: 25px;
  }
  .fixedBnr.bengo .bnrInner .cont .info .status {
    flex-wrap: wrap;
  }
  .fixedBnr.bengo .bnrInner .cont .info .status__item {
    margin-right: 5px;
  }
  .fixedBnr.bengo .bnrInner .cont .info .status__item .label {
    min-width: 60px;
    margin-right: 3px;
    font-size: 1.2rem;
  }
  .fixedBnr.bengo .bnrInner .cont .info .status__item .text {
    font-size: 1.3rem;
  }
  .fixedBnr.bengo .bnrInner .cont .info .status__item + .status__item {
    margin-left: 0px;
  }
  .fixedBnr.bengo .bnrInner .message {
    width: 90px;
  }
  .fixedBnr.bengo .bnrInner .message .text {
    padding: 5px;
    font-size: 1.2rem;
  }
}

/* 問い合わせフォーム */
/* .mw_wp_form */
.mw_wp_form input, .mw_wp_form textarea {
  width: 100%;
  padding: 5px 10px;
  border: 2px solid #e5e5e5;
  background: #fff;
  font-size: 1.8rem;
  font-weight: 400;
}

.mw_wp_form .hs {
  border: 2px solid #fbd193;
  background: #fffaf0;
}

.mw_wp_form .his {
  display: inline-block;
  margin: 3px 0 0 4px;
  padding: 4px 10px 5px;
  background: #c94941;
  font-size: 1.2rem;
  color: #fff;
}

.mw_wp_form th {
  width: 250px;
}

.mw_wp_form td span {
  display: block;
  margin: 10px 0 0 14px;
  color: #666;
}

.mw_wp_form table {
  display: table !important;
  white-space: inherit;
}

.mw_wp_form table tbody {
  display: table-row-group;
}

.mw_wp_form .submit {
  margin: 20px auto 0;
  text-align: center;
}

.mw_wp_form .submit input[type="submit"] {
  max-width: 400px;
  margin: 2px 0;
  padding: 20px 0;
  border: 1px solid #666;
  background: #f6f6f6;
  cursor: pointer;
}

.confirmingTxt {
  text-align: center;
}

.confirmingTxt input {
  width: inherit;
}

@media screen and (min-width: 767px) {
  .mw_wp_form .submit input[type="submit"]:hover {
    background: #ddd;
  }
}

.mw_wp_form_preview td span {
  display: none;
}

@media screen and (max-width: 767px) {
  /* 問い合わせフォーム */
  /* .mw_wp_form */
  .mw_wp_form input, .mw_wp_form textarea {
    padding: 5px 5px;
    font-size: 1.6rem;
  }
  .mw_wp_form .his {
    width: 3.5em;
    margin: 0 0 0 10px;
    padding: 3px 0;
    font-size: 1.1rem;
    text-align: center;
  }
  .mw_wp_form th {
    display: block;
    width: 100%;
  }
  .mw_wp_form td {
    display: block;
    width: 100%;
  }
  .mw_wp_form td span {
    margin: 6px 0 0;
    font-size: 1.1rem;
  }
  .mw_wp_form .submit {
    margin: 0 auto 40px;
  }
  .mw_wp_form .submit input[type="submit"] {
    margin: 4px 0;
    padding: 20px 0;
  }
}

/* =================================
  header
================================= */
.header {
  position: relative;
  z-index: 9000;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  background: #005bac;
}

.header__top {
  position: relative;
}

.header__top .ttl--site {
  position: absolute;
  top: 0;
  left: 0;
  width: 25%;
  background: #fff;
  text-align: center;
}

.header__top .ttl--site .logo {
  display: block;
  padding: 30px 10px;
  text-decoration: none;
  transition-timing-function: ease-out;
  transition-duration: 0.2s;
  transition-property: all;
}

.header__top .ttl--site .sub {
  display: block;
  margin-bottom: 3px;
  font-size: 1.4rem;
  font-weight: 300;
  color: #000;
  transition-timing-function: ease-out;
  transition-duration: 0.2s;
  transition-property: all;
}

@media screen and (min-width: 767px) {
  .header__top .ttl--site:hover .logo, .header__top .ttl--site:hover .sub {
    opacity: .8;
  }
}

.header .gNav__inner {
  display: flex;
  margin-left: 31%;
  padding: 10px 3% 10px 0;
  justify-content: flex-end;
}

.header .gNav .officeNum {
  color: #fff;
}

.header .gNav__list__item {
  display: inline-block;
  margin-left: 20px;
}

.header .gNav__list__item a {
  position: relative;
  padding-left: 14px;
  font-size: 1.3rem;
  font-weight: 300;
  color: #fff;
  text-decoration: none;
}

.header .gNav__list__item a::before {
  position: absolute;
  top: 5px;
  left: 0;
  display: inline-block;
  border-width: 5px 0 5px 8px;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  content: "";
}

.header .gNav__list__item a .icon {
  display: none;
}

@media screen and (min-width: 767px) {
  .header .gNav__list__item a:hover {
    text-decoration: underline;
  }
}

.header .headerNav__cover {
  display: none;
}

.header .searchBox__inner {
  max-width: inherit;
  padding-right: calc((100% - 1160px) / 2);
  padding-left: 31%;
}

.header .searchBox .inputBox {
  padding: 5px;
}

.header .searchBox .inputBox .ken {
  width: calc((115% - 120px) / 2);
  padding-left: 80px;
}

.header .searchBox .inputBox .ken::before {
  top: 2px;
  left: 10px;
  font-size: 1.2rem;
}

.header .searchBox .inputBox .ken::after {
  bottom: 8px;
  left: 15px;
  width: 22px;
  height: 22px;
}

.header .searchBox .inputBox .ken .area {
  right: 10px;
}

.header .searchBox .inputBox .ken .area a {
  font-size: 1.2rem;
}

.header .searchBox .inputBox .naiyo {
  width: calc((85% - 120px) / 2);
  padding-left: 80px;
}

.header .searchBox .inputBox .naiyo::before {
  top: 2px;
  left: 10px;
  font-size: 1.2rem;
}

.header .searchBox .inputBox .naiyo::after {
  bottom: 8px;
  left: 30px;
  width: 22px;
  height: 22px;
}

.header .searchBox .inputBox .btn {
  width: 121px;
}

.header .searchBox .inputBox .btn a::before {
  width: 24px;
  height: 24px;
}

.header .searchBox .inputBox .input {
  padding: 12px 0;
  font-size: 1.8rem;
}

@media screen and (max-width: 1025px) {
  /* =================================
    header
  ================================= */
  .header__top .ttl--site .logo {
    padding: 10px;
    text-align: left;
  }
  .header .searchBox {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  /* =================================
    header
  ================================= */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    /*バーガーボタン設定*/
  }
  .header__top .ttl--site {
    position: static;
    width: inherit;
    max-width: 55%;
  }
  .header__top .ttl--site .logo {
    padding: 9px 0 0 10px;
  }
  .header__top .ttl--site .sub {
    margin-bottom: 0;
    font-size: 1rem;
    color: #444;
  }
  .header__top .ttl--site img {
    width: 150px;
    vertical-align: baseline;
  }
  .header .gNav {
    position: fixed;
    z-index: 9999;
    top: 54px;
    left: 0;
    visibility: hidden;
    overflow-y: auto;
    width: 100%;
    height: calc(90vh - 54px);
    margin: 0;
    padding: 0;
    background: #333;
    opacity: 0;
    transition: opacity .5s ease-in-out, transform .3s ease-out,visibility .2s ease-out;
  }
  .header .gNav__inner {
    display: block;
    margin: 0 auto;
    padding: 35px 3%;
  }
  .header .gNav__inner .navTtl {
    margin-bottom: 20px;
    font-size: 2rem;
    color: #fff;
    text-align: center;
  }
  .header .gNav__inner .navBox {
    margin-bottom: 30px;
    text-align: center;
  }
  .header .gNav__inner .navBox a {
    display: inline-block;
    overflow: hidden;
    padding: 29px 17px;
    border: 1px solid #515151;
    border-radius: 4px;
    background: #3d3d3d;
    font-size: 1.4rem;
    color: #fff;
    text-align: center;
  }
  .header .gNav__inner .navBox img {
    display: block;
    margin: 0 auto 5px;
  }
  .header .gNav .officeNum {
    display: none;
  }
  .header .gNav__list {
    display: block;
    overflow: hidden;
    width: 90%;
    margin: 0 auto;
    border: 1px solid #515151;
    border-radius: 4px;
    background: #3d3d3d;
  }
  .header .gNav__list__item {
    display: inline-block;
    margin-left: 0;
  }
  .header .gNav__list__item a {
    display: inline-block;
    padding: 15px 12px 15px;
  }
  .header .gNav__list__item a::before {
    content: none;
  }
  .header .gNav__list__item a .icon {
    display: inline-block;
    width: 26px;
    margin-right: 5px;
    vertical-align: middle;
  }
  .header .gNav.show {
    visibility: visible;
    opacity: 1;
  }
  .header .gNav.hide {
    visibility: hidden;
    opacity: 0;
  }
  .header .headerNav__cover {
    position: absolute;
    z-index: 9998;
    top: 54px;
    display: none;
    width: 100vw;
    height: 0;
    background: rgba(34, 34, 34, 0.95);
    text-align: center;
  }
  .header .headerNav__cover.show {
    display: block;
    -webkit-animation: show .2s linear 0s;
            animation: show .2s linear 0s;
  }
  .header .headerNav__cover.hide {
    display: none;
    -webkit-animation: hide .2s linear 0s;
            animation: hide .2s linear 0s;
  }
  .header .headerNav__cover span {
    position: absolute;
    bottom: 3vh;
    left: 50%;
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    transform: translateX(-50%);
  }
  .header .headerNav__cover span::before {
    position: absolute;
    top: 12px;
    left: -25px;
    display: inline-block;
    width: 15px;
    height: 3px;
    background: #fff;
    content: "";
    transform: rotate(45deg);
  }
  .header .headerNav__cover span::after {
    position: absolute;
    top: 12px;
    left: -25px;
    display: inline-block;
    width: 15px;
    height: 3px;
    background: #fff;
    content: "";
    transform: rotate(-45deg);
  }
  .header .burger {
    position: absolute;
    z-index: 9999;
    top: 15px;
    right: 18px;
    width: 30px;
    height: 26px;
    margin: auto;
    cursor: pointer;
    /*クリック後、バツボタンになる*/
  }
  .header .burger span {
    position: absolute;
    top: 11px;
    right: 0;
    left: 0;
    display: block;
    width: 30px;
    height: 4px;
    margin: 0 auto;
    background: #347cbd;
    transition: width 0.2s, right 0.2s, left 0.2s;
  }
  .header .burger span.burger--top {
    transform: translateY(-11px);
  }
  .header .burger span.burger--middle {
    position: relative;
    background: none;
    transform: translateY(0px);
  }
  .header .burger span.burger--middle::before {
    position: absolute;
    display: block;
    width: 30px;
    height: 4px;
    background: #347cbd;
    content: "";
    transition: all 0.2s;
    transform: rotate(0deg);
  }
  .header .burger span.burger--middle::after {
    position: absolute;
    display: block;
    width: 30px;
    height: 4px;
    background: #347cbd;
    content: "";
    transition: all 0.2s;
    transform: rotate(0deg);
  }
  .header .burger span.burger--bottom {
    transform: translateY(11px);
  }
  .header .burger.is-open {
    position: fixed;
    background: transparent;
    box-shadow: none;
  }
  .header .burger.is-open .burger--top {
    left: 100%;
    width: 0px;
  }
  .header .burger.is-open .burger--middle::before {
    transform: rotate(135deg);
  }
  .header .burger.is-open .burger--middle::after {
    transform: rotate(45deg);
  }
  .header .burger.is-open .burger--bottom {
    right: 100%;
    width: 0px;
  }
}

/*=================================
  footer
=================================*/
.footer__cont--cate {
  padding: 40px 3%;
  background: #333;
}

.footer__cont--cate__inner {
  display: flex;
  max-width: 1160px;
  margin: 0 auto;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer__cont--cate .fNavCate__ttl {
  margin-bottom: 30px;
  font-size: 2.2rem;
  font-weight: 300;
  color: #fff;
}

.footer__cont--cate .fNavCate--btn {
  width: 300px;
  margin-right: 20px;
  margin-bottom: 6px;
}

.footer__cont--cate .fNavCate--btn__wrap {
  display: flex;
  justify-content: space-between;
}

.footer__cont--cate .fNavCate--btn .fNavCate__item {
  width: 100%;
}

.footer__cont--cate .fNavCate--btn .fNavCate__item a {
  display: block;
  padding: 33px 27px 35px;
  border: 1px solid #515151;
  border-radius: 4px;
  background: #3d3d3d;
  font-size: 1.4rem;
  color: #fff;
  text-align: center;
  text-decoration: none;
}

@media screen and (min-width: 767px) {
  .footer__cont--cate .fNavCate--btn .fNavCate__item a:hover {
    text-decoration: underline;
  }
}

.footer__cont--cate .fNavCate--btn .fNavCate__item a img {
  display: block;
  margin: 0 auto;
  margin-bottom: 10px;
}

.footer__cont--cate .fNavCate--btn .fNavCate__item + .fNavCate__item {
  margin-left: 20px;
}

.footer__cont--cate .fNavCate--list {
  width: calc(100% - 356px);
  min-width: 664px;
}

.footer__cont--cate .fNavCate--list__wrap {
  position: relative;
  border: 1px solid #515151;
  border-radius: 4px;
  background: #3d3d3d;
}

.footer__cont--cate .fNavCate--list__item {
  display: inline-block;
}

.footer__cont--cate .fNavCate--list__item a {
  display: block;
  padding: 20px 15px;
  background: #3d3d3d;
  font-size: 1.4rem;
  color: #fff;
  text-decoration: none;
}

.footer__cont--cate .fNavCate--list__item a .icon {
  width: 32px;
  margin-right: 7px;
  vertical-align: middle;
}

@media screen and (min-width: 767px) {
  .footer__cont--cate .fNavCate--list__item a:hover {
    text-decoration: underline;
  }
}

.footer__cont--cate .fNavCate--list__item:last-child::after {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background: #515151;
  content: "";
}

.footer__cont--list {
  padding: 30px 0;
  background: #444;
}

.footer__cont--list .fNavList {
  max-width: 1160px;
  margin: 0 auto;
  text-align: center;
}

.footer__cont--list .fNavList__item {
  display: inline-block;
  margin: 0 18px;
}

.footer__cont--list .fNavList__item a {
  position: relative;
  font-size: 1.4rem;
  color: #fff;
  text-decoration: none;
}

.footer__cont--list .fNavList__item a::before {
  left: 8px;
  display: inline-block;
  box-sizing: border-box;
  width: 6px;
  height: 6px;
  border: 4px solid transparent;
  border-left: 8px solid #fff;
  content: "";
}

@media screen and (min-width: 767px) {
  .footer__cont--list .fNavList__item a:hover {
    text-decoration: underline;
  }
}

.footer__cont--group {
  padding: 30px 0 25px;
  background: #2f74b7;
}

.footer__cont--group .groupTtl {
  margin-bottom: 10px;
  color: #fff;
  text-align: center;
}

.footer__cont--group .groupList {
  width: 90%;
  margin: 0 auto;
}

.footer__cont--group .groupList__item {
  display: inline-block;
  margin: 0 20px 0 0;
}

.footer__cont--group .groupList__item a {
  font-size: 1.6rem;
  color: #fff;
}

.footer__cont--bnr {
  padding: 40px 1%;
}

.footer__cont--bnr .bnrTtl {
  margin-bottom: 40px;
  font-size: 2.4rem;
  font-weight: 400;
  text-align: center;
}

.footer__cont--bnr .bnrList {
  max-width: 1160px;
  margin: 0 auto;
}

.footer__cont--bnr .bnrList__item {
  display: inline-block;
  margin: 0 8px 15px 0;
}

.footer__cont--bnr .bnrList__item a {
  display: block;
}

@media screen and (min-width: 767px) {
  .footer__cont--bnr .bnrList__item a:hover {
    opacity: .8;
  }
}

.footer .copy {
  padding: 35px 0;
  background: #333;
  text-align: center;
}

.footer .copy__logo {
  margin-bottom: 10px;
}

.footer .copy__text {
  display: block;
  font-size: 1.4rem;
  color: #fff;
  text-align: center;
}

.fixedBnr {
  position: fixed;
  right: 0;
  bottom: 20px;
  left: 0;
  width: 100%;
  max-width: 1160px;
  margin: auto;
}

@media screen and (max-width: 767px) {
  /*=================================
    footer
  =================================*/
  .footer__cont--cate {
    padding: 30px 3%;
  }
  .footer__cont--cate__inner {
    display: block;
  }
  .footer__cont--cate .fNavCate__ttl {
    margin-bottom: 15px;
    font-size: 2rem;
    text-align: center;
  }
  .footer__cont--cate .fNavCate--btn {
    width: 100%;
    margin-right: 0;
    margin-bottom: 25px;
  }
  .footer__cont--cate .fNavCate--btn__wrap {
    justify-content: center;
  }
  .footer__cont--cate .fNavCate--btn .fNavCate__item {
    width: inherit;
  }
  .footer__cont--cate .fNavCate--btn .fNavCate__item a {
    padding: 26px 17px 27px;
  }
  .footer__cont--cate .fNavCate--btn .fNavCate__item + .fNavCate__item {
    margin-left: 10px;
  }
  .footer__cont--cate .fNavCate--list {
    width: 100%;
    min-width: inherit;
  }
  .footer__cont--cate .fNavCate--list__item {
    display: inline-block;
  }
  .footer__cont--cate .fNavCate--list__item a {
    padding: 15px 12px 15px;
  }
  .footer__cont--cate .fNavCate--list__item a .icon {
    width: 26px;
    margin-right: 5px;
  }
  .footer__cont--cate .fNavCate--list__item:last-child::after {
    content: none;
  }
  .footer__cont--list {
    padding: 25px 3%;
  }
  .footer__cont--list .fNavList {
    text-align: left;
  }
  .footer__cont--list .fNavList__item {
    margin: 0 10px 5px 0;
  }
  .footer__cont--list .fNavList__item a {
    font-size: 1.2rem;
  }
  .footer__cont--group {
    padding: 25px 3% 20px;
  }
  .footer__cont--group .groupTtl {
    margin-bottom: 15px;
  }
  .footer__cont--group .groupList {
    width: 100%;
  }
  .footer__cont--group .groupList__item {
    margin: 0 10px 5px 0;
  }
  .footer__cont--group .groupList__item a {
    font-size: 1.4rem;
  }
  .footer__cont--bnr {
    padding: 30px 3%;
  }
  .footer__cont--bnr .bnrTtl {
    margin-bottom: 25px;
    font-size: 2rem;
  }
  .footer__cont--bnr .bnrList__item {
    width: 47%;
    margin: 0 1% 2%;
  }
  .footer__cont--bnr .bnrList__item a {
    display: block;
  }
  .footer .copy {
    padding: 25px 0;
  }
  .footer .copy__text {
    font-size: 1.2rem;
  }
  .fixedBnr {
    bottom: 0;
  }
}

/*=================================
  visual
=================================*/
.mv {
  padding: 0 3%;
  background: #eee;
}

.mv__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 121px 0 37px;
  background: url(../img/mv.png) no-repeat right top;
  text-shadow: 0 0 3px rgba(226, 226, 226, 0.8);
}

.mv__ttl {
  margin-bottom: 14px;
  font-size: 5rem;
  font-weight: 400;
}

.mv__text {
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 2;
}

.kv {
  padding: 0 3%;
  background: #eee;
}

.kv__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 50px 0;
  background: url(../img/mv.png) no-repeat right top;
  text-shadow: 0 0 3px rgba(226, 226, 226, 0.8);
}

.kv__ttl {
  margin-bottom: 14px;
  font-size: 4rem;
  font-weight: 400;
}

.kv__text {
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 2;
}

.kv__link {
  display: block;
  margin-top: 20px;
  padding: 6px 0 6px 40px;
  background: url(../img/icon/ico_arw02.png) no-repeat left center;
  font-size: 2rem;
  font-weight: 400;
}

.kv.divorce .kv__inner {
  background: url(../img/kv_divorce.png) no-repeat right top;
}

.kv.debt .kv__inner {
  background: url(../img/kv_debt.png) no-repeat right top;
}

.kv.real-estate .kv__inner {
  background: url(../img/kv_real-estate.png) no-repeat right top;
}

.kv.labor-problems .kv__inner {
  background: url(../img/kv_labor-problems.png) no-repeat right top;
}

.kv.traffic-accident .kv__inner {
  background: url(../img/kv_traffic-accident.png) no-repeat right top;
}

.kv.corporate .kv__inner {
  background: url(../img/kv_corporate.png) no-repeat right top;
}

.kv.criminal-case .kv__inner {
  background: url(../img/kv_criminal-case.png) no-repeat right top;
}

.kv.debt-collection .kv__inner {
  background: url(../img/kv_debt-collection.png) no-repeat right top;
}

.kv.consumer-damage .kv__inner {
  background: url(../img/kv_consumer-damage.png) no-repeat right top;
}

.kv.inheritance .kv__inner {
  background: url(../img/kv_inheritance.png) no-repeat right top;
}

@media screen and (max-width: 767px) {
  /*=================================
    visual
  =================================*/
  .mv {
    height: 260px;
    padding: 0;
  }
  .mv__inner {
    padding: 30px 3% 60px;
    background: #ececea url(../img/mv_sp.png) no-repeat center center;
    background-size: cover;
    text-shadow: none;
  }
  .mv__ttl {
    margin-bottom: 8px;
    font-size: 2.8rem;
    font-weight: 300;
  }
  .mv__text {
    font-size: 1.6rem;
    line-height: 2;
  }
  .kv {
    padding: 0;
  }
  .kv__inner {
    padding: 30px 15% 15px 3%;
    background: #ececea url(../img/mv_sp.png) no-repeat center center;
    background-size: cover;
    text-shadow: none;
  }
  .kv__ttl {
    margin-bottom: 8px;
    font-size: 2.8rem;
    font-weight: 300;
  }
  .kv__text {
    font-size: 1.4rem;
    line-height: 1.5;
  }
  .kv__link {
    margin-top: 12px;
    padding: 6px 0 6px 22px;
    background: url(../img/icon/ico_arw02.png) no-repeat left center;
    background-size: 18px;
    font-size: 1.4rem;
  }
  .kv.divorce .kv__inner {
    background: url(../img/kv_sp_divorce.png) no-repeat right top;
    background-size: cover;
  }
  .kv.debt .kv__inner {
    background: url(../img/kv_sp_debt.png) no-repeat right top;
    background-size: cover;
  }
  .kv.real-estate .kv__inner {
    background: url(../img/kv_sp_real-estate.png) no-repeat right top;
    background-size: cover;
  }
  .kv.labor-problems .kv__inner {
    background: url(../img/kv_sp_labor-problems.png) no-repeat right top;
    background-size: cover;
  }
  .kv.traffic-accident .kv__inner {
    background: url(../img/kv_sp_traffic-accident.png) no-repeat right top;
    background-size: cover;
  }
  .kv.corporate .kv__inner {
    background: url(../img/kv_sp_corporate.png) no-repeat right top;
    background-size: cover;
  }
  .kv.criminal-case .kv__inner {
    background: url(../img/kv_sp_criminal-case.png) no-repeat right top;
    background-size: cover;
  }
  .kv.debt-collection .kv__inner {
    background: url(../img/kv_sp_debt-collection.png) no-repeat right top;
    background-size: cover;
  }
  .kv.consumer-damage .kv__inner {
    background: url(../img/kv_sp_consumer-damage.png) no-repeat right top;
    background-size: cover;
  }
  .kv.inheritance .kv__inner {
    background: url(../img/kv_sp_inheritance.png) no-repeat right top;
    background-size: cover;
  }
}

/* =================================
  side nav
================================= */
.sideNav {
  width: 300px;
}

.sideNav__inner {
  width: 300px;
}

.sideNav .sideSec__ttl {
  position: relative;
  padding: 30px 0;
  border-top: 4px solid #ddd;
  font-size: 2rem;
  font-weight: 300;
  color: #222;
}

.sideNav .sideSec__ttl::before {
  position: absolute;
  top: -4px;
  left: 0;
  display: block;
  width: 35%;
  height: 4px;
  background: #005bac;
  content: "";
}

.sideNav .sideSec + .sideSec {
  margin-top: 40px;
}

.sideNav .catList__item a {
  position: relative;
  display: block;
  padding: 16px 30px;
  border-top: 1px solid #ddd;
  font-size: 1.4rem;
}

.sideNav .catList__item a::before {
  position: absolute;
  top: 50%;
  left: 16px;
  display: inline-block;
  border-width: 5px 0 5px 8px;
  border-style: solid;
  border-color: transparent transparent transparent #005bac;
  content: "";
  transform: translateY(-50%);
}

@media screen and (min-width: 767px) {
  .sideNav .catList__item a:hover {
    background: #337cbd;
    color: #fff;
  }
  .sideNav .catList__item a:hover::before {
    border-color: transparent transparent transparent #fff;
  }
}

.sideNav .catList__item:last-child a {
  border-bottom: 1px solid #ddd;
}

.sideNav .pref__ttl {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  color: #005bac;
}

.sideNav .prefWrap {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
}

.sideNav .prefList__item {
  display: inline-block;
  margin-right: 5px;
}

.sideNav .prefList__item a {
  display: block;
  font-size: 1.4rem;
  color: #222;
}

.bengoList .sideNav {
  width: 260px;
}

.bengoList .sideNav__inner {
  width: 260px;
}

.bengoList .sideNav .sideSec--blue__ttl {
  padding: 25px 20px;
  background: #337cbd;
  font-size: 1.8rem;
  font-weight: 400;
  color: #fff;
}

.bengoList .sideNav .sideSec--blue__inner {
  padding: 20px 15px;
  border: 1px solid #ddd;
  border-top: none;
  background: #fff;
}

.bengoList .sideNav .sideSec--blue .catList__item a {
  padding: 5px 0;
  border-top: none;
  font-size: 1.6rem;
}

.bengoList .sideNav .sideSec--blue .catList__item a::before {
  content: none;
}

@media screen and (min-width: 767px) {
  .bengoList .sideNav .sideSec--blue .catList__item a:hover {
    background: inherit;
    color: #005bac;
  }
}

.bengoList .sideNav .sideSec--blue .catList__item:last-child a {
  border-bottom: none;
}

.bengoList .sideNav .sideSec--blue + .sideSec--blue {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  /* =================================
    side nav
  ================================= */
  .sideNav {
    display: none;
    width: 100%;
  }
  .sideNav__inner {
    width: 100%;
  }
}
/*# sourceMappingURL=maps/style.css.map */
