@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  vertical-align: baseline;
  word-break: break-word;
  overflow-wrap: break-word;
  text-align: justify;
}

body {
  color: #6e4621;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
}

a {
  color: #6e4621;
  text-decoration: none;
  opacity: 1;
  transition: opacity 0.8s ease;
}
a:hover {
  opacity: 0.6;
}

/*WordPress*/
.screen-reader-text,
.screen-reader-response {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.aligncenter {
  display: block;
  margin: 0 auto;
  clear: both;
}

.alignleft {
  display: inline;
  float: left;
  margin-right: 24px;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 24px;
}

.flex {
  display: flex;
}

.flex_column {
  flex-direction: column;
}

.flex_reverse {
  flex-direction: row-reverse;
}

.justify_center {
  justify-content: center;
}

.justify_end {
  justify-content: flex-end;
}

.space_between {
  justify-content: space-between;
}

.align_items_center {
  align-items: center;
}

.flex_wrap {
  flex-wrap: wrap;
}

.ta-l {
  text-align: left;
}

.ta-c {
  text-align: center;
}

.ta-r {
  text-align: right;
}

.fw_regular {
  font-weight: 400;
}

.fw_bold {
  font-weight: 700;
}

.fs10 {
  font-size: 10px;
}

.red {
  color: #e23541;
}

.bg_gray {
  background-color: #f5f2e9;
}

.bg_green {
  background-color: #dfeddf;
}

.txt_fade_in {
  opacity: 0;
  transition: opacity 1.4s;
}
.txt_fade_in.active {
  opacity: 1;
}

.img_fade_in {
  opacity: 0;
  transition: opacity 1.4s;
}
.img_fade_in.active {
  opacity: 1;
}

.more {
  position: relative;
  width: 111px;
  height: 36px;
  display: flex;
  align-items: center;
  padding-bottom: 2px;
  font-size: 12px;
  line-height: 1;
}
.more .semicircle {
  width: 18px;
  height: 36px;
  border: solid 1px #6e4621;
  border-radius: 18px 0 0 18px; /* 右側を丸める */
  border-right: 0; /* 直線部分を消す */
  margin: 0;
}
.more .line {
  display: flex;
  align-items: center;
  width: 93px;
  height: 36px;
  border-top: solid 1px #6e4621;
  border-bottom: solid 1px #6e4621;
}
.more .arrow {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  width: 15px;
  height: 1px;
  background-color: #6e4621;
  position: absolute;
  right: 0;
  transition: right 0.5s ease;
}
.more .arrow:before, .more .arrow:after {
  content: "";
  display: block;
  width: 12px;
  height: 1px;
  background-color: #6e4621;
  position: absolute;
  right: -3px;
}
.more .arrow:before {
  top: -4px;
  transform: rotate(45deg);
}
.more .arrow:after {
  bottom: -4px;
  transform: rotate(-45deg);
}
.more:hover .arrow {
  right: -10px;
}

.price_wrap span {
  display: inline-block;
  width: 260px;
}

a.top_cc_fz {
  font-size: 14px;
}

/******************************/
/**********ヘッダー************/
/*****************************/
#header {
  background-color: rgba(255, 255, 255, 0.8);
  height: 90px;
  padding: 20px 0;
  position: relative;
  z-index: 10;
}
#header .header_wrap {
  max-width: 1340px;
  padding: 0 20px;
  margin: 0 auto;
  width: 100%;
}
#header .header_logo_wrap {
  margin-right: auto;
}
#header .header_logo_wrap img {
  width: 100%;
  min-width: 250px;
}
#header .header_menu_wrap {
  margin-left: 20px;
}
#header .header_menu_list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  max-width: 350px;
  min-width: 350px;
}
#header .header_menu_list > li {
  min-width: 100px;
  margin-right: 6px;
}
#header .header_menu_list > li:first-child {
  min-width: 112px;
}
#header .header_menu_list > li:nth-child(1), #header .header_menu_list > li:nth-child(4) {
  margin-right: 18px;
}
#header .header_menu_list > li a {
  font-size: 13px;
  letter-spacing: -0.02em;
}
#header .header_menu_list > li a:before {
  content: "";
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1LjE4IDcuNCI+PHBvbHlsaW5lIHBvaW50cz0iMC43IDAuNzEgMy43NiAzLjcxIDAuODQgNi43IiBzdHlsZT0iZmlsbDpub25lO3N0cm9rZTojOGViMDQ2O3N0cm9rZS1taXRlcmxpbWl0OjEwO3N0cm9rZS13aWR0aDoycHgiLz48L3N2Zz4=");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 6px;
  height: 8px;
  display: inline-block;
  margin: 0 4px 1px 0;
}
#header .header_menu_list > li:nth-child(3), #header .header_menu_list > li:nth-child(6) {
  min-width: 88px;
  margin-right: 0;
}
#header .header_menu_list .sub-menu {
  display: none;
}
#header .header_contact {
  margin-left: 28px;
}
#header .header_contact a {
  color: #fff;
  background-image: url(../images/common/button_green.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 147px;
  height: 47px;
  font-size: 15px;
}
#header .header_contact a:before {
  content: "";
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1LjE4IDcuNCI+PHBvbHlsaW5lIHBvaW50cz0iMC43IDAuNzEgMy43NiAzLjcxIDAuODQgNi43IiBzdHlsZT0iZmlsbDpub25lO3N0cm9rZTojZmZmO3N0cm9rZS1taXRlcmxpbWl0OjEwO3N0cm9rZS13aWR0aDoycHgiLz48L3N2Zz4=");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 6px;
  height: 9px;
  display: inline-block;
  margin: 2px 4px 0 0;
}
#header .header_tel {
  margin-left: 20px;
  line-height: 1;
}
#header .header_tel p {
  font-size: 23px;
  margin-bottom: 2px;
}
#header .header_tel p:before {
  content: "";
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxOC40IDEzLjQ4Ij48cGF0aCBkPSJNNC4yLDUuNDguNTYsNi4xQy4yLDYuMTQsMCw1Ljk0LDAsNS41NCwwLDQuNjYuMTIsMi43NCwxLjA4LDIsMi43Ni43LDUsMCw5LjIsMHM2LjQ0LjcsOC4xMiwyYzEsLjc0LDEuMDgsMi42NiwxLjA4LDMuNTQsMCwuNC0uMi42LS41Ni41NkwxNC4yLDUuNDhjLS40Mi0uMDYtLjM4LS40Mi0uMjYtLjc0bC44Mi0yLjEySDEyLjYyVjMuOWMwLDEuNC45LDIuNDQsMi4zOCwzLjg4YTYuMyw2LjMsMCwwLDEsMS44NCw0Ljc2YzAsLjY0LS4yNC45NC0uOTIuOTRIMi40OGMtLjY4LDAtLjkyLS4zLS45Mi0uOTRBNi4zLDYuMywwLDAsMSwzLjQsNy43OEM0Ljg4LDYuMzQsNS43OCw1LjMsNS43OCwzLjlWMi42MkgzLjY0bC44MiwyLjEyYy4xMi4zMi4xNi42Ni0uMjYuNzRNMTIuNTYsOUEzLjM2LDMuMzYsMCwxLDAsOS4yLDEyLjM4LDMuMzUsMy4zNSwwLDAsMCwxMi41Niw5TTcuNSw0LjU0aDMuNFYyLjYySDcuNVoiIHN0eWxlPSJmaWxsOiM2ZTQ2MjEiLz48L3N2Zz4=");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 19px;
  height: 15px;
  display: inline-block;
  margin: 0 2px 1px 0;
}
#header .header_tel span {
  font-size: 12px;
  margin-left: 23px;
}

/******************************/
/**********フロント************/
/*****************************/
.logged-in .plant {
  top: 30px;
}

.plant {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 7;
  width: 30%;
  min-width: 570px;
}
.plant img {
  width: 100%;
  height: auto;
}

.front_page_section h2.head {
  font-weight: 700;
  font-size: 24px;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.16em;
}
.front_page_section h2.head::after {
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 95px;
  height: 5px;
  background-image: url(../images/common/under_line.png);
  display: block;
  margin: 18px auto 0;
}

#featured {
  background-image: url(../images/front/featured.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 540px;
  position: relative;
  top: -90px;
  z-index: 5;
  overflow: hidden;
}
#featured .phrase {
  position: absolute;
  right: 0;
  margin-right: calc(50vw - 715px);
  top: 169px;
}
#featured .phrase img {
  -o-object-fit: contain;
     object-fit: contain;
}
#featured .logo_wrap {
  position: absolute;
  top: calc(50% + 65px);
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 35%;
}
#featured .logo_wrap .logo_img {
  position: absolute;
  top: calc(50% + 34px);
  left: calc(50% + 9px);
  transform: translate(-50%, -50%);
  width: 80%;
}

#news .news_wrap {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}
#news .news_content {
  box-shadow: 0px -2px 4px rgba(114, 110, 106, 0.24);
  background-color: #f5f2e9;
  position: relative;
  z-index: 6;
  padding: 56px 15% 48px;
}
#news h2 {
  font-size: 24px;
  margin-right: 80px;
}
#news .news_list {
  width: 100%;
  flex: 1;
}
#news .news_list > a {
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  align-items: flex-start;
}
#news .news_list .category {
  background-color: #f2e0b3;
  line-height: 1;
  padding: 3px 8px;
  min-width: 90px;
  text-align: center;
  font-size: 14px;
}
#news .news_list .date {
  min-width: 80px;
  margin-left: 14px;
  margin-right: 14px;
  margin-top: -2px;
}
#news .news_list .title {
  margin-top: -2px;
}
#news .news_list > div {
  margin-top: 40px;
}
#news .osaka {
  border-radius: 20px;
  position: absolute;
  background-color: #f2e0b3;
  max-width: 472px;
  width: 100%;
  right: 45px;
  top: -148px;
  z-index: 5;
  box-shadow: 0px -2px 4px rgba(114, 110, 106, 0.24);
  font-size: 16px;
  padding: 16px 18px 20px;
}
#news .osaka p {
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  margin-left: 10px;
}
#news .osaka a {
  background-color: #fff;
  border-radius: 10px;
  letter-spacing: -0.02em;
  width: 137px;
  height: 34px;
  text-align: center;
  margin-bottom: 12px;
  line-height: 2.2;
}

#office_features {
  padding: 68px 30px 90px;
}
#office_features .content_wrap {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}
#office_features h2 {
  margin-bottom: 53px;
}
#office_features h3 {
  margin-bottom: 36px;
  font-size: 22px;
  letter-spacing: 0.08em;
}
#office_features .text {
  margin-left: 68px;
}
#office_features .text > p {
  letter-spacing: -0.02em;
  font-size: 16px;
  line-height: 2.171875;
}
#office_features .text .flex {
  margin-top: 40px;
}

#introduction {
  padding: 71px 30px 140px;
  background-color: #f5f2e9;
}
#introduction .content_wrap {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
}
#introduction .content_wrap .photo img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#introduction h2 {
  margin-bottom: 86px;
}
#introduction h3 {
  margin-bottom: 37px;
  font-size: 22px;
  letter-spacing: 0.08em;
}
#introduction .photo {
  margin-left: auto;
}
#introduction .text > p {
  letter-spacing: -0.02em;
  font-size: 16px;
  line-height: 2.171875;
}
#introduction .text .flex {
  margin-top: 40px;
}

#field {
  padding: 83px 30px 94px;
  background-color: #dfeddf;
}
#field .content_wrap {
  width: 100%;
  max-width: 1016px;
  margin: 0 auto;
}
#field h2 {
  margin-bottom: 45px;
}
#field h3 {
  letter-spacing: 0.08em;
  font-size: 20px;
  margin-bottom: 24px;
}
#field a:not(.more) {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 243px;
  height: 120px;
  background-color: #fff;
  position: relative;
}
#field a:not(.more):before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 29px 29px 0 0;
  border-color: #9ebd8b transparent transparent transparent;
}
#field a:not(.more) > p {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
  text-align: center;
}
#field a:not(.more) > span {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-align: center;
}
#field .field_person {
  margin-bottom: 58px;
}
#field .field_corporate a:not(.more):before {
  border-top-color: #879ccc;
}
#field .field_corporate > div:nth-child(2) {
  border: none;
  align-items: flex-end;
  margin-left: auto;
}
#field .field_corporate > div:nth-child(2) > div {
  border: none;
}
#field .field_wrap > div {
  border-bottom: 1px solid #bf9d7e;
  padding: 4px 0;
}
#field .field_wrap > div:nth-child(-n+4) {
  border-top: 1px solid #bf9d7e;
}
#field .field_wrap > div > div {
  border-right: 1px solid #bf9d7e;
  padding: 0 4px;
}
#field .field_wrap > div:nth-child(4n+1) > div {
  border-left: 1px solid #bf9d7e;
}
#field .field_wrap a.yellow_green::before {
  border-top-color: #d9e084;
}
#field .field_wrap a.blue_green::before {
  border-top-color: #8bcfbf;
}

#map {
  background-color: #f5f2e9;
  padding: 116px 30px 73px;
}
#map .content_wrap {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}
#map h2 {
  margin-bottom: 88px;
}
#map .name {
  font-size: 25px;
  margin-bottom: 22px;
}
#map .address > div {
  font-size: 16px;
  margin-bottom: 9px;
  letter-spacing: -0.02em;
}
#map .address > div.code {
  margin-bottom: 0;
}
#map .address > div.time {
  margin-bottom: 40px;
}
#map .google_map_wrap {
  width: 100%;
  max-width: 570px;
  border: 1px solid #fff;
  margin-left: auto;
}

/******************************/
/**********下層ページ共通ヘッダー************/
/*****************************/
#page_featured {
  height: 260px;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-repeat: repeat-x;
  background-size: auto;
  position: relative;
  overflow: hidden;
}
#page_featured.introduction {
  background-image: url(../images/introduction/head_bg.png);
}
#page_featured.flow {
  background-image: url(../images/flow/head_bg.png);
}
#page_featured.price {
  background-image: url(../images/price/head_bg.png);
}
#page_featured.access {
  background-image: url(../images/access/head_bg.png);
}
#page_featured.contact {
  background-image: url(../images/contact/head_bg.png);
}
#page_featured.field {
  background-image: url(../images/field/head_bg.png);
}
#page_featured.column {
  background-image: url(../images/column/head_bg.png);
}
#page_featured.privacypolicy {
  background-image: url(../images/privacypolicy/head_bg.png);
}
#page_featured > img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#page_featured h1 {
  font-size: 25px;
  line-height: 1.672;
  letter-spacing: 0.04em;
  position: relative;
  top: -18px;
  left: -4px;
}
#page_featured h2 {
  font-size: 25px;
  line-height: 1.672;
  letter-spacing: 0.04em;
  position: relative;
  top: -18px;
  left: -4px;
}

.page_section h2.head {
  font-weight: 700;
  font-size: 24px;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.16em;
  margin-bottom: 57px;
}
.page_section h2.head::after {
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 95px;
  height: 5px;
  background-image: url(../images/common/under_line.png);
  display: block;
  margin: 18px auto 0;
}
.page_section h3 {
  font-size: 22px;
  line-height: 1.9;
  letter-spacing: 0.08em;
}

.lower_page {
  padding: 86px 30px 120px;
}
.lower_page .content_wrap {
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
}
.lower_page p {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.1em;
}

#page_links .content {
  margin-top: -43px;
  position: relative;
  z-index: 2;
  height: 43px;
  overflow-y: hidden;
}
#page_links a {
  display: block;
  text-align: center;
  font-size: 13px;
  line-height: 1.75;
  letter-spacing: 0.1em;
  border-radius: 20px;
  background-color: #fff;
  width: 170px;
  height: 78px;
  padding-top: 12px;
}
#page_links.introduction a, #page_links.flow a, #page_links.price a, #page_links.access a, #page_links.contact a, #page_links.column a, #page_links.field_child a {
  margin-left: 14px;
}
#page_links.introduction a:nth-child(1), #page_links.flow a:nth-child(1), #page_links.price a:nth-child(1), #page_links.access a:nth-child(1), #page_links.contact a:nth-child(1), #page_links.column a:nth-child(1), #page_links.field_child a:nth-child(1) {
  margin-left: 0;
}

/******************************/
/**********弁護士紹介************/
/*****************************/
#intro_greeting {
  padding: 86px 30px 75px;
}
#intro_greeting .content_wrap {
  width: 100%;
  max-width: 808px;
  margin: 0 auto;
}
#intro_greeting p {
  max-width: 527px;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.1em;
}
#intro_greeting .photo {
  margin-left: auto;
}
#intro_greeting h3 {
  margin-bottom: 30px;
}
#intro_greeting .text p:last-child {
  margin-top: 32px;
}
#intro_greeting .greeting-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 64px;
       column-gap: 64px;
  max-width: 1061px;
  margin: 0 auto;
}
#intro_greeting .greeting-wrap .photo {
  margin-right: auto;
  margin-bottom: 16px;
  aspect-ratio: 178/275;
}
#intro_greeting .greeting-wrap .photo img {
  width: 178px;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 178/275;
}
#intro_greeting .greeting-wrap h3 {
  margin-bottom: 16px;
  text-align: center;
  font-size: 32px;
}
#intro_greeting .greeting-wrap .text p:last-child {
  margin-top: 0;
}
#intro_greeting .greeting-wrap .greeting_title {
  margin-top: 32px;
}
#intro_greeting .greeting-wrap h2 {
  margin-bottom: 16px;
}
#intro_greeting .greeting_content {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  justify-content: center;
}

#intro_career {
  padding: 63px 30px 74px;
  background-color: #f5f2e9;
}
#intro_career p {
  font-size: 16px;
  line-height: 3.171875;
  letter-spacing: 0.1em;
  border-top: solid 1px #6e4621;
}
#intro_career p:first-child {
  border: none;
}

/******************************/
/**********解決までの流れ************/
/*****************************/
#flow_consultation h3 {
  margin-bottom: 20px;
}

#flow_request h3 {
  margin-bottom: 20px;
}

#flow_negotiations h3 {
  margin-bottom: 20px;
}

#flow_procedure h3 {
  margin-bottom: 20px;
}

/******************************/
/**********弁護士費用************/
/*****************************/
#price_start h3 {
  margin-bottom: 20px;
}

#price_reward h3 {
  margin-bottom: 20px;
}

#price_costs h3 {
  margin-bottom: 20px;
}

#price_allowance h3 {
  margin-bottom: 20px;
}

#price_standard h3 {
  margin-bottom: 20px;
}
#price_standard h3:last-of-type {
  margin-top: 30px;
}
#price_standard p span {
  display: inline-block;
  width: 240px;
}

/******************************/
/**********アクセス************/
/*****************************/
#access_location .google_map {
  margin-top: 60px;
}

#access_transportation p {
  margin-bottom: 20px;
}

/******************************/
/**********コンタクト************/
/*****************************/
#contact_method h3 {
  margin-top: 36px;
}
#contact_method h3:first-of-type {
  margin-top: 0;
}

#contact_form .contact_form .head {
  min-width: 230px;
  width: 230px;
  text-align: right;
  padding: 10px 20px;
  justify-content: flex-end;
}
#contact_form .contact_form .text {
  width: 100%;
  padding: 10px 20px;
}
#contact_form .contact_form > div:nth-child(1) input {
  max-width: 340px;
}
#contact_form .contact_form > div:nth-child(2) input, #contact_form .contact_form > div:nth-child(3) input, #contact_form .contact_form > div:nth-child(4) input, #contact_form .contact_form > div:nth-child(6) input {
  max-width: 219px;
}
#contact_form .contact_form .address_wrap .title {
  min-width: 99px;
}
#contact_form .contact_form .address_wrap .head {
  min-width: 130px;
  width: 130px;
}
#contact_form .contact_form .address_wrap .text > span {
  width: 100%;
}
#contact_form .contact_form .address_wrap > div:last-of-type {
  width: 100%;
}
#contact_form .contact_form .address_wrap > div:last-of-type > div:first-of-type .head {
  border-top: none;
}
#contact_form .contact_form .address_wrap > div:last-of-type > div:first-of-type .text {
  border-top: none;
}
#contact_form .contact_form input[type=text],
#contact_form .contact_form input[type=email],
#contact_form .contact_form input[type=number],
#contact_form .contact_form input[type=date],
#contact_form .contact_form input[type=tel],
#contact_form .contact_form textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  background-color: #fff;
  border-radius: 0;
  border: 1px solid #6e4621;
  font-size: 16px;
  letter-spacing: 0.1em;
  padding: 10px 18px;
}
#contact_form .contact_form select {
  background-color: #fff;
  border-radius: 0;
  border: 1px solid #6e4621;
  font-size: 16px;
  letter-spacing: 0.1em;
  padding: 10px 18px;
}
#contact_form .contact_form .req {
  margin: 0 0 0 8px;
}
#contact_form .submit_wrap {
  text-align: center;
  margin-top: 20px;
}
#contact_form .submit_wrap > input {
  font-size: 18px;
  letter-spacing: 0.1em;
  padding: 10px 18px;
}
#contact_form .wpcf7-spinner {
  display: block;
  margin: 4px auto 0;
}

/******************************/
/**********記事一覧************/
/*****************************/
#news_contents .content_wrap {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
#news_contents .content {
  padding: 86px 30px 120px;
}
#news_contents .news_list > a {
  letter-spacing: -0.02em;
  margin-bottom: 15px;
  align-items: flex-start;
}
#news_contents .news_list .category {
  background-color: #f2e0b3;
  line-height: 1;
  padding: 3px 8px;
  min-width: 90px;
  text-align: center;
  font-size: 14px;
}
#news_contents .news_list .date {
  min-width: 80px;
  margin-left: 14px;
  margin-right: 14px;
  margin-top: -2px;
}
#news_contents .news_list .title {
  margin-top: -2px;
}
#news_contents .news_list > div {
  margin-top: 40px;
}

#single_content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 86px 30px 120px;
}
#single_content h1 {
  font-weight: 400;
  margin-bottom: 16px;
  font-size: 30px;
}
#single_content .content_meta {
  margin-bottom: 20px;
}
#single_content .content_meta .category {
  background-color: #f2e0b3;
  line-height: 1;
  padding: 3px 8px;
  min-width: 80px;
  text-align: center;
}
#single_content .content_meta .date {
  min-width: 72px;
  margin-left: 14px;
  margin-right: 23px;
}
#single_content .single_content p {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.1em;
  margin-bottom: 32px;
}
#single_content .single_content h2, #single_content .single_content h3 {
  margin: 2em 0 1em;
}
#single_content .to_news {
  margin-top: 80px;
}

.nav-links {
  margin-top: 30px;
  text-align: center;
}

/******************************/
/**********プライバシーポリシー************/
/*****************************/
#privacypolicy_section h3 {
  margin-top: 36px;
}
#privacypolicy_section h3:first-of-type {
  margin-top: 0;
}
#privacypolicy_section ul {
  padding-left: 1.5em;
  padding-top: 12px;
}
#privacypolicy_section li {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.1em;
}
#privacypolicy_section a {
  text-decoration: underline;
}

/******************************/
/**********フッター************/
/*****************************/
#footer {
  padding: 61px 30px;
}
#footer .footer_wrap {
  width: 100%;
  max-width: 956px;
  margin: 0 auto;
}
#footer .footer_meta {
  position: relative;
  margin-right: auto;
}
#footer .footer_meta > a {
  display: block;
  position: relative;
  margin: -7px 0 18px -74px;
}
#footer .footer_meta .code {
  font-size: 14px;
  letter-spacing: -0.02em;
}
#footer .footer_meta .add {
  font-size: 14px;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
#footer .footer_pr {
  background-color: #c9e8b5;
  padding: 28px 40px 30px 45px;
}
#footer .footer_pr > p {
  font-size: 18.55px;
}
#footer .footer_pr .from_tel_wrap {
  margin-top: 18px;
  margin-right: 60px;
}
#footer .footer_pr .from_tel_wrap > p:nth-child(1) {
  line-height: 1;
  font-size: 33px;
  margin-bottom: 4px;
  margin-top: 6px;
  white-space: nowrap;
}
#footer .footer_pr .from_tel_wrap > p:nth-child(1) > img {
  margin-bottom: 2px;
}
#footer .footer_pr .from_tel_wrap > p:nth-child(2) {
  white-space: nowrap;
  font-size: 15px;
}
#footer .footer_pr .from_tel_wrap img {
  margin-bottom: 4px;
}
#footer .footer_pr .from_form_wrap {
  margin-top: 18px;
}
#footer .footer_pr .from_form_wrap a {
  color: #62ac35;
  background-image: url(../images/common/button_white.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 211px;
  height: 50px;
  font-size: 15px;
}
#footer .footer_pr .from_form_wrap a:before, #footer .footer_pr .from_form_wrap a:after {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1LjE4IDcuNCI+PHBvbHlsaW5lIHBvaW50cz0iMC43IDAuNzEgMy43NiAzLjcxIDAuODQgNi43IiBzdHlsZT0iZmlsbDpub25lO3N0cm9rZTojNjJhYzM1O3N0cm9rZS1taXRlcmxpbWl0OjEwO3N0cm9rZS13aWR0aDoycHgiLz48L3N2Zz4=");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 7px;
  height: 8px;
  display: inline-block;
  margin: 3px 4px 0 0;
}
#footer .footer_pr .from_form_wrap a:before {
  content: "";
}
#footer .footer_copyright {
  font-size: 10px;
  letter-spacing: -0.02em;
  padding: 0 10px;
  margin-top: 12px;
}
#footer .footer_menu_list,
#footer .sns_list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  max-width: 182px;
  margin-left: auto;
}
#footer .footer_menu_list > li {
  min-width: 95px;
  margin-right: 18px;
}
#footer .footer_menu_list > li:nth-child(2), #footer .footer_menu_list > li:nth-child(4) {
  min-width: auto;
  margin-right: 0;
}
#footer .footer_menu_list > li a {
  font-size: 12px;
  letter-spacing: -0.02em;
}
#footer .footer_menu_list > li a:before {
  content: "";
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1LjE4IDcuNCI+PHBvbHlsaW5lIHBvaW50cz0iMC43IDAuNzEgMy43NiAzLjcxIDAuODQgNi43IiBzdHlsZT0iZmlsbDpub25lO3N0cm9rZTojOGViMDQ2O3N0cm9rZS1taXRlcmxpbWl0OjEwO3N0cm9rZS13aWR0aDoycHgiLz48L3N2Zz4=");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 6px;
  height: 8px;
  display: inline-block;
  margin: 0 4px 1px 0;
}
#footer .footer_menu_list .sub-menu {
  display: none;
}
#footer .sns_list,
#footer .banner_list {
  list-style: none;
}
#footer .sns_list li {
  display: inline-block;
  padding: 20px 5px 0px;
}
#footer .sns_list li img {
  max-height: 40px;
}
#footer .banner_list {
  display: flex;
  justify-content: right;
}
#footer .banner_list li {
  padding-top: 20px;
}

/***********************************/
/**********アニメーション************/
/**********************************/
@-webkit-keyframes slideInDown {
  0% {
    visibility: visible;
    transform: translate3d(0, -100%, 0);
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes slideInDown {
  0% {
    visibility: visible;
    transform: translate3d(0, -100%, 0);
  }
  to {
    transform: translateZ(0);
  }
}
@-webkit-keyframes slideInUp {
  0% {
    visibility: visible;
    transform: translateZ(0);
  }
  to {
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideInUp {
  0% {
    visibility: visible;
    transform: translateZ(0);
  }
  to {
    transform: translate3d(0, -100%, 0);
  }
}
/***********************************/
/**********メディアクエリ************/
/**********************************/
@media screen and (max-width: 1999px) {
  .plant {
    left: calc(10vw - 285px);
  }
}
@media screen and (max-width: 1450px) {
  #featured .phrase {
    margin-right: 10px;
  }
}
@media screen and (min-width: 1280px) {
  .plant.sp {
    display: none;
  }
}
@media screen and (max-width: 1279px) {
  .plant {
    min-width: 400px;
    left: -80px;
  }
  .plant.pc {
    display: none;
  }
  .plant.sp {
    top: -30px;
  }
  #header .header_contact {
    max-width: 147px;
    flex: 1;
  }
  #footer {
    padding-left: 25px;
    padding-right: 25px;
  }
  #footer .footer_meta {
    margin-left: 60px;
    margin-right: 30px;
  }
}
@media screen and (max-width: 1149px) {
  #header .header_logo_wrap img {
    max-width: 215px;
    min-width: unset;
  }
  #header .header_menu_list {
    max-width: 340px;
    min-width: 340px;
  }
  #featured {
    height: 636px;
  }
  #featured .logo_wrap {
    top: calc(50% + 65px);
  }
  #featured .phrase {
    top: 108px;
    margin-right: -41px;
    width: 35%;
  }
  #featured .phrase img {
    width: 100%;
    height: auto;
  }
  #field .content_wrap {
    max-width: 644px;
  }
  #field a:not(.more) {
    width: 150px;
    height: 100px;
  }
  #field a:not(.more):before {
    border-width: 20px 20px 0 0;
  }
  #field a:not(.more) > p {
    font-size: 16px;
    margin-bottom: 0;
  }
  #field .field_corporate > div:nth-child(2) {
    margin-top: 30px;
  }
  #footer .footer_pr_wrap {
    max-width: 49%;
    margin-left: auto;
  }
}
@media screen and (max-width: 1000px) {
  #header .header_tel {
    display: none;
  }
}
/****************************/
/**********PCのみ************/
/***************************/
@media screen and (min-width: 769px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
  .only_sp {
    display: none;
  }
  #featured .phrase .for_sp {
    display: none;
  }
  #news .osaka a:nth-child(2), #news .osaka a:nth-child(5) {
    margin-left: 12px;
    margin-right: 12px;
  }
  #news .news_list {
    margin-top: 7px;
  }
  #field .field_person .second {
    margin-left: -8px;
  }
  #introduction .photo {
    margin-left: 58px;
    width: 150px;
  }
  #map .address {
    margin-right: auto;
    flex-basis: 380px;
  }
  #map .google_map_wrap {
    margin-left: 30px;
    flex-basis: calc(100% - 410px);
  }
  #page_links.introduction a:nth-child(2) {
    margin-left: 14px;
    margin-right: 14px;
  }
}
/****************************/
/**********スマホ************/
/***************************/
@media screen and (max-width: 768px) {
  .only_pc {
    display: none;
  }
  .sp_none {
    display: none;
  }
  .sp_column {
    flex-direction: column;
  }
  .sp_column.align_items_center {
    justify-content: center;
  }
  .plant {
    min-width: 272px;
    left: -80px;
  }
  .plant.sp {
    top: -30px;
  }
  .lower_page {
    padding: 86px 30px 86px;
  }
  .price_wrap {
    margin-bottom: 16px;
  }
  .price_wrap span {
    display: block;
    width: auto;
  }
  #page_links a.only_pc {
    display: none;
  }
  #header {
    height: 60px;
    padding: 0;
  }
  #header h1 {
    padding-left: 11px;
  }
  #header .menu_btn {
    display: flex;
    height: 60px;
    width: 60px;
  }
  #header .menu_btn span,
#header .menu_btn span:before,
#header .menu_btn span:after {
    content: "";
    display: block;
    height: 2px;
    width: 25px;
    border-radius: 3px;
    background-color: #6e4621;
    position: absolute;
    transition: all 0.4s ease;
  }
  #header .menu_btn span:before {
    bottom: 8px;
  }
  #header .menu_btn span:after {
    top: 8px;
  }
  #header .header_wrap_sp {
    position: relative;
  }
  .header_menu_wrap_sp {
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 1s;
  }
  .header_menu_wrap_sp ul {
    list-style: none;
  }
  .header_menu_wrap_sp li {
    border-bottom: 1px solid #6e4621;
  }
  .header_menu_wrap_sp li:last-of-type {
    border-bottom: none;
  }
  .header_menu_wrap_sp a {
    display: block;
    padding: 16px 20px;
  }
  .open_menu #hamburger span {
    background-color: rgba(110, 70, 33, 0);
    transition: all 0.1s ease;
  }
  .open_menu #hamburger span:before {
    bottom: 0;
    transform: rotate(45deg);
  }
  .open_menu #hamburger span:after {
    top: 0;
    transform: rotate(-45deg);
  }
  .open_menu .header_menu_wrap_sp {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease;
  }
  .front_page_section h2.head {
    font-size: 20px;
  }
  .front_page_section h2.head:after {
    margin: 12px auto 0;
  }
  #featured {
    height: 550px;
  }
  #featured .logo_wrap {
    top: calc(50% + 50px);
    max-width: 267px;
    width: 100%;
  }
  #featured .logo_wrap .logo_img {
    width: 135%;
    height: auto;
    max-width: 280px;
  }
  #featured .logo_wrap .bg_img {
    width: 100%;
    height: auto;
  }
  #featured .phrase {
    margin-right: -36px;
    top: 108px;
    width: auto;
  }
  #featured .phrase img {
    width: 203px;
  }
  #featured .phrase .for_pc {
    display: none;
  }
  #news {
    padding: 0 22px;
  }
  #news h2 {
    font-size: 20px;
    margin: 0 auto 20px;
    text-align: center;
  }
  #news .osaka {
    right: 0;
    left: 0;
    margin: auto;
    top: -180px;
  }
  #news .osaka a {
    width: 45%;
    height: 29px;
    font-size: 14px;
    margin-left: auto;
    margin-right: auto;
    line-height: 2;
  }
  #news .news_content {
    padding: 40px 0;
    margin: 0 -22px;
  }
  #news .news_list {
    padding: 0 30px 0 42px;
  }
  #news .news_list a {
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  #news .news_list a .title {
    width: 100%;
    margin-top: 4px;
  }
  #office_features {
    padding: 38px 0;
  }
  #office_features .photo img {
    width: 100%;
    height: auto;
  }
  #office_features .text {
    margin: 40px auto 0;
    padding: 0 40px;
  }
  #office_features h3 {
    font-size: 18px;
    letter-spacing: 0em;
    margin-bottom: 20px;
  }
  #introduction {
    padding: 38px 0;
  }
  #introduction h2 {
    margin-bottom: 29px;
  }
  #introduction .content {
    padding: 0 40px;
  }
  #introduction .photo {
    margin: 0 auto 40px;
    text-align: center;
  }
  #introduction .photo img {
    width: 100%;
    max-width: 140px;
    height: auto;
  }
  #introduction .text {
    order: 3;
  }
  #field {
    padding: 38px 0 43px;
  }
  #field h2 {
    margin-bottom: 24px;
  }
  #field h3 {
    font-size: 14px;
    margin-bottom: 8px;
  }
  #field .content_wrap {
    max-width: none;
    padding: 0 22px;
  }
  #field .second {
    margin-top: -1px;
  }
  #field a:not(.more) {
    width: calc(50vw - 32px);
    height: 100px;
  }
  #field a:not(.more):before {
    border-width: 16px 16px 0 0;
  }
  #field a:not(.more) > p {
    font-size: 14px;
    margin-bottom: 0;
  }
  #field a:not(.more) > span {
    font-size: 8px;
  }
  #field .field_corporate > div:nth-child(2) {
    margin-top: 30px;
  }
  #field .field_wrap > div:nth-child(-n+4) {
    border-top: none;
  }
  #field .field_wrap > div:nth-child(-n+2) {
    border-top: 1px solid #bf9d7e;
  }
  #field .field_wrap > div:nth-child(4n+1) > div {
    border-left: none;
  }
  #field .field_wrap > div:nth-child(odd) > div {
    border-left: 1px solid #bf9d7e;
  }
  #map {
    padding: 38px 40px 43px;
  }
  #map h2 {
    margin-bottom: 40px;
  }
  #map .name {
    font-size: 18px;
  }
  #map .google_map_wrap {
    height: 200px;
    overflow: hidden;
    max-width: none;
  }
  #map .address > div .time {
    margin-bottom: 30px;
  }
  #map .content > .only_sp {
    width: 100%;
    margin-top: 20px;
  }
  .page_section h2.head {
    font-size: 20px;
  }
  .page_section h2.head:after {
    margin: 12px auto 0;
  }
  .page_section h3 {
    font-size: 18px;
  }
  .lower_page p {
    font-size: 14px;
    line-height: 1.5714285714;
  }
  /******************************/
  /**********弁護士紹介************/
  /*****************************/
  #intro_greeting .greeting-wrap {
    row-gap: 40px;
    -moz-column-gap: 0px;
         column-gap: 0px;
    grid-template-columns: none;
  }
  #intro_greeting .greeting_content {
    gap: 0;
  }
  #intro_greeting .text {
    order: 0;
  }
  #intro_greeting p {
    font-size: 14px;
    line-height: 1.5714285714;
    letter-spacing: -0.02em;
  }
  #intro_greeting .photo {
    margin-right: auto;
    margin-bottom: 20px;
  }
  #intro_career p {
    font-size: 14px;
    line-height: 2;
    letter-spacing: -0.01em;
  }
  #intro_career p:first-child {
    border: none;
  }
  /******************************/
  /**********記事一覧************/
  /*****************************/
  #news_contents .news_list a {
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  #news_contents .news_list a .title {
    width: 100%;
    margin-top: 4px;
  }
  /******************************/
  /**********弁護士費用************/
  /*****************************/
  #price_standard p {
    margin-bottom: 16px;
  }
  #price_standard p span {
    display: block;
    width: auto;
  }
  /******************************/
  /**********お問い合わせ************/
  /*****************************/
  #contact_form .contact_form .head {
    min-width: auto;
    width: 100%;
    text-align: left;
    justify-content: flex-start;
    padding: 10px 0 0;
  }
  #contact_form .contact_form .text {
    padding: 10px 0;
  }
  #contact_form .contact_form .address_wrap {
    border-left: none;
  }
  #contact_form .contact_form .address_wrap .title {
    width: 100%;
  }
  #contact_form .contact_form .address_wrap .head {
    min-width: auto;
    width: 100%;
  }
  #contact_form .contact_form > div:last-child .head {
    border-bottom: none;
  }
  /******************************/
  /**********プライバシーポリシー************/
  /*****************************/
  #privacypolicy_section li {
    font-size: 14px;
    line-height: 1.5714285714;
  }
  #footer {
    padding: 25px 0;
  }
  #footer .footer_content {
    padding: 0 25px;
  }
  #footer .footer_meta {
    order: 2;
  }
  #footer .footer_pr {
    padding: 30px 18px;
  }
  #footer .footer_pr > p {
    font-size: 16px;
    text-align: center;
  }
  #footer .footer_pr .from_tel_wrap {
    margin-right: 0;
  }
  #footer .footer_pr .from_tel_wrap > p:nth-child(1) {
    font-size: 32px;
    text-align: center;
  }
  #footer .footer_pr .from_tel_wrap > p:nth-child(2) {
    font-size: 12px;
    margin-left: 31px;
    text-align: center;
  }
  #footer .footer_pr .from_form_wrap a {
    color: #62ac35;
    background-image: url(../images/common/button_white_SP.png);
    width: 253px;
    margin: auto;
  }
  #footer .footer_pr .from_form_wrap a:after {
    content: "";
    margin: 3px 0 0 4px;
  }
  #footer .footer_pr .from_form_wrap a:before {
    content: none;
  }
  #footer .footer_meta {
    margin: 60px 0 30px auto;
    width: 100%;
  }
  #footer .footer_meta > a {
    margin: 0 auto 18px;
    text-align: right;
  }
  #footer .footer_meta > a > img {
    width: 100%;
    height: auto;
    max-width: 400px;
  }
  #footer .footer_meta .footer_menu {
    display: none;
  }
  #footer .footer_pr_wrap {
    max-width: unset;
    margin: auto;
    width: 100%;
  }
  #footer .footer_copyright {
    text-align: center;
    padding-top: 4px;
    border-top: 1px solid #6e4621;
    width: 95%;
    margin: auto;
  }
}
/* 関連事例ショートコード */
#case_section a {
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  align-items: flex-start;
}

#case_section span.date {
  min-width: 80px;
  margin-left: 14px;
  margin-right: 14px;
  margin-top: -2px;
}

/*追記*/
.align-c {
  align-items: center;
}
/*# sourceMappingURL=style.css.map */