@charset "UTF-8";
@font-face {
  font-family: "Meiryo";
  src: url("../font/MEIRYO.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Meiryo";
  src: url("../font/MEIRYOB.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
html {
  font-size: 62.5%;
}

body {
  color: #333;
  background: #f6f6f6;
  line-height: 2;
  font-family: "Meiryo", "メイリオ", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", sans-serif;
  letter-spacing: 0.05rem;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  body {
    letter-spacing: 0.05rem;
    font-size: 1.7rem;
    line-height: 1.7;
  }
}
@media screen and (min-width: 769px) {
  body {
    max-width: 750px;
    margin: 0 auto;
    letter-spacing: 0.05rem;
    font-size: 2rem;
    line-height: 2;
  }
}

.sm_only {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .pc_only {
    display: none !important;
  }
  .sm_only {
    display: unset !important;
  }
}
.max-width {
  width: 100%;
  margin: 0 auto;
  display: block;
}

.flex {
  display: flex;
  justify-content: space-around;
}
@media screen and (max-width: 768px) {
  .flex {
    flex-wrap: wrap;
  }
}

.contents {
  padding: 40px 20px;
}
@media screen and (max-width: 768px) {
  .contents {
    width: 100%;
    margin: 0;
    padding: 20px 8px;
  }
}

.contents_title {
  line-height: 1.5;
  text-align: center;
  font-size: 3.5rem;
  margin: 0 0 20px;
  color: #fff;
  padding: 15px 0;
  background-color: #578b12;
}
.contents_title small {
  display: block;
}
@media screen and (max-width: 768px) {
  .contents_title {
    width: 100%;
    font-size: 2.2rem;
    line-height: 1.4;
    padding: 18px 4px;
    font-weight: bold;
    margin-bottom: 0;
    letter-spacing: 1.2px;
  }
}

.contents_title_nosub {
  line-height: 1.5;
  text-align: center;
  font-size: 3.5rem;
  margin: 0 0 80px;
  color: #fff;
  font-weight: bold;
  padding: 15px 0;
  background-color: #578b12;
}
.contents_title_nosub small {
  display: block;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .contents_title_nosub {
    font-size: 2.2rem;
    margin: 0 0 20px;
    padding: 15px 0;
  }
}

.contents_subtitle {
  position: relative;
  display: block;
  margin: 55px 0 28px;
  padding: 0 30px 0 50px;
}
.contents_subtitle::before {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f10d";
  font-size: 30px;
  color: #808080;
  margin: -40px -50px;
}
.contents_subtitle small {
  display: block;
}
@media screen and (max-width: 768px) {
  .contents_subtitle {
    font-size: 1.6rem;
    text-align: left;
    margin: 60px 10px 20px 20px;
    padding: 0;
  }
  .contents_subtitle::before {
    font-size: 22px;
    margin: -42px -9px;
  }
}

.contents_title_shortline {
  position: relative;
  padding: 1.5rem;
  font-size: 4.5rem;
  text-align: center;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 50px;
}
.contents_title_shortline::before {
  position: absolute;
  bottom: -10px;
  left: calc(50% - 30px);
  width: 60px;
  height: 5px;
  content: "";
  border-radius: 3px;
  background: #3d3d3d;
}
@media screen and (max-width: 768px) {
  .contents_title_shortline {
    font-size: 2.8rem;
    margin-bottom: 30px;
  }
}

.contents03 .contents_title {
  font-size: 2.8rem;
}
.contents03 .contents_title small {
  font-size: 1.6rem;
  margin-bottom: 6px;
}

header {
  margin: 0 auto;
  width: 100%;
}
header .flex {
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 10px 20px;
}
header .logo_left {
  display: inline-block;
  line-height: 0;
}
header .logo_left img {
  width: auto;
  max-height: 50px;
}
@media screen and (max-width: 768px) {
  header {
    width: 100%;
    background: #fff;
  }
  header .flex {
    gap: 10px;
    padding: 12px 12px;
    justify-content: center;
  }
  header .logo_left img {
    max-height: 35px;
  }
}

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

.action_area {
  background: #f7f1e4 url(../images/bg_diagonal.webp) repeat;
  position: relative;
  margin: 0 auto;
  padding: 20px 10px 30px;
}
@media screen and (min-width: 768px) {
  .action_area {
    padding: 20px 60px 30px;
  }
}
.action_area h1 {
  font-size: 3.5rem;
  color: #3596d2;
  font-weight: bold;
  padding: 15px 24px;
  border-radius: 7px;
  border: 2px solid #3596d2;
  backdrop-filter: blur(10px);
  text-align: center;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .action_area h1 {
    font-size: 1.7rem;
    padding: 8px 10px;
    margin-top: 8px;
  }
}
.action_area h2 {
  font-size: 3.5rem;
  font-weight: bold;
  margin: 20px 0 40px;
  text-align: center;
  line-height: 1.6;
  margin-left: 28px;
}
.action_area h2 span {
  color: #578b12;
}
@media screen and (max-width: 768px) {
  .action_area h2 span {
    border-radius: 2px;
    margin: 0 4px;
  }
}
@media screen and (max-width: 768px) {
  .action_area h2 {
    font-size: 1.8rem;
    line-height: 1.8;
    margin: 15px 0 20px;
  }
}

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

@media screen and (max-width: 768px) {
  .action_box {
    width: 100%;
  }
}

.action_btn_top {
  width: 100%;
  margin: 0 auto 0px;
  display: block;
}

.action_btn_box {
  gap: 20px;
  margin-bottom: 20px;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .action_btn_box {
    flex-direction: row;
  }
}

.box_tel {
  position: relative;
  z-index: 2;
}
.box_tel img {
  position: relative;
  z-index: 2;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .box_tel img {
    width: 100%;
  }
}

.box_mail img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .box_mail img {
    width: 100%;
  }
}

.benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  counter-reset: benefits-counter;
}
.benefits__item {
  background-color: white;
  width: 49%;
  margin-bottom: 50px;
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
  counter-increment: benefits-counter;
}
@media screen and (max-width: 768px) {
  .benefits__item {
    margin-bottom: 30px;
    width: 100%;
  }
}
.benefits__image {
  width: 100%;
  height: 215px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .benefits__image {
    height: 155px;
  }
}
.benefits__content {
  padding: 0 20px 45px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .benefits__content {
    padding: 0 20px 30px;
  }
}
.benefits__number {
  text-align: center;
  font-size: 12rem;
  line-height: 1.3;
  color: rgba(103, 111, 91, 0.0705882353);
  position: absolute;
  bottom: 0;
  right: 0;
}
.benefits__number::before {
  content: "0" counter(benefits-counter);
  display: block;
}
.benefits__title {
  color: #578b12;
  line-height: 1.5;
  font-size: 2.8rem;
  margin: 30px 0;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .benefits__title {
    font-size: 2.4rem;
    margin-bottom: 15px;
  }
}
.benefits__description small {
  display: block;
  margin-top: 6px;
}
.benefits span {
  color: #e07a00;
  font-weight: bold;
}

.case-cards {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
}
.case-cards__item {
  background-color: white;
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
  padding: 30px 40px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .case-cards__item {
    padding: 20px;
    margin-bottom: 20px;
  }
}
.case-cards__title {
  color: #578b12;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #efefef;
}
@media screen and (max-width: 768px) {
  .case-cards__title {
    font-size: 2rem;
    margin-bottom: 12px;
  }
}
.case-cards__overview {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #555;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .case-cards__overview {
    font-size: 1.5rem;
  }
}

.case-table-wrap {
  margin-bottom: 20px;
}
.case-table__header-icons {
  display: flex;
  align-items: flex-end;
}
.case-table__icon-cell {
  text-align: center;
}
.case-table__icon-cell--label {
  width: 26%;
  flex-shrink: 0;
}
.case-table__icon-cell--before, .case-table__icon-cell--after {
  width: 37%;
  flex-shrink: 0;
}
.case-table__icon-cell img {
  display: block;
  width: auto;
  height: 100px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .case-table__icon-cell img {
    height: 60px;
  }
}
.case-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.case-table th,
.case-table td {
  border: 1px solid #e0e0e0;
  padding: 12px 8px;
  text-align: center;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .case-table th,
  .case-table td {
    padding: 10px 4px;
  }
}
.case-table thead th {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .case-table thead th {
    font-size: 1.3rem;
  }
}
.case-table__label {
  width: 18%;
  background-color: #f0f4f6;
  color: #333;
  font-weight: bold;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .case-table__label {
    font-size: 1.4rem;
  }
}
thead .case-table__label {
  background-color: transparent;
  border-color: transparent;
}
thead .case-table__before {
  background-color: #9aa5ab;
}
thead .case-table__after {
  background-color: #d4a017;
}
tbody .case-table__before {
  width: 37%;
  font-size: 1.8rem;
  color: #666;
}
@media screen and (max-width: 768px) {
  tbody .case-table__before {
    font-size: 1.5rem;
  }
}
tbody .case-table__after {
  width: 37%;
  font-size: 2rem;
  font-weight: bold;
  color: #a67c00;
  background-color: #fff8e6;
}
@media screen and (max-width: 768px) {
  tbody .case-table__after {
    font-size: 1.6rem;
  }
}
tbody .case-table__after small {
  display: block;
  font-size: 1.1rem;
  font-weight: normal;
  color: #888;
  margin-top: 2px;
}

.flow_section {
  max-width: 1080px;
  margin: 80px auto;
  padding: 0 20px 60px;
}
.flow_section .contents_title_nosub {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .flow_section {
    margin: 0;
    padding: 20px 8px;
  }
}

.flow_box {
  background-color: white;
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: 85px minmax(0, 1fr);
  -moz-column-gap: 35px;
       column-gap: 35px;
  row-gap: 24px;
  align-items: start;
  max-width: 1000px;
  margin: 25px auto;
  padding: 30px 40px;
}
@media screen and (max-width: 768px) {
  .flow_box {
    grid-template-columns: 1fr;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 16px;
    margin: 30px 8px;
    padding: 30px 10px;
  }
}
.flow_box > .flow_left {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
}
@media screen and (max-width: 768px) {
  .flow_box > .flow_left {
    grid-column: 1;
    justify-self: center;
  }
}
.flow_box > .flow_right {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .flow_box > .flow_right {
    grid-column: 1;
    grid-row: 2;
  }
}
.flow_box > .flow_action,
.flow_box > .info,
.flow_box > .info_ok_cta {
  grid-column: 1/-1;
}
.flow_box .flow_action {
  justify-content: center;
  margin-top: 8px;
  margin-bottom: 0;
}

.flow_left {
  position: relative;
  width: 85px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .flow_left {
    width: 60px;
    display: block;
    margin: 0 auto;
    text-align: center;
  }
}
.flow_left p {
  width: 80px;
  height: 80px;
  border-radius: 40px;
  background: #578b12;
  color: #fff;
  font-size: 2.4rem;
  padding: 16px 0 0;
  line-height: 1.3;
  text-align: center;
  font-weight: bold;
}
.flow_left p span {
  display: block;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .flow_left p {
    width: 60px;
    height: 60px;
    font-size: 1.9rem;
    padding: 16px 0 0;
    line-height: 1;
  }
  .flow_left p span {
    font-size: 1.5rem;
  }
}

.flow_right {
  padding-top: 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .flow_right {
    margin: 10px 7px 18px;
  }
}
.flow_right_h {
  font-size: 3rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .flow_right_h {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 13px;
  }
}

.flow_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .flow_content {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
}

.flow_text {
  flex: 1;
  min-width: 0;
}
.flow_text p {
  margin: 0;
  line-height: 1.8;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .flow_text p {
    text-align: left;
  }
}

.flow_content img {
  flex-shrink: 0;
  width: 280px;
  max-width: 38%;
  height: auto;
  padding: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .flow_content img {
    width: 100%;
    max-width: 100%;
    padding: 10px 0 0;
  }
}

.accordion-area {
  list-style: none;
  width: 96%;
  margin: 65px auto;
}
@media screen and (max-width: 768px) {
  .accordion-area {
    margin: 30px auto;
  }
}
.accordion-area li {
  margin: 10px 0;
}
.accordion-area section {
  box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.1);
  border: 1px solid transparent;
  background: white;
  border-radius: 5px;
  margin-bottom: 25px;
}
.accordion-area .box {
  opacity: unset;
  display: none;
  background: #f5f5f5;
  margin: 0 3% 3%;
  padding: 2%;
  border-radius: 10px;
}

.title {
  position: relative;
  cursor: pointer;
  font-weight: 700;
  padding: 3% 3% 3% 85px;
  transition: all 0.5s ease;
}
.title::before, .title::after {
  position: absolute;
  content: "";
  width: 27px;
  height: 2px;
  background-color: #333;
  top: 48%;
  left: 30px;
}
.title::before {
  transform: rotate(0deg);
}
.title::after {
  transform: rotate(90deg);
}
.title.close::before {
  transform: rotate(45deg);
}
.title.close::after {
  transform: rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .title {
    padding: 3% 3% 3% 50px;
  }
  .title::before, .title::after {
    width: 15px;
    left: 15px;
  }
}

.cost-section {
  background-color: #e16500;
  padding: 1px 0 50px;
}
@media screen and (max-width: 768px) {
  .cost-section {
    padding-bottom: 30px;
  }
}

.cost_box img {
  display: block;
  margin: 0 auto 45px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .cost_box img {
    width: 98%;
  }
}

.cost-section__title {
  line-height: 1.45;
  letter-spacing: 0.04em;
  color: #fff;
  padding: 0 0 20px 0;
}
.cost-section__title::before {
  background: #fff;
}

.price-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  list-style: none;
  margin: 0 0 50px;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .price-highlight {
    gap: 10px;
    margin-bottom: 36px;
  }
}
.price-highlight__item {
  background: #fff;
  border: 2px solid #e5e5e5;
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
@media screen and (max-width: 768px) {
  .price-highlight__item {
    padding: 20px 12px;
  }
}
.price-highlight__item--zero {
  border-color: #578b12;
  background: #fff;
}
.price-highlight__item--success {
  grid-column: 1/-1;
  background: #fff;
  padding: 24px 28px;
}
@media screen and (max-width: 768px) {
  .price-highlight__item--success {
    padding: 20px 16px;
  }
}
.price-highlight__label {
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
  color: #555;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .price-highlight__label {
    font-size: 1.5rem;
  }
}
.price-highlight__value {
  display: block;
  color: #578b12;
  font-weight: bold;
  line-height: 1;
}
.price-highlight__value em {
  font-style: normal;
  font-size: 7.2rem;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 768px) {
  .price-highlight__value em {
    font-size: 5.6rem;
  }
}
.price-highlight__value small {
  font-size: 2.4rem;
  margin-left: 2px;
}
@media screen and (max-width: 768px) {
  .price-highlight__value small {
    font-size: 2rem;
  }
}
.price-highlight__text {
  display: block;
  font-size: 2.2rem;
  font-weight: bold;
  color: #333;
  line-height: 1.5;
}
.price-highlight__text em {
  font-style: normal;
  color: #ff822d;
  font-size: 3.6rem;
  margin: 0 4px;
}
@media screen and (max-width: 768px) {
  .price-highlight__text em {
    font-size: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .price-highlight__text {
    font-size: 1.8rem;
  }
}
.price-highlight__sub {
  display: block;
  margin-top: 6px;
  font-size: 1.6rem;
  font-weight: bold;
  color: #666;
}
@media screen and (max-width: 768px) {
  .price-highlight__sub {
    font-size: 1.4rem;
  }
}

.cost-guarantee {
  background: #f8faf4;
  border: 2px solid #578b12;
  border-radius: 16px;
  padding: 40px 36px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .cost-guarantee {
    padding: 28px 18px;
    border-radius: 12px;
  }
}
.cost-guarantee__title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.55;
  color: #333;
  margin: 0 0 20px;
}
.cost-guarantee__title span {
  color: #578b12;
  font-size: 1.15em;
}
@media screen and (max-width: 768px) {
  .cost-guarantee__title {
    font-size: 2rem;
  }
}
.cost-guarantee__lead {
  text-align: center;
  font-size: 1.7rem;
  line-height: 1.9;
  margin: 0 0 32px;
  color: #444;
}
@media screen and (max-width: 768px) {
  .cost-guarantee__lead {
    font-size: 1.5rem;
    text-align: left;
    margin-bottom: 24px;
  }
}
.cost-guarantee__subtitle {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin: 0 0 20px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .cost-guarantee__subtitle {
    font-size: 1.7rem;
    text-align: left;
  }
}
.cost-guarantee__reasons {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
.cost-guarantee__reason {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border-radius: 12px;
  padding: 20px 22px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 768px) {
  .cost-guarantee__reason {
    flex-direction: column;
    gap: 10px;
    padding: 16px;
  }
}
.cost-guarantee__reason-num {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  padding: 6px 12px;
  background: #578b12;
  color: #fff;
  font-weight: bold;
  font-size: 1.5rem;
  border-radius: 999px;
  line-height: 1.4;
}
.cost-guarantee__reason-text {
  margin: 0;
  line-height: 1.8;
  color: #333;
}
.cost-guarantee__reason-text strong {
  color: #578b12;
  font-weight: bold;
}
.cost-guarantee__arrow {
  text-align: center;
  color: #578b12;
  font-size: 2.4rem;
  margin: 22px 0 16px;
  line-height: 1;
}
.cost-guarantee__conclusion {
  background: #578b12;
  color: #fff;
  border-radius: 12px;
  padding: 28px 30px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .cost-guarantee__conclusion {
    padding: 22px 16px;
    text-align: left;
  }
}
.cost-guarantee__conclusion-text {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.9;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .cost-guarantee__conclusion-text {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
.cost-guarantee__zero {
  color: #fff45a;
  font-size: 1.35em;
  margin: 0 2px;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
}
.cost-guarantee__caution {
  margin: 24px 0 0;
  padding: 20px 22px;
  background: #fff;
  border: 2px solid #c45c11;
  border-radius: 12px;
}
@media screen and (max-width: 768px) {
  .cost-guarantee__caution {
    padding: 16px;
    margin-top: 20px;
  }
}
.cost-guarantee__caution-title {
  margin: 0 0 10px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #c45c11;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .cost-guarantee__caution-title {
    font-size: 1.6rem;
  }
}
.cost-guarantee__caution-text {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.85;
  color: #333;
}
@media screen and (max-width: 768px) {
  .cost-guarantee__caution-text {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}

.lawyer-profile {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .lawyer-profile {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 768px) {
  .lawyer-profile {
    padding: 0 60px;
  }
}
.lawyer-profile__header {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .lawyer-profile__header {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
  }
}
.lawyer-profile__photo {
  width: 260px;
  height: auto;
  flex-shrink: 0;
  border-radius: 8px;
  box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .lawyer-profile__photo {
    width: 140px;
  }
}
.lawyer-profile__name {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .lawyer-profile__name {
    font-size: 2rem;
    text-align: center;
  }
}
.lawyer-profile__lead {
  font-size: 2.4rem;
  font-weight: bold;
  color: #578b12;
  line-height: 1.7;
  margin: 0 0 30px;
}
@media screen and (max-width: 768px) {
  .lawyer-profile__lead {
    font-size: 2rem;
    line-height: 1.6;
    margin-bottom: 20px;
  }
}
.lawyer-profile__expandable {
  position: relative;
}
.lawyer-profile__content {
  max-height: 150px;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.is-expanded .lawyer-profile__content {
  max-height: none;
}
.lawyer-profile__message p {
  line-height: 1.9;
  margin-bottom: 16px;
  text-align: justify;
}
.lawyer-profile__message p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .lawyer-profile__message p {
    line-height: 1.8;
  }
}
.lawyer-profile__fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 52px;
  height: 100px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 80%);
  pointer-events: none;
}
.is-expanded .lawyer-profile__fade {
  display: none;
}
.lawyer-profile__more {
  display: block;
  width: 200px;
  margin: 10px auto 0;
  padding: 12px 24px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #578b12;
  background-color: #fff;
  border: 2px solid #578b12;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.lawyer-profile__more:hover {
  background-color: #578b12;
  color: #fff;
}
.is-expanded .lawyer-profile__more {
  display: none;
}
@media screen and (max-width: 768px) {
  .lawyer-profile__more {
    width: 180px;
    font-size: 1.4rem;
    padding: 10px 20px;
  }
}

.office_box img {
  vertical-align: bottom;
}
@media screen and (max-width: 768px) {
  .office_box img {
    width: 100%;
  }
}

.office_subtable {
  padding: 8px;
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .office_subtable {
    font-size: 1.4rem;
  }
}
.office_subtabletitle {
  border-bottom: 1px solid #dadada;
  background: #f3f3f3;
  text-align: left;
  font-weight: bold;
  padding: 12px;
}
@media screen and (max-width: 768px) {
  .office_subtabletitle {
    background: #e8ecef;
  }
}
.office_subtable table {
  border: none;
  margin-top: 0;
}
.office_subtable table,
.office_subtable table tr,
.office_subtable table th,
.office_subtable table td {
  display: flex;
}
.office_subtable table th {
  border-bottom: 1px solid #fff;
  text-align: left;
  font-weight: normal;
  width: 120px;
  padding: 4px;
}
@media screen and (max-width: 768px) {
  .office_subtable table th {
    background: #fff;
    width: 74px;
    white-space: nowrap;
  }
}
.office_subtable table td {
  border-bottom: 1px solid #fff;
  padding: 4px;
}
.office_subtable table td.smalla {
  width: 54px;
}
@media screen and (max-width: 768px) {
  .office_subtable table td.smalla {
    width: 16px;
  }
}
.office_subtable table tr td {
  display: grid;
  width: 66%;
}
@media screen and (max-width: 768px) {
  .office_subtable table tr td {
    width: 70%;
  }
}
.office_subtable p {
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .office_subtable p {
    margin: 0;
  }
  .office_subtable p span {
    font-size: 1.3rem;
  }
}

.chizu_box {
  border: 1px solid #ccc;
  padding: 8px;
  margin: 4px 4px 14px;
  width: 340px;
}
@media screen and (max-width: 768px) {
  .chizu_box {
    width: 100%;
  }
}

.info {
  margin: 0 auto 16px;
  padding: 0;
  text-align: left;
  font-size: 1.7rem;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid #e0c8c8;
}
@media screen and (max-width: 768px) {
  .info {
    font-size: 1.5rem !important;
  }
}
.info h3 {
  font-weight: bold;
  line-height: 1.4;
  color: #222;
  font-size: 1.9rem;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .info h3 {
    font-size: 1.6rem;
  }
}
.info .info_notice {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  padding: 8px 12px;
  background: #8b1000;
  color: #fff;
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1.3;
  border-radius: 4px;
}
@media screen and (max-width: 768px) {
  .info .info_notice {
    font-size: 1.4rem;
    padding: 7px 10px;
  }
}
.info .info_notice_icon {
  flex-shrink: 0;
  font-size: 1.1em;
}
.info .info_ng {
  background: rgba(248, 234, 234, 0.768627451);
  padding: 15px 5%;
}
@media screen and (max-width: 768px) {
  .info .info_ng {
    padding: 14px 12px;
  }
}
.info .info_ng_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .info .info_ng_top {
    gap: 8px;
  }
}
.info .info_ng_copy {
  flex: 1;
  min-width: 0;
}
.info .info_ng_mark {
  display: inline;
  color: #8b1000;
  background: none;
}
.info .info_note {
  font-size: 0.9em;
  font-weight: normal;
  background: none;
  color: #666;
}
.info .info_img {
  flex-shrink: 0;
  width: 80px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .info .info_img {
    width: 58px;
  }
}
.info .info_heading_text {
  min-width: 0;
}

.info_ok_cta {
  margin: 0 auto 20px;
  padding: 0 0 16px;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  border: 3px solid #578b12;
  background: #eef6e6;
}
.info_ok_cta .action_btn_box {
  margin-bottom: 0;
  padding: 0 5%;
}
@media screen and (max-width: 768px) {
  .info_ok_cta .action_btn_box {
    padding: 0 12px;
  }
}

.info_ok {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  background: #eef6e6;
  padding: 14px 5%;
}
@media screen and (max-width: 768px) {
  .info_ok {
    gap: 10px;
    padding: 12px;
  }
}
.info_ok p {
  flex: 1;
  min-width: 0;
  margin: 0;
  line-height: 1.6;
  color: #2f4a0c;
  font-weight: bold;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .info_ok p {
    font-size: 1.4rem;
    line-height: 1.7;
  }
}

.info_ok_img {
  flex-shrink: 0;
  width: 100px;
  height: auto;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .info_ok_img {
    width: 76px;
  }
}

.info_ok_target {
  background: linear-gradient(transparent 55%, #c8ec9a 55%);
}

.info_ok_free {
  color: #578b12;
  white-space: nowrap;
}

ul.asterisk {
  margin: 0 0 0 30px;
  padding: 0;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
@media screen and (max-width: 768px) {
  ul.asterisk {
    margin-left: 28px;
  }
}
ul.asterisk span:not(.info_note) {
  background: linear-gradient(transparent 52%, #fdfc00 52%);
  font-weight: bold;
}
ul.asterisk li {
  position: relative;
  list-style-type: none;
  margin-bottom: 8px;
  line-height: 1.5;
  color: #4a1a12;
}
ul.asterisk li::before {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f00d";
  font-size: 20px;
  color: #c64029;
  margin: -2px -24px;
}
@media screen and (max-width: 768px) {
  ul.asterisk li::before {
    margin: -2px -25px;
  }
}

footer {
  background-color: #578b12;
  padding: 50px 30px;
  text-align: center;
  color: white;
}

.privacy {
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .poyoyon3 {
    animation: poyopoyo 2s ease-out infinite;
    opacity: 1;
  }
}
@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    transform: scale(1);
  }
  50%, 70% {
    transform: scale(0.95);
  }
}/*# sourceMappingURL=style.css.map */