@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%;
  height: auto;
  margin: 0 auto;
  display: block;
}

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

.red {
  font-weight: bold;
  color: #0887a7;
}

#page-top {
  position: fixed;
  z-index: 100;
  bottom: 0;
  right: 10px;
}
#page-top a {
  background: #49bbfd;
  text-decoration: none;
  color: #fff;
  width: 60px;
  height: 60px;
  padding: 10px 0;
  text-align: center;
  display: block;
  border-radius: 50px;
  float: right;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #page-top a {
    width: 50px;
    height: 50px;
  }
}

.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: #0887a7;
}
.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: #0887a7;
}
.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;
}
.contents_title_shortline_white {
  color: white;
}
.contents_title_shortline_white::before {
  background: rgba(255, 255, 255, 0.822);
}
@media screen and (max-width: 768px) {
  .contents_title_shortline {
    font-size: 2.8rem;
    margin-bottom: 30px;
  }
  .contents_title_shortline_white::before {
    background: rgba(255, 255, 255, 0.822);
  }
}

.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: 90px;
}
header .logo_right {
  width: auto;
  max-height: 90px;
}
@media screen and (max-width: 768px) {
  header {
    width: 100%;
    background: #fff;
  }
  header .flex {
    gap: 10px;
    padding: 12px 12px;
  }
  header .logo_left img {
    max-height: 54px;
  }
  header .logo_right {
    max-height: 58px;
  }
}

.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: #0887a7;
}
@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: 98%;
  margin: 0 auto -24px;
  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%;
  }
}

.action_btn_box.is-tel-closed .box_mail {
  width: 100%;
  max-width: 480px;
}

#nayami .contents_title {
  color: rgb(77, 77, 77);
  background-color: unset;
  font-weight: bold;
}
#nayami .flex {
  margin-top: 50px;
  justify-content: space-around;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  #nayami .flex {
    margin-top: 0;
  }
}

.voice {
  background-color: #fdd41d;
  position: relative;
  padding-top: 0;
}
.voice .contents {
  padding: 0 8px 30px;
}
.voice__slider {
  position: relative;
}
.voice__slider-wrapper {
  overflow: hidden;
}
.voice__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  transition: transform 0.3s ease;
}
.voice__item {
  border: 2px solid #0887a7;
  padding: 20px 10px 12px;
  border-radius: 10px;
  background-color: white;
  flex-shrink: 0;
  width: 100%;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .voice__item {
    padding: 30px 50px;
    margin-bottom: 40px;
  }
}
.voice__label {
  background-color: #e3f3f8;
  color: #0a87a7;
  font-weight: bold;
  text-align: center;
  padding: 4px 0;
  margin-bottom: 20px;
  line-height: 1.5;
}
.voice__label span {
  color: yellow;
  font-size: 2.4rem;
}
.voice__header {
  display: flex;
  justify-content: left;
  width: 92%;
  margin: 0 auto 12px;
  align-items: center;
}
.voice__icon {
  width: 65px;
}
@media screen and (min-width: 768px) {
  .voice__icon {
    width: 150px;
  }
}
.voice__title {
  margin-left: 15px;
  font-weight: bold;
  color: #0887a7;
  font-size: 20px;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .voice__title {
    font-size: 30px;
  }
}
.voice__title small {
  font-size: 16px;
  display: block;
  color: #666;
}
.voice__content {
  background: #f7f7f7;
  border: 1px solid #dbdbdb;
  padding: 15px;
  border-radius: 10px;
}
.voice__content small {
  display: block;
  margin-top: 10px;
  color: gray;
}
.voice__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 30px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  z-index: 2;
}
.voice__btn:hover {
  background: rgba(0, 0, 0, 0.8);
}
.voice__btn:disabled {
  background: rgba(0, 0, 0, 0.2);
  cursor: not-allowed;
}
@media screen and (max-width: 767px) {
  .voice__btn {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}
.voice__btn--prev {
  left: -10px;
}
.voice__btn--next {
  right: -10px;
}

.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: #0887a7;
  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: #0887a7;
  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: 26%;
  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 {
  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: #0887a7;
  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;
  }
}

.step_bottom {
  width: 100%;
  max-width: 600px;
  display: block;
  margin: 20px auto 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_box img {
  display: block;
  margin: 0 auto 45px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .cost_box img {
    width: 98%;
  }
}

.cost_table h1 {
  font-size: 2.8rem;
  font-weight: bold;
}
.cost_table h1 span {
  color: #ff822d;
  font-size: 3.2rem;
}
@media screen and (max-width: 768px) {
  .cost_table h1 {
    font-size: 2rem;
  }
  .cost_table h1 span {
    font-size: 2.3rem;
  }
}
.cost_table table {
  border: 1px solid #dadada;
  margin-top: 10px;
  margin-bottom: 30px;
}
.cost_table table,
.cost_table table tr,
.cost_table table th,
.cost_table table td {
  display: grid;
}
.cost_table table th {
  border-bottom: 1px solid #dadada;
  background: #f3f3f3;
  text-align: left;
  font-weight: bold;
  padding: 12px;
}
.cost_table table td {
  border-bottom: 1px solid #dadada;
  padding: 12px;
}
.cost_table table td p {
  margin-bottom: 8px;
}
.cost_table table tr:last-of-type td {
  border-bottom: none;
}

.cost_asterisk {
  margin-left: 20px;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .cost_asterisk {
    font-size: 1.4rem;
  }
}
.cost_asterisk li {
  list-style-type: none;
  text-indent: -1em;
  margin-top: 5px;
  margin-left: 15px;
  text-align: left;
}
.cost_asterisk li::before {
  display: inline;
  content: "※";
}
@media screen and (max-width: 768px) {
  .cost_asterisk li {
    margin-left: 0;
  }
}

.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: 180px;
  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;
  color: #0887a7;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .lawyer-profile__name {
    font-size: 2rem;
    text-align: center;
  }
}
.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 {
  font-size: 1.6rem;
  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 {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
.lawyer-profile__details {
  margin: 24px 0 0;
  padding: 20px;
  background-color: #f8f8f8;
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  .lawyer-profile__details {
    margin-top: 20px;
    padding: 16px;
  }
}
.lawyer-profile__detail-row {
  display: flex;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid #e8e8e8;
  font-size: 1.5rem;
  line-height: 1.7;
}
.lawyer-profile__detail-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.lawyer-profile__detail-row:first-child {
  padding-top: 0;
}
@media screen and (max-width: 768px) {
  .lawyer-profile__detail-row {
    flex-direction: column;
    gap: 4px;
    font-size: 1.4rem;
  }
}
.lawyer-profile__detail-row dt {
  width: 200px;
  flex-shrink: 0;
  font-weight: bold;
  color: #0887a7;
}
@media screen and (max-width: 768px) {
  .lawyer-profile__detail-row dt {
    width: auto;
  }
}
.lawyer-profile__detail-row dd {
  flex: 1;
}
.lawyer-profile__fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 48px;
  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: #0887a7;
  background-color: #fff;
  border: 2px solid #0887a7;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.lawyer-profile__more:hover {
  background-color: #0887a7;
  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 {
  background: rgba(248, 234, 234, 0.768627451);
  margin: 0 auto 15px;
  padding: 15px 5%;
  text-align: left;
  font-size: 1.7rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .info {
    padding: 15px 10px;
    font-size: 1.5rem !important;
  }
}
.info h3 {
  font-weight: bold;
  line-height: 1.4;
  color: #8b1000;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .info h3 {
    font-size: 1.8rem;
  }
}
.info .info_heading {
  display: flex;
  align-items: center;
  gap: 72px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .info .info_heading {
    gap: 20px;
  }
}
.info .info_img {
  flex-shrink: 0;
  width: 90px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .info .info_img {
    width: 60px;
  }
}
.info .info_heading_text {
  flex: 1;
  min-width: 0;
}

ul.asterisk {
  margin-left: 30px;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
@media screen and (max-width: 768px) {
  ul.asterisk {
    margin-left: 30px;
  }
}
ul.asterisk span {
  background: linear-gradient(transparent 52%, #fdfc00 52%);
  font-weight: bold;
}
ul.asterisk li {
  list-style-type: none;
  margin-bottom: 5px;
}
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;
  }
}

.titleinsub {
  text-align: center;
  background: #99311e;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
  padding: 2px 0;
}
.titleinsub span {
  color: yellow;
}

footer {
  background-color: #0887a7;
  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 */