@charset "UTF-8";

/* Global */

/* @import url("//fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700,900&subset=japanese"); */
@import url("//fonts.googleapis.com/css?family=Noto+Serif+JP:100,300,400,500,700,900&subset=japanese");

* {
  margin: 0;
  border: none;
  border-collapse: collapse;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  background-repeat: no-repeat;
  font-size: 100%;
  font-weight: normal;
  font-style: normal;
  /* font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "sans-serif"; */
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-feature-settings: "palt";
  text-align: left;
}

a:visited,
a:link,
a:active {
  text-decoration: none;
}

pre,
code,
address,
caption,
th,
figcaption {
  font-size: 1em;
  font-weight: normal;
  font-style: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

article,
aside,
footer,
header,
nav,
main,
section,
summary,
details,
hgroup,
figure,
figcaption {
  display: block;
}

audio,
canvas,
video,
progress {
  display: inline-block;
  vertical-align: baseline;
}

button {
  font: inherit;
  vertical-align: middle;
}

li {
  list-style: none;
}

html {
  font-size: 62.5%;
}

body {
  background-color: #fff;
  font-size: 10px;
}

a {
  transition: opacity 0.5s;
}

a:hover {
  opacity: 0.7;
}

img {
  vertical-align: bottom;
}

input,
textarea,
select,
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

@media print {
  body {
    color: #000;
  }
  
  a,
  a:link,
  a:visited {
    color: #000;
    text-decoration: none;
  }
}



/* Header */

header {
  display: table;
  position: fixed;
  width: 100%;
  height: 120px;
  background-color: rgba(255,255,255,0.9);
}

header h1 {
  display: table-cell;
  padding-left: 40px;
  vertical-align: middle;
}

header h1 img {
  width: 100%;
  max-width: 280px;
}

nav {
  display: table-cell;
  text-align: right;
  vertical-align: middle;
}

nav a {
  display: inline-block;
  margin-right: 40px;
  font-size: 1.6rem;
  color: #000;
}

@media(max-width: 1280px) {
  nav a {
    margin-right: 30px;
    font-size: 1.5rem;
  }
}

@media(max-width: 1024px) {
  header {
    height: 100px;
  }

  header h1 {
    padding-left: 30px;
  }
  
  #menu-sp {
    display: table-cell;
    width: 60px;
  }
  
  #menu-sp-button {
    position: relative;
    z-index: 20000;
    cursor: pointer;
  	width: 30px;
  	height: 30px;
  }
  
  #menu-sp-button span {
  	display: inline-block;
  	transition: all .4s;
  	box-sizing: border-box;
  	position: absolute;
  	left: 0;
  	width: 100%;
  	height: 2px;
  	background-color: #676767;
  }
  
  #menu-sp span:nth-of-type(1) {
  	top: 35px;
  }
  
  #menu-sp span:nth-of-type(2) {
  	top: 45px;
  }
  
  #menu-sp span:nth-of-type(3) {
  	top: 55px;
  }
  
  #menu-sp.active span:nth-of-type(1) {
  	transform: translateY(10px) rotate(-45deg);
  }
  
  #menu-sp.active span:nth-of-type(2) {
    display: none;
  }
  
  #menu-sp.active span:nth-of-type(3) {
  	transform: translateY(-10px) rotate(45deg);
  }
  
  nav {
    display: none;
    position: absolute;
    top: 100px;
    left: 0;
    z-index: 100;
    width: 100%;
    padding-bottom: 30px;
    background-color: #fff;
  }
  
  nav a {
    display: block;
    width: 100%;
    padding: 20px 0;
    font-size: 1.6rem;
    text-align: center;
    color: #000;
  }
}

@media(max-width: 768px) {
  header h1 img {
    max-width: 230px;
  }
}

@media(max-width: 560px) {
  header {
    height: 80px;
  }

  header h1 {
    padding-left: 20px;
  }

  header h1 img {
    max-width: 180px;
  }
  
  nav {
    top: 80px;
  }
  
  #menu-sp {
    width: 50px;
  }
  
  #menu-sp span:nth-of-type(1) {
  	top: 26px;
  }
  
  #menu-sp span:nth-of-type(2) {
  	top: 36px;
  }
  
  #menu-sp span:nth-of-type(3) {
  	top: 46px;
  }
}



/* Main Visual */

.main-visual {
  width: 100%;
  aspect-ratio: 16/9;
  margin-bottom: 90px;
  background-size: cover;
  background-position: center center;
  background-color: #f1f1f1;
}

.main-visual-narrow {
  aspect-ratio: 3/1;
}

#main-visual-home {
  background-image: url('/img/main-visual-home.jpg');
}

#main-visual-firm {
  background-image: url('/img/main-visual-firm.jpg');
}

#main-visual-news {
  background-image: url('/img/main-visual-news.jpg');
}

#main-visual-services {
  background-image: url('/img/main-visual-services.jpg');
}

#main-visual-services-contract {
  background-image: url('/img/main-visual-os-contract.jpg');
}

#main-visual-services-accident {
  background-image: url('/img/main-visual-os-accident.jpg');
}

#main-visual-services-civilcase {
  background-image: url('/img/main-visual-os-civilcase.jpg');
}

#main-visual-services-debt {
  background-image: url('/img/main-visual-os-debt.jpg');
}

#main-visual-services-domesticcase {
  background-image: url('/img/main-visual-os-domesticcase.jpg');
}

#main-visual-services-inherit {
  background-image: url('/img/main-visual-os-inherit.jpg');
}

#main-visual-services-labor {
  background-image: url('/img/main-visual-os-labor.jpg');
}

#main-visual-services-ma {
  background-image: url('/img/main-visual-os-ma.jpg');
}

#main-visual-services-realestate {
  background-image: url('/img/main-visual-os-realestate.jpg');
}

#main-visual-services-divorce {
  background-image: url('/img/main-visual-os-divorce.jpg');
}

#main-visual-services-legaladvisor {
  background-image: url('/img/main-visual-legaladvisor.jpg');
}

#main-visual-services-criminalcase {
  background-image: url('/img/main-visual-criminalcase.jpg');
}

#main-visual-lawyer {
  background-image: url('/img/main-visual-lawyer.jpg');
}

#main-visual-fee {
  background-image: url('/img/main-visual-fee.jpg');
}

#main-visual-contact {
  background-image: url('/img/main-visual-contact.jpg');
}

@media(max-width: 1024px) {
  .main-visual {
    margin-bottom: 60px;
  }
}

@media(max-width: 768px) {
  .main-visual {
    margin-bottom: 40px;
  }
}

@media(max-width: 560px) {
  .main-visual {
    aspect-ratio: 1/1;
    margin-bottom: 30px;
  }
}



/* Main */

section,
#section-inside {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto 90px auto;
  padding: 0 40px;
}

section.gray {
  max-width: 100%;
  padding: 90px 0;
  background-color: #eee;
}

p.heading-e {
  margin-bottom: 10px;
  font-size: 3rem;
  font-weight: 500;
  text-align: center;
  color: #0e0e63;
}

h2 {
  margin-bottom: 90px;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
}

br.no560 {
  display: none;
}

#back-to-list {
  width: 100%;
  max-width: 900px;
  margin: 60px auto 90px auto;
  text-align: center;
}

#back-to-list a {
  font-size: 1.6rem;
  color: #000;
}

#back-to-list a i {
  margin-right: 5px;
}

@media(max-width: 1024px) {
  section,
  #section-inside {
    margin-bottom: 60px;
    padding: 0 30px;
  }
  
  section.gray {
    padding: 60px 0;
  }
  
  p.heading-e {
    margin-bottom: 8px;
    font-size: 2.8rem;
  }
  
  h2 {
    margin-bottom: 60px;
    font-size: 1.6rem;
  }

  #back-to-list {
    margin: 40px auto 60px auto;
  }
  
  #back-to-list a {
    font-size: 1.4rem;
  }
}

@media(max-width: 768px) {
  section,
  #section-inside {
    margin-bottom: 40px;
  }
  
  section.gray {
    padding: 40px 0;
  }
  
  p.heading-e {
    margin-bottom: 7px;
    font-size: 2.4rem;
  }
  
  h2 {
    margin-bottom: 40px;
    font-size: 1.4rem;
  }

  #back-to-list {
    margin: 30px auto 40px auto;
  }
  
  #back-to-list a {
    font-size: 1.3rem;
  }
}

@media(max-width: 560px) {
  section,
  #section-inside {
    margin-bottom: 30px;
    padding: 0 20px;
  }
  
  section.gray {
    padding: 30px 0;
  }
  
  p.heading-e {
    margin-bottom: 6px;
    font-size: 2.2rem;
  }
  
  h2 {
    margin-bottom: 30px;
    font-size: 1.3rem;
  }
  
  br.no560 {
    display: block;
  }
}



/* Footer Menu */

#footer-menu {
  padding: 40px;
  background-color: #333;
}

#footer-menu p {
  margin-bottom: 30px;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  color: #fff;
}

#footer-menu-contact {
  display: table;
  width: 100%;
  max-width: 500px;
  margin: 0 auto 40px auto;
}

#footer-menu-contact a {
  display: table-cell;
  width: 50%;
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  vertical-align: middle;
  color: #fff;
}

#footer-menu-contact a i {
  margin-right: 5px;
}

#footer-menu-nav {
  width: 100%;
  text-align: center;
}

#footer-menu-nav a {
  display: inline-block;
  margin: 0 30px;
  font-size: 1.4rem;
  color: #fff;
  text-align: center;
}

@media(max-width: 1024px) {
  #footer-menu {
    padding: 30px;
  }
  
  #footer-menu p {
    margin-bottom: 20px;
    font-size: 1.6rem;
  }
  
  #footer-menu-contact {
    margin: 0 auto 30px auto;
    max-width: 420px;
  }
  
  #footer-menu-contact a {
    font-size: 1.8rem;
  }
  
  #footer-menu-nav a {
    margin: 0 20px;
    font-size: 1.3rem;
  }
}

@media(max-width: 768px) {
  #footer-menu {
    padding: 20px;
  }
  
  #footer-menu p {
    margin-bottom: 15px;
    font-size: 1.4rem;
  }
  
  #footer-menu-contact {
    margin: 0 auto 20px auto;
    max-width: 360px;
  }
  
  #footer-menu-contact a {
    font-size: 1.6rem;
  }
  
  #footer-menu-nav a {
    margin: 0 15px;
  }
}

@media(max-width: 560px) {
  #footer-menu {
    padding: 15px;
  }
  
  #footer-menu p {
    margin-bottom: 10px;
    font-size: 1.3rem;
  }
  
  #footer-menu-contact {
    margin: 0 auto 14px auto;
    max-width: auto;
  }
  
  #footer-menu-contact a {
    font-size: 1.4rem;
  }
  
  #footer-menu-nav a {
    margin: 0 6px 6px 10px;
    font-size: 1.2rem;
  }
}



/* Footer */

footer {
  display: table;
  width: 100%;
}

#footer-logo {
  display: table-cell;
  width: 50%;
  padding: 40px;
  vertical-align: middle;
}

#footer-logo img {
  width: 100%;
  max-width: 240px;
}

#copyright {
  display: table-cell;
  width: 50%;
  padding: 60px 40px;
  font-size: 1.2rem;
  text-align: right;
  vertical-align: middle;
}

@media(max-width: 1024px) {
  #footer-logo {
    padding: 30px;
  }
  
  #footer-logo img {
    max-width: 230px;
  }
  
  #copyright {
    padding: 40px 30px;
  }
}

@media(max-width: 768px) {
  #footer-logo img {
    max-width: 220px;
  }
}

@media(max-width: 560px) {
  #footer-logo {
    padding: 20px;
  }
  
  #footer-logo img {
    max-width: 160px;
  }
  
  #copyright {
    padding: 30px 20px;
    font-size: 1rem;
  }
}



/* Our Service */

#service-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#service-list::after {
  content: "";
  width: 32%;
}

#service-list a {
  width: 32%;
  margin-bottom: 40px;
}

/* tmp */
#service-list a:hover {
  opacity: 1;
  cursor: default;
}

#service-list a div {
  width: 100%;
  aspect-ratio: 1/1;
  margin-bottom: 25px;
  background-size: cover;
  background-position: center center;
  background-color: #f1f1f1;
}

#service-list a[title="契約法務・商取引"] div {
  background-image: url('/img/main-visual-os-contract.jpg');
}

#service-list a[title="M＆A、事業譲渡"] div {
  background-image: url('/img/main-visual-os-ma.jpg');
}

#service-list a[title="交通事故"] div {
  background-image: url('/img/main-visual-os-accident.jpg');
}

#service-list a[title="相続"] div {
  background-image: url('/img/main-visual-os-inherit.jpg');
}

#service-list a[title="債務整理"] div {
  background-image: url('/img/main-visual-os-debt.jpg');
}

#service-list a[title="不動産関係"] div {
  background-image: url('/img/main-visual-os-realestate.jpg');
}

#service-list a[title="労務"] div {
  background-image: url('/img/main-visual-os-labor.jpg');
}

#service-list a[title="その他民事関連"] div {
  background-image: url('/img/main-visual-os-civilcase.jpg');
}

#service-list a[title="その他家事事件"] div {
  background-image: url('/img/main-visual-os-domesticcase.jpg');
}

#service-list a[title="離婚・男女問題"] div {
  background-image: url('/img/main-visual-os-divorce.jpg');
}

#service-list a[title="顧問契約"] div {
  background-image: url('/img/main-visual-legaladvisor.jpg');
}

#service-list a[title="刑事事件"] div {
  background-image: url('/img/main-visual-criminalcase.jpg');
}

#service-list h3 {
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: 300;
  text-align: center;
  color: #000;
}

#service-list p {
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 2.5rem;
  /* text-align: center; */
  letter-spacing: -1px;
  color: #000;
}

@media(max-width: 1024px) {
  #service-list a {
    margin-bottom: 30px;
  }
  
  #service-list a div {
    margin-bottom: 20px;
  }
  
  #service-list h3 {
    margin-bottom: 8px;
    font-size: 1.8rem;
  }
  
  #service-list p {
    font-size: 1.3rem;
    line-height: 2.5rem;
    text-align: left;
  }
  
  #service-list p br {
    display: none;
  }
}

@media(max-width: 768px) {
  #service-list a {
    margin-bottom: 20px;
  }
  
  #service-list a div {
    margin-bottom: 15px;
  }
  
  #service-list h3 {
    margin-bottom: 7px;
    font-size: 1.6rem;
  }
  
  #service-list p {
    font-size: 1.2rem;
    line-height: 2.2rem;
  }
}

@media(max-width: 560px) {
  #service-list::after {
    width: 48%;
  }
  
  #service-list a {
    width: 48%;
    margin-bottom: 15px;
  }
  
  #service-list a div {
    margin-bottom: 10px;
  }
  
  #service-list h3 {
    margin-bottom: 6px;
    font-size: 1.4rem;
  }
  
  #service-list p {
    font-size: 1.2rem;
    line-height: 2.2rem;
  }
}




/* Services Single */

#service-single {
  max-width: 950px;
}

#service-single h3 {
  margin-bottom: 30px;
  font-size: 2rem;
  font-weight: 300;
  text-align: center;
}

.service-single-lead {
  margin-bottom: 60px;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 2.6rem;
}

.service-single-body {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 2.6rem;
}

@media(max-width: 1024px) {
  #service-single h3 {
    margin-bottom: 25px;
    font-size: 1.8rem;
  }
  
  .service-single-lead {
    margin-bottom: 40px;
    font-size: 1.3rem;
    line-height: 2.5rem;
  }
  
  .service-single-lead br {
    display: none;
  }
  
  .service-single-body {
    font-size: 1.3rem;
    line-height: 2.5rem;
  }
}

@media(max-width: 768px) {
  #service-single h3 {
    margin-bottom: 20px;
    font-size: 1.7rem;
  }
  
  .service-single-lead {
    margin-bottom: 30px;
  }
}

@media(max-width: 560px) {
  #service-single h3 {
    margin-bottom: 15px;
    font-size: 1.6rem;
  }
  
  .service-single-lead {
    margin-bottom: 25px;
  }
}



/* News */

#news-list {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid #ccc;
}

.news-entry {
  display: table;
  width: 100%;
  border-bottom: 1px solid #ccc;
}

.news-date {
  display: table-cell;
  width: 20%;
  padding: 30px;
  font-size: 1.6rem;
  font-weight: 300;
  color: #0e0e63;
}

.news-title {
  display: table-cell;
  padding: 30px;
  font-size: 1.6rem;
  font-weight: 300;
  color: #000;
}

@media(max-width: 1024px) {
  .news-date {
    padding: 20px;
    font-size: 1.5rem;
  }
  
  .news-title {
    padding: 20px;
    font-size: 1.5rem;
  }
}

@media(max-width: 768px) {
  .news-date {
    padding: 15px;
    font-size: 1.4rem;
  }
  
  .news-title {
    padding: 15px;
    font-size: 1.4rem;
  }
}

@media(max-width: 560px) {
  .news-date {
    padding: 10px;
    font-size: 1.3rem;
  }
  
  .news-title {
    padding: 10px;
    font-size: 1.3rem;
  }
}

/* Navigation */

.wp-pagenavi {
  padding-top: 50px;
  text-align: center;
}

.wp-pagenavi a,
.wp-pagenavi span {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-right: 5px;
  background-color: #eee;
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 44px;
  text-align: center;
  color: #000;
}

.wp-pagenavi span.current {
  background-color: #0e0e63;
  color: #fff;
}

.wp-pagenavi .pages {
  display: none;
}

@media(max-width:767px) {
  .wp-pagenavi {
    padding-top: 30px;
  }

  .wp-pagenavi a,
  .wp-pagenavi span {
    width: 26px;
    height: 26px;
    font-size: 1.2rem;
    line-height: 28px;
  }
}

/* News Single */

#news-single {
  max-width: 750px;
  margin: 0 auto;
}

#news-single h3 {
  margin-bottom: 15px;
  border-bottom: 1px solid #f1f1f1;
  padding-bottom: 15px;
  font-size: 1.8rem;
  font-weight: 500;
}

#news-single-date {
  margin-bottom: 30px;
  font-size: 1.4rem;
  font-weight: 300;
}

#news-single-body {
  margin-bottom: 30px;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 3.2rem;
}

@media(max-width: 1024px) {
  #news-single h3 {
    margin-bottom: 13px;
    padding-bottom: 13px;
    font-size: 1.7rem;
  }
  
  #news-single-date {
    margin-bottom: 25px;
    font-size: 1.3rem;
  }
  
  #news-single-body {
    margin-bottom: 25px;
    font-size: 1.5rem;
    line-height: 3rem;
  }  
}

@media(max-width: 768px) {
  #news-single h3 {
    margin-bottom: 12px;
    padding-bottom: 12px;
    font-size: 1.6rem;
  }
  
  #news-single-date {
    margin-bottom: 20px;
  }
  
  #news-single-body {
    margin-bottom: 20px;
    font-size: 1.4rem;
    line-height: 2.8rem;
  }  
}

@media(max-width: 560px) {
  #news-single h3 {
    margin-bottom: 10px;
    padding-bottom: 10px;
    font-size: 1.5rem;
  }
  
  #news-single-date {
    margin-bottom: 15px;
  }
  
  #news-single-body {
    margin-bottom: 15px;
    font-size: 1.3rem;
    line-height: 2.6rem;
  }  
}



/* Access */

#access address {
  margin-bottom: 5px;
  font-size: 1.6rem;
  font-weight: 300;
  text-align: center;
}

#access-phone {
  margin-bottom: 5px;
  font-size: 1.6rem;
  font-weight: 300;
  text-align: center;
}

#access-phone a {
  color: #000;
}

#access-note {
  margin-bottom: 30px;
  font-size: 1.6rem;
  font-weight: 300;
  text-align: center;
}

#access-map iframe {
  width: 100%;
  height: 450px;
}

@media(max-width: 1024px) {
  #access address {
    font-size: 1.5rem;
  }
  
  #access-phone {
    font-size: 1.5rem;
  }
  
  #access-note {
    margin-bottom: 20px;
    font-size: 1.5rem;
  }
}

@media(max-width: 768px) {
  #access address {
    font-size: 1.4rem;
  }
  
  #access-phone {
    font-size: 1.4rem;
  }
  
  #access-note {
    margin-bottom: 15px;
    font-size: 1.4rem;
  }
}

@media(max-width: 560px) {
  #access address {
    font-size: 1.3rem;
  }
  
  #access-phone {
    font-size: 1.3rem;
  }
  
  #access-note {
    margin-bottom: 10px;
    font-size: 1.3rem;
  }
}



/* Firm */

#firm table {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  border-top: 1px solid #ccc;
}

#firm th {
  width: 20%;
  border-bottom: 1px solid #ccc;
  padding: 20px;
  font-size: 1.6rem;
  font-weight: 500;
  vertical-align: middle;
}

#firm td {
  border-bottom: 1px solid #ccc;
  padding: 20px;
  font-size: 1.6rem;
  font-weight: 500;
  vertical-align: middle;
}

#message-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

#message-img {
  width: 44%;
}

#message-img img {
  width: 100%;
}

#message-text {
  width: 50%;
}

#message-text p {
  font-size: 1.7rem;
  font-weight: 300;
  line-height: 3.7rem;
}

@media(max-width: 1024px) {
  #firm th {
    padding: 15px;
    font-size: 1.5rem;
  }
  
  #firm td {
    padding: 15px;
    font-size: 1.5rem;
  }
  
  #message-text p {
    font-size: 1.6rem;
    line-height: 3.4rem;
  }
}

@media(max-width: 768px) {
  #firm th {
    padding: 10px;
    font-size: 1.4rem;
  }
  
  #firm td {
    padding: 10px;
    font-size: 1.4rem;
  }
  
  #message-text p {
    font-size: 1.5rem;
    line-height: 3.2rem;
  }
}

@media(max-width: 560px) {
  #firm th {
    width: 27%;
    padding: 8px;
    font-size: 1.3rem;
  }
  
  #firm td {
    padding: 8px;
    font-size: 1.3rem;
  }
  
  #message-main {
    display: block;
  }
  
  #message-img {
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
  }
  
  #message-img img {
    max-width: 260px;
  }
  
  #message-text {
    width: 100%;
  }
  
  #message-text p {
    font-size: 1.5rem;
    line-height: 3.2rem;
  }
}



/* Lawyer */

#lawyer-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  max-width: 630px;
  margin: 0 auto;
}

#lawyer-list::after {
  content: "";
  width: 48%;
}

.lawyer {
  width: 48%;
  margin-bottom: 30px;
}

.lawyer div {
  margin-bottom: 20px;
}

.lawyer div img {
  width: 100%;
}

.lawyer h3 {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  color: #000;
}



/* Lawyer Single */

#lawyer-single {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

#lawyer-single-img {
  width: 46%;
}

#lawyer-single-img img {
  width: 100%;
}

#lawyer-single-text {
  width: 46%;
  padding-top: 10px;
}

#lawyer-single-text h3 {
  margin-bottom: 20px;
  font-size: 3rem;
  font-weight: 300;
}

#lawyer-single-name-e {
  margin-bottom: 30px;
  font-size: 2.3rem;
  font-weight: 300;
}

#lawyer-single-title {
  margin-bottom: 50px;
  font-size: 2.3rem;
  font-weight: 300;
}

#lawyer-single h4 {
  padding-bottom: 10px;
  font-size: 2.3rem;
  font-weight: 300;
  text-align: center;
}

#lawyer-single table {
  width: 100%;
  border-top: 1px solid #ccc;
  font-size: 2rem;
  font-weight: 300;
}

#lawyer-single th {
  width: 23%;
  border-bottom: 1px solid #eee;
  padding: 15px 0;
  vertical-align: top;
}

#lawyer-single td {
  border-bottom: 1px solid #eee;
  padding: 15px 0;
  vertical-align: top;
}

@media(max-width: 1024px) {
  #lawyer-single-text {
    width: 48%;
    padding-top: 8px;
  }
  
  #lawyer-single-text h3 {
    margin-bottom: 15px;
    font-size: 2.8rem;
  }
  
  #lawyer-single-name-e {
    margin-bottom: 20px;
    font-size: 2.1rem;
  }
  
  #lawyer-single-title {
    margin-bottom: 40px;
    font-size: 2.1rem;
  }
  
  #lawyer-single h4 {
    padding-bottom: 9px;
    font-size: 2.1rem;
  }
  
  #lawyer-single table {
    font-size: 1.8rem;
  }
  
  #lawyer-single th {
    padding: 10px 0;
  }
  
  #lawyer-single td {
    padding: 10px 0;
  }
}

@media(max-width: 768px) {
  #lawyer-single-text {
    padding-top: 7px;
  }
  
  #lawyer-single-text h3 {
    margin-bottom: 10px;
    font-size: 2.6rem;
  }
  
  #lawyer-single-name-e {
    margin-bottom: 15px;
    font-size: 1.8rem;
  }
  
  #lawyer-single-title {
    margin-bottom: 30px;
    font-size: 1.8rem;
  }
  
  #lawyer-single h4 {
    padding-bottom: 8px;
    font-size: 1.6rem;
  }
  
  #lawyer-single table {
    font-size: 1.4rem;
  }
  
  #lawyer-single th {
    padding: 7px 0;
  }
  
  #lawyer-single td {
    padding: 7px 0;
  }
}

@media(max-width: 560px) {
  #lawyer-single-img {
    width: 100%;
    text-align: center;
  }
  
  #lawyer-single-img img {
    max-width: 260px;
    margin-bottom: 20px;
  }
  
  #lawyer-single-text {
    width: 100%;
    padding-top: 6px;
  }
  
  #lawyer-single-text h3 {
    margin-bottom: 8px;
    font-size: 2.2rem;
    text-align: center;
  }
  
  #lawyer-single-name-e {
    margin-bottom: 12px;
    font-size: 1.6rem;
    text-align: center;
  }
  
  #lawyer-single-title {
    margin-bottom: 20px;
    font-size: 1.6rem;
    text-align: center;
  }
  
  #lawyer-single h4 {
    font-size: 1.6rem;
  }
}



/* Fee */

#fee h3 {
  margin-bottom: 40px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 3.6rem;
  text-align: center;
}

#fee p {
  margin-bottom: 50px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2.4rem;
}

#fee p strong {
  font-weight: 700;
}

#fee span {
  font-size: 1.3rem;
  font-weight: 300;
}

#fee table {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 20px auto;
  border: 1px solid #000;
  font-size: 1.3rem;
  line-height: 2.2rem;
}

#fee p.note {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

#fee th {
  border: 1px solid #000;
  padding: 7px 10px;
  background-color: #333;
  text-align: center;
  color: #fff;
}

#fee td {
  border: 1px solid #000;
  padding: 5px 10px;
}

#fee td:first-of-type {
  width: 20%;
}

#fee td:nth-of-type(2),
#fee td:nth-of-type(3) {
  width: 40%;
}

#fee td br {
  display: none;
}

@media(max-width: 1024px) {
  #fee h3 {
    margin-bottom: 30px;
    padding: 8px 0;
    font-size: 1.7rem;
    line-height: 3.5rem;
  }
  
  #fee p {
    margin-bottom: 40px;
    font-size: 1.3rem;
    line-height: 2.3rem;
  }
  
  #fee span {
    font-size: 1.2rem;
  }
  
  #fee table {
    margin-bottom: 15px;
    font-size: 1.2rem;
    line-height: 2.1rem;
  }

  #fee th {
    padding: 6px 8px;
  }
  
  #fee td {
    padding: 4px 8px;
  }
}

@media(max-width: 768px) {
  #fee h3 {
    margin-bottom: 25px;
    padding: 7px 0;
    font-size: 1.6rem;
    line-height: 3.4rem;
    text-align: left;
  }
  
   #fee h3 br {
     display: none;
   }
  
  #fee p {
    margin-bottom: 30px;
    font-size: 1.2rem;
    line-height: 2.1rem;
  }
  
  #fee span {
    font-size: 1.1rem;
  }
  
  #fee table {
    margin-bottom: 14px;
    font-size: 1.1rem;
    line-height: 2rem;
  }

  #fee th {
    padding: 5px 7px;
  }
  
  #fee td {
    padding: 3px 7px;
  }
}

@media(max-width: 560px) {
  #fee h3 {
    margin-bottom: 20px;
    padding: 6px 0;
    font-size: 1.4rem;
    line-height: 2.8rem;
    text-align: left;
  }
  
  #fee td br {
    display: block;
  }
}



/* Contact */

.contact-note {
  margin-bottom: 60px;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 2.8rem;
  text-align: center;
}

#contact form {
  display: table;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}

#contact form > div {
  display: table-row;
}

#contact form > div > div {
  display: table-cell;
}

#contact form > div > div:nth-child(1) {
  width: 30%;
  padding-bottom: 20px;
  font-size: 1.6rem;
  font-weight: 300;
  vertical-align: middle;
}

#contact form > div > div:nth-child(2) {
  padding-bottom: 20px;
  font-size: 1.6rem;
  font-weight: 300;
  vertical-align: middle;
}

#contact input[type="text"] {
  width: 100%;
  padding: 10px;
  background-color: #ccc;
  font-size: 1.5rem;
  font-weight: 300;
}

#contact textarea {
  width: 100%;
  height: 200px;
  padding: 10px;
  background-color: #ccc;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 3rem;
}

a.button,
#contact button {
  display: inline-block;
  margin-right: 5px;
  border-radius: 6px;
  padding: 7px 30px;
  background-color: #333;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  color: #fff;
  transition: 0.2s;
  vertical-align: text-bottom;
}

a.button i,
#contact button i {
  margin-right: 5px;
}

#contact button:hover {
  opacity: 0.5;
}

#contact p#contact-note {
  padding-top: 30px;
  text-align: center;
}

#contact-message {
  padding: 0 0 60px 0;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 3.2rem;
}

#contact-message.error {
  color: #f00;
}

#contact-message.error a {
  color: #000;
}

@media(max-width: 1024px) {
  .contact-note {
    margin-bottom: 40px;
    font-size: 1.5rem;
    line-height: 2.7rem;
  }
  
  #contact form > div > div:nth-child(1) {
    padding-bottom: 15px;
    font-size: 1.5rem;
  }
  
  #contact form > div > div:nth-child(2) {
    padding-bottom: 15px;
    font-size: 1.5rem;
  }
  
  #contact input[type="text"] {
    padding: 8px;
    font-size: 1.4rem;
  }
  
  #contact textarea {
    height: 180px;
    padding: 8px;
    font-size: 1.4rem;
    line-height: 2.8rem;
  }
  
  a.button,
  #contact button {
    border-radius: 5px;
    padding: 6px 28px;
    font-size: 1.5rem;
  }
  
  #contact-message {
    padding: 0 0 60px 0;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 3.2rem;
  }
}

@media(max-width: 560px) {
  #contact form {
    display: block;
  }
  
  #contact form > div {
    display: block;
  }

  #contact form > div > div {
    display: block;
    width: 100%;
  }
  
  #contact form > div > div:nth-child(1) {
    width: 100%;
  }

  #contact select {
    margin: 0 2px 20px 0;
  }
}