@charset "UTF-8";
.bold {
  font-weight: bold;
}

@media print, screen and (min-width: 768px) {
  body {
    min-width: 1160px;
  }
}

.mt50 {
  margin-top: 50px;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.flex {
  display: flex;
}
@media print, screen and (min-width: 768px) {
  .flex-pc {
    display: flex;
  }
}
@media only screen and (max-width: 767px) {
  .flex-sp {
    display: flex;
  }
}

.color-red {
  color: #FF3700;
}

.sub-title-en {
  font-size: 20px;
  color: #BEA567;
}
@media only screen and (max-width: 767px) {
  .sub-title-en {
    margin-bottom: 20px;
  }
}

.fadeup-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}
.fadeup-item[data-delay="0"] {
  transition-delay: 0s;
}
.fadeup-item[data-delay="0.3"] {
  transition-delay: 0.3s;
}
.fadeup-item[data-delay="0.6"] {
  transition-delay: 0.6s;
}
.fadeup-item.fadein {
  opacity: 1;
  transform: translateY(0);
}

header#header .nav-wrap {
  margin-right: 10px;
  display: flex;
}
@media only screen and (max-width: 767px) {
  header#header .nav-wrap .nav-1 {
    display: flex;
  }
}
@media only screen and (max-width: 767px) {
  header#header .nav-wrap .nav-1 .nav-link {
    border: none;
    font-size: 14px;
    background-color: #BEA567;
    color: #fff;
    padding: 5px 10px 7px;
    border-radius: 5px;
  }
}
@media only screen and (max-width: 767px) {
  header#header .wrapper-g {
    justify-content: space-between;
    flex-direction: row;
  }
}

@media only screen and (max-width: 767px) {
  .thanks header#header .wrapper-g {
    flex-direction: column;
  }
}
@media print, screen and (min-width: 768px) {
  .thanks header#header .nav-wrap {
    margin-right: 110px;
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .thanks header#header .nav-wrap {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .thanks header#header .nav-wrap .nav-1 {
    display: none;
  }
}

@media print, screen and (min-width: 768px) {
  main .wrapper {
    width: 1160px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (max-width: 767px) {
  main .wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.hero-area {
  position: relative;
  margin-bottom: 50px;
}
@media print, screen and (min-width: 768px) {
  .hero-area {
    max-height: 550px;
    height: calc(100svh - 105px);
  }
}
@media only screen and (max-width: 767px) {
  .hero-area {
    margin-bottom: 30px;
  }
}
@media print, screen and (min-width: 768px) {
  .hero-area .bg-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
}
.hero-area .bg-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media print, screen and (min-width: 768px) {
  .hero-area .hero-wrapper {
    width: 100%;
    max-width: 1000px;
    height: 100%;
    padding-top: 70px;
    padding-left: 50px;
    padding-right: 50px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
  }
}
@media only screen and (max-width: 767px) {
  .hero-area .hero-wrapper {
    background: linear-gradient(200deg, #fdfbe4 0%, rgba(253, 251, 228, 0) 100%);
  }
}
.hero-area .text-wrap .hero-title {
  font-size: 16px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .hero-area .text-wrap .hero-title {
    font-size: 16px;
    padding: 30px 20px 0;
    margin-bottom: 10px;
    margin-top: -20px;
    background-color: #FDFCEC;
    position: relative;
    margin-right: 30px;
  }
}
.hero-area .text-wrap .catch {
  font-size: 36px;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 767px) {
  .hero-area .text-wrap .catch {
    font-size: 20px;
    padding: 0 20px 30px;
  }
}
.hero-area .text-wrap .hero-catch-wrap {
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px));
  background-size: 16px 16px;
  background-repeat: repeat;
  background-position: center center;
  background-color: #FDFBE4;
  position: relative;
  padding: 30px 1px 20px 20px;
  margin-left: 20px;
  display: inline-block;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media only screen and (max-width: 767px) {
  .hero-area .text-wrap .hero-catch-wrap {
    font-size: 14px;
    margin: 0 30px 30px;
    padding: 23px 15px 10px;
  }
}
.hero-area .text-wrap .hero-catch-wrap .sub-ttl {
  font-size: 16px;
  color: #fff;
  display: inline-block;
  background-color: #BEA567;
  padding: 5px 10px;
  position: absolute;
  top: -20px;
  left: -20px;
}
@media only screen and (max-width: 767px) {
  .hero-area .text-wrap .hero-catch-wrap .sub-ttl {
    font-size: 13px;
    left: -10px;
    padding: 4px 14px;
  }
}
.hero-area .text-wrap .hero-catch-wrap dd {
  font-size: 18px;
}
@media print, screen and (min-width: 768px) {
  .hero-area .text-wrap .hero-catch-wrap dd {
    text-indent: -1.4em;
    margin-left: 1.4em;
  }
}
@media only screen and (max-width: 767px) {
  .hero-area .text-wrap .hero-catch-wrap dd {
    font-size: 14px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }
}
.hero-area .text-wrap .hero-catch-wrap dd:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 15px;
  background: url("/divorce-law/img/icon-check.svg") no-repeat center/contain;
  margin-right: 10px;
  flex-shrink: 0;
}
@media print, screen and (min-width: 768px) {
  .hero-area .icon-wrap {
    position: absolute;
    right: 50px;
    bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-area .icon-wrap {
    text-align: center;
  }
}
.hero-area .icon-wrap img {
  width: 98px;
  margin-left: 5px;
}
.hero-area .slide-fadeani {
  animation: fadezoom 8s 0s forwards;
}

@keyframes fadezoom {
  0% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.intro-area {
  margin-bottom: 90px;
}
@media only screen and (max-width: 767px) {
  .intro-area {
    margin-bottom: 60px;
  }
}
.intro-area .flex {
  justify-content: center;
  gap: 50px;
  align-items: center;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .intro-area .flex {
    margin: 0 20px;
    gap: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .intro-area .flex img {
    width: 44px;
  }
}
.intro-area .text-wrap {
  letter-spacing: 2px;
}
@media only screen and (max-width: 767px) {
  .intro-area .text-wrap {
    min-width: 13em;
  }
}
.intro-area .text-1 {
  font-size: 28px;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .intro-area .text-1 {
    font-size: 14px;
  }
}
.intro-area .text-1 span {
  font-size: 40px;
}
@media only screen and (max-width: 767px) {
  .intro-area .text-1 span {
    font-size: 21px;
  }
}
.intro-area .text-2 {
  font-size: 41px;
  border-bottom: 1px solid #BEA567;
  margin-bottom: 14px;
}
@media only screen and (max-width: 767px) {
  .intro-area .text-2 {
    font-size: 21px;
  }
}
.intro-area .text-3 {
  font-size: 28px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .intro-area .text-3 {
    font-size: 14px;
  }
}

.message-area {
  margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .message-area {
    margin-bottom: 90px;
  }
}
.message-area .inner {
  position: relative;
  margin: 0 50px;
}
@media only screen and (max-width: 767px) {
  .message-area .inner {
    margin: 0 10px;
  }
}
.message-area .inner .text-img {
  position: absolute;
  z-index: -1;
}
@media print, screen and (min-width: 768px) {
  .message-area .inner .text-img {
    top: 490px;
    left: -80px;
  }
}
@media only screen and (max-width: 767px) {
  .message-area .inner .text-img {
    bottom: -60px;
    right: -10px;
    max-width: 80%;
  }
}
.message-area .flex-pc {
  gap: 40px;
}
@media print, screen and (min-width: 768px) {
  .message-area .photo-wrap {
    width: 326px;
  }
}
@media only screen and (max-width: 767px) {
  .message-area .photo-wrap {
    aspect-ratio: 335 / 280;
    overflow: hidden;
    margin-bottom: 20px;
  }
  .message-area .photo-wrap img {
    object-fit: cover;
    object-position: 50% 40%;
    width: 100%;
    height: 100%;
  }
}
.message-area .text-wrap {
  flex: 1;
}
@media only screen and (max-width: 767px) {
  .message-area .text-wrap {
    padding: 0 10px;
  }
}
.message-area .text-wrap .heading-wrap {
  margin-bottom: 20px;
}
.message-area .text-wrap .sub-title-en {
  margin-bottom: 20px;
}
@media print, screen and (min-width: 768px) {
  .message-area .text-wrap .text-1 {
    margin-right: -1em;
    letter-spacing: 0.05em;
    margin-bottom: 30px;
  }
}
.message-area .text-wrap .text-2 {
  letter-spacing: 0;
}

.info-area {
  background: url("/divorce-law/img/bg-photo-2.jpg") no-repeat center/cover;
  padding: 80px 0;
}
@media only screen and (max-width: 767px) {
  .info-area {
    padding: 30px 0 70px;
  }
}
.info-area .title {
  text-align: center;
  margin-bottom: 50px;
  font-weight: normal;
}
@media only screen and (max-width: 767px) {
  .info-area .title {
    margin-bottom: 30px;
  }
}
.info-area .inner {
  background-color: #fff;
  margin: 0 50px;
  padding: 20px 120px 40px;
}
@media only screen and (max-width: 767px) {
  .info-area .inner {
    margin: 0 10px;
    padding: 10px 20px 20px;
  }
}
.info-area .inner .circle-wrap {
  background-color: #BEA567;
  border-radius: 100%;
  color: #fff;
  text-align: center;
  line-height: 1.2;
  width: 143px;
  aspect-ratio: 1 / 1;
  padding: 18px 0 0;
  box-sizing: border-box;
  margin-right: 50px;
}
@media only screen and (max-width: 767px) {
  .info-area .inner .circle-wrap {
    margin: 0 auto;
    width: 120px;
  }
}
.info-area .inner .circle-wrap .text-1 {
  margin: auto;
  display: inline-block;
  border-bottom: 1px solid #fff;
  padding: 0 7px 7px;
  font-size: 15px;
}
@media only screen and (max-width: 767px) {
  .info-area .inner .circle-wrap .text-1 {
    font-size: 11px;
  }
}
.info-area .inner .tel-wrap {
  text-align: right;
  margin-top: 20px;
}
@media only screen and (max-width: 767px) {
  .info-area .inner .tel-wrap {
    text-align: center;
    margin-top: 10px;
  }
}
.info-area .inner .tel-wrap .tel-link {
  font-size: 48px;
  color: #4F483C;
  font-weight: bold;
  text-decoration: none;
}
@media print, screen and (min-width: 768px) {
  .info-area .inner .tel-wrap .tel-link {
    pointer-events: none;
  }
}
@media only screen and (max-width: 767px) {
  .info-area .inner .tel-wrap .tel-link {
    font-size: 25px;
  }
}
.info-area .inner .tel-wrap .tel-link::before {
  content: "";
  display: inline-block;
  margin-right: 20px;
  width: 30px;
  height: 30px;
  background: url("/divorce-law/img/icon-tel.svg") no-repeat center/contain;
}
@media only screen and (max-width: 767px) {
  .info-area .inner .tel-wrap .tel-link::before {
    width: 16px;
    height: 16px;
    margin-right: 10px;
  }
}
@media print, screen and (min-width: 768px) {
  .info-area .inner .btn-wrap {
    margin-top: 20px;
    margin-top: 25px;
  }
}
.info-area .inner .btn-wrap .btn-item {
  display: block;
  text-align: center;
  background-color: #E69183;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  letter-spacing: 7px;
  padding: 16px;
}
@media only screen and (max-width: 767px) {
  .info-area .inner .btn-wrap .btn-item {
    font-size: 17px;
    letter-spacing: 3px;
    padding: 7px;
  }
}
.info-area .inner .btn-wrap .btn-item img {
  margin-right: 20px;
  margin-top: -5px;
}
@media only screen and (max-width: 767px) {
  .info-area .inner .btn-wrap .btn-item img {
    margin-right: 10px;
  }
}

.merits-area {
  background-color: #FDFBE4;
  padding-top: 70px;
  padding-bottom: 90px;
}
@media only screen and (max-width: 767px) {
  .merits-area {
    padding-top: 40px;
  }
}
.merits-area .heading-wrap-2 {
  text-align: center;
  margin-bottom: 60px;
}
.merits-area .heading-wrap-2 .sub-title-en {
  margin-bottom: 5px;
}
.merits-area .merits-card {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 0.5%;
}
.merits-area .merits-card .card {
  background-color: #BEA567;
}
@media print, screen and (min-width: 768px) {
  .merits-area .merits-card .card {
    width: 33%;
  }
}
.merits-area .merits-card .card .photo-wrap {
  position: relative;
}
.merits-area .merits-card .card .photo-wrap img {
  vertical-align: bottom;
}
.merits-area .merits-card .card .num {
  position: absolute;
  top: 10px;
  left: 16px;
  font-size: 30px;
  color: #fff;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  line-height: 1;
}
.merits-area .merits-card .card .num::after {
  content: "";
  display: block;
  border-bottom: 1px solid #fff;
  transform: rotateZ(-45deg);
  position: relative;
  bottom: -40px;
  width: 90px;
  transform-origin: left;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}
.merits-area .merits-card .card .text-wrap {
  padding: 10px 15px;
}
.merits-area .merits-card .card .title-1 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 13px;
}
.merits-area .merits-card .card .text-1 {
  color: #fff;
  font-size: 13px;
  font-weight: bold;
}

.case-area {
  margin-top: 80px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .case-area {
    margin-top: 50px;
    margin-bottom: 80px;
  }
}
.case-area .heading-wrap {
  text-align: center;
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .case-area .heading-wrap {
    margin-bottom: 40px;
  }
}
.case-area .heading-wrap .sub-title-en {
  margin-bottom: 14px;
}
.case-area .heading-wrap .title {
  font-weight: normal;
  letter-spacing: 0.05em;
}
.case-area .case-study {
  border: solid 1px #ccc;
  /* 内側の線になる一本線の枠線をひく*/
  outline: solid 1px #ccc;
  /* 外側の線になる一本線の枠線をひく*/
  outline-offset: 3px;
  /* 外側の線と内側の線の空き具合を調整*/
  margin: 0 4px 40px;
}
@media only screen and (max-width: 767px) {
  .case-area .case-study {
    margin: 0 4px 20px;
  }
}
.case-area .case-study dt {
  font-size: 24px;
  font-weight: bold;
  margin: 0 30px;
  padding: 20px 0;
  position: relative;
  letter-spacing: 0;
}
@media print, screen and (min-width: 768px) {
  .case-area .case-study dt {
    display: flex;
    align-items: start;
    gap: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .case-area .case-study dt {
    font-size: 16px;
    margin: 0 15px;
    padding: 15px 30px 15px 0;
  }
}
.case-area .case-study dt:hover {
  cursor: pointer;
}
.case-area .case-study dt::after, .case-area .case-study dt::before {
  content: "";
  display: block;
  width: 21px;
  height: 3px;
  background-color: #4F483C;
  border-radius: 5px;
  position: absolute;
  right: 0;
  top: 50%;
  transition: all 0.3s;
}
.case-area .case-study dt::after {
  transform: translateY(-50%);
}
.case-area .case-study dt::before {
  transform: translateY(-50%) rotateZ(90deg);
}
.case-area .case-study dt .label-1 {
  font-size: 16px;
  color: #fff;
  background-color: #BEA567;
  padding: 2px 12px;
  margin-top: 6px;
  border-radius: 20px;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  .case-area .case-study dt .label-1 {
    margin-right: calc(100% - 90px);
    margin-bottom: 10px;
    display: inline-block;
    font-size: 12px;
  }
}
.case-area .case-study dt.is-active::before {
  transform: translateY(-50%) rotateZ(180deg);
}
.case-area .case-study dt.is-active::after {
  transform: translateY(-50%) rotateZ(180deg);
}
.case-area .case-study dd {
  border-top: 1px solid #ccc;
  margin: 0 40px;
  padding: 30px 24px 10px;
  font-size: 15px;
  display: none;
}
@media only screen and (max-width: 767px) {
  .case-area .case-study dd {
    margin: 0 15px;
    padding: 10px 0px 10px;
    font-size: 13px;
  }
}
.case-area .case-study dd .text-1 {
  letter-spacing: 0;
}

.situation-area {
  background-color: #FCDE71;
  position: relative;
  overflow: hidden;
}
.situation-area .situation-nav-area {
  background-color: #FDFBE4;
  padding: 60px 0 30px;
}
.situation-area .situation-nav-area .heading-wrap-sub {
  text-align: center;
  margin-bottom: 40px;
}
.situation-area .situation-nav-area .situation-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media only screen and (max-width: 767px) {
  .situation-area .situation-nav-area .situation-nav {
    gap: 2px;
  }
}
.situation-area .situation-nav-area .situation-nav .nav-btn {
  font-weight: bold;
  background-color: #fff;
  text-align: center;
  width: 100%;
  max-width: 235px;
  border: 1px solid #CCCCCC;
  padding: 30px 0;
  font-size: 21px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .situation-area .situation-nav-area .situation-nav .nav-btn {
    max-width: 25%;
    min-height: 78px;
    font-size: 12px;
    padding: 0;
  }
}
.situation-area .situation-nav-area .situation-nav .nav-btn:hover {
  cursor: pointer;
}
.situation-area .situation-nav-area .situation-nav .nav-btn .text-1 {
  margin: 0;
  position: relative;
  z-index: 1;
}
.situation-area .situation-nav-area .situation-nav .nav-btn.is-active {
  background-color: #8EB254;
  color: #fff;
  border-color: #8EB254;
}
.situation-area .situation-nav-area .situation-nav .nav-btn.is-active::after {
  content: "";
  position: absolute;
  display: block;
  height: 26px;
  width: 31px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background-color: #8EB254;
  left: 50%;
  transform: translateX(-50%) rotateX(-180deg);
  bottom: -26px;
}
@media only screen and (max-width: 767px) {
  .situation-area .situation-nav-area .situation-nav .nav-btn.is-active::after {
    bottom: -12px;
    z-index: 0;
  }
}
.situation-area .situation-nav-area .situation-nav .nav-btn.is-active .underline {
  border-bottom: 1px solid #fff;
}
.situation-area .heading-wrap {
  text-align: center;
  background: url("../divorce-law/img/bg-photo-1.jpg") no-repeat center/cover;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 40px;
  box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
  .situation-area .heading-wrap {
    background: url("../divorce-law/img/bg-photo-1_sp.jpg") no-repeat center/cover;
    aspect-ratio: 375 / 154;
    height: auto;
    padding-bottom: 16px;
  }
}
.situation-area .heading-wrap .title {
  font-size: 30px;
  color: #fff;
  font-weight: normal;
}
@media only screen and (max-width: 767px) {
  .situation-area .heading-wrap .title {
    font-size: 18px;
  }
}
.situation-area .cont-block {
  display: flex;
  gap: 20px;
}
@media only screen and (max-width: 767px) {
  .situation-area .cont-block {
    flex-direction: column;
  }
}
.situation-area .cont-block.inner {
  position: relative;
}
.situation-area .cont-block.inner.flex-pc {
  justify-content: space-between;
  gap: 20px;
}
@media print, screen and (min-width: 768px) {
  .situation-area .cont-block.inner {
    margin: -40px auto 80px;
  }
}
@media only screen and (max-width: 767px) {
  .situation-area .cont-block.inner {
    margin-top: -30px;
    margin-bottom: 80px;
  }
}
.situation-area .cont-block.inner::after {
  content: "";
  position: absolute;
  display: block;
  height: 64px;
  width: 480px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background-color: #FDFBE4;
  opacity: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-30px) rotateX(-180deg);
  bottom: -60px;
  z-index: 0;
  transition: all 0.6s 0.9s ease;
}
@media only screen and (max-width: 767px) {
  .situation-area .cont-block.inner::after {
    bottom: -60px;
  }
}
.situation-area .cont-block.inner.in::after {
  opacity: 0.5;
  transform: translateX(-50%) translateY(0) rotateX(-180deg);
}
.situation-area .cont-block.inner .cont {
  flex: 1;
  background-color: #fff;
  padding: 30px 50px 40px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  position: relative;
  z-index: 1;
}
@media print, screen and (min-width: 768px) {
  .situation-area .cont-block.inner .cont {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .situation-area .cont-block.inner .cont {
    padding: 30px 50px;
    margin: 0 10px;
  }
}
.situation-area .cont-block.inner .cont .list-wrap {
  margin-bottom: 30px;
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  .situation-area .cont-block.inner .cont .list-wrap {
    margin: auto auto 20px;
    white-space: nowrap;
    display: inline-block;
  }
}
.situation-area .cont-block.inner .cont .list-wrap li {
  border-bottom: 1px solid #CCCCCC;
  font-size: 15px;
  font-weight: bold;
  padding: 5px 0;
  margin: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media only screen and (max-width: 767px) {
  .situation-area .cont-block.inner .cont .list-wrap li {
    font-size: 14px;
  }
}
.situation-area .cont-block.inner .cont .list-wrap li:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 15px;
  background: url("../divorce-law/img/icon-check.svg") no-repeat center/contain;
  aspect-ratio: 16 / 15;
}
.situation-area .cont-block.inner .cont .tag-list {
  text-align: left;
}
.situation-area .cont-block.inner .cont .tag-list li {
  font-size: 12px;
  font-weight: bold;
  color: #BEA567;
  border: 1px solid #BEA567;
  display: inline-block;
  padding: 0 7px 2px;
  margin: 0 3px 10px 0;
}
.situation-area .intro-wrap .text-wrap {
  text-align: center;
  position: relative;
  padding-bottom: 80px;
}
@media only screen and (max-width: 767px) {
  .situation-area .intro-wrap .text-wrap {
    padding: 0 20px 80px;
  }
}
.situation-area .intro-wrap .text-wrap::after {
  content: "";
  position: absolute;
  background: url("../divorce-law/img/text-leadtosolution.png") no-repeat center/contain;
  width: 357px;
  height: 72px;
  right: 0;
  bottom: 50px;
  z-index: 0;
}
@media only screen and (max-width: 767px) {
  .situation-area .intro-wrap .text-wrap::after {
    width: 250px;
    height: 60px;
    bottom: 60px;
  }
}
.situation-area .intro-wrap .text-wrap .heading-text img {
  display: block;
  margin: auto;
}
.situation-area .intro-wrap .text-wrap .title-2 {
  font-size: 36px;
  border-bottom: 1px solid #4F483C;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
@media print, screen and (min-width: 768px) {
  .situation-area .intro-wrap .text-wrap .title-2 {
    display: inline-block;
  }
}
@media only screen and (max-width: 767px) {
  .situation-area .intro-wrap .text-wrap .title-2 {
    font-size: 24px;
  }
}
.situation-area .intro-wrap .text-wrap .text-2 {
  font-size: 16px;
  font-weight: bold;
  line-height: 2;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .situation-area .intro-wrap .text-wrap .text-2 {
    font-size: 14px;
    text-align: left;
  }
}
.situation-area .heading-wrap-cont {
  text-align: center;
  margin-bottom: 20px;
}
.situation-area .heading-wrap-cont .title-1 {
  font-size: 24px;
  margin-top: 15px;
}

.lawyers-area {
  margin-bottom: 70px;
}
@media only screen and (max-width: 767px) {
  .lawyers-area {
    margin-bottom: 100px;
  }
}
.lawyers-area .lawyers-bg {
  background: url("/divorce-law/img/bg-photo-3.jpg") no-repeat center/cover;
  padding: 50px 0;
  box-sizing: border-box;
  margin-bottom: 80px;
}
@media only screen and (max-width: 767px) {
  .lawyers-area .lawyers-bg {
    margin: -10px -3% 50px;
    padding: 20px 20px 80px;
  }
}
@media print, screen and (min-width: 768px) {
  .lawyers-area .inner {
    margin-left: 50px;
    margin-right: 50px;
  }
}
.lawyers-area .heading-wrap {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .lawyers-area .heading-wrap {
    margin-bottom: 20px;
  }
}
.lawyers-area .heading-wrap .title {
  margin-bottom: 20px;
  font-weight: normal;
}
.lawyers-area .heading-wrap .sub-title-en {
  margin-bottom: 14px;
}
.lawyers-area .heading-wrap .text-1 {
  letter-spacing: 0;
}
.lawyers-area .lawyers-card {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
@media only screen and (max-width: 767px) {
  .lawyers-area .lawyers-card {
    gap: 20px;
  }
}
.lawyers-area .lawyers-card .card {
  background-color: #fff;
  transition: all 0.3s ease;
}
@media print, screen and (min-width: 768px) {
  .lawyers-area .lawyers-card .card {
    width: 430px;
  }
}
.lawyers-area .lawyers-card .card:hover {
  background-color: #F7F7F7;
}
.lawyers-area .lawyers-card .card:hover img {
  transform: scale(1.05);
}
.lawyers-area .lawyers-card .card .photo-wrap {
  overflow: hidden;
}
.lawyers-area .lawyers-card .card .photo-wrap img {
  transition: all 0.3s ease;
  vertical-align: bottom;
}
.lawyers-area .lawyers-card .card .text-wrap {
  padding: 15px 30px 0;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .lawyers-area .lawyers-card .card .text-wrap {
    padding: 30px 20px 14px;
  }
}
.lawyers-area .lawyers-card .card .text-wrap .label-1 {
  position: absolute;
  top: -1em;
  font-size: 12px;
  background-color: #BEA567;
  color: #fff;
  padding: 1px 7px;
  font-weight: bold;
}
.lawyers-area .lawyers-card .card .text-wrap .name {
  font-size: 24px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .lawyers-area .lawyers-card .card .text-wrap .name {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
.lawyers-area .lawyers-card .card .text-wrap .name-en {
  margin-left: 13px;
  color: #ccc;
  font-weight: bold;
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  .lawyers-area .lawyers-card .card .text-wrap .name-en {
    font-size: 14px;
  }
}
.lawyers-area .lawyers-card .card .text-wrap .comment {
  font-size: 16px;
  letter-spacing: 0;
}
@media only screen and (max-width: 767px) {
  .lawyers-area .lawyers-card .card .text-wrap .comment {
    font-size: 13px;
  }
}
.lawyers-area .outro-wrap {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .lawyers-area .outro-wrap {
    margin: 0 10px;
  }
}
.lawyers-area .outro-wrap .title {
  text-align: center;
  margin-bottom: 60px;
  font-weight: normal;
}
@media only screen and (max-width: 767px) {
  .lawyers-area .outro-wrap .title {
    margin-bottom: 30px;
  }
}
.lawyers-area .outro-wrap .flex {
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .lawyers-area .outro-wrap .flex {
    flex-wrap: wrap;
  }
}
.lawyers-area .outro-wrap .flex-item {
  position: relative;
  width: 230px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 0 0;
}
@media only screen and (max-width: 767px) {
  .lawyers-area .outro-wrap .flex-item {
    width: 48%;
    font-size: 14px;
  }
}
.lawyers-area .outro-wrap .flex-item::before {
  content: "";
  position: absolute;
  top: 0;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: #FDFBE4;
  border-radius: 100%;
  z-index: -1;
}
.lawyers-area .outro-wrap .flex-item .num {
  display: inline-block;
  color: #BEA567;
  font-size: 28px;
  border-bottom: 1px solid #BEA567;
}
@media only screen and (max-width: 767px) {
  .lawyers-area .outro-wrap .flex-item .num {
    font-size: 20px;
  }
}
.lawyers-area .outro-wrap .flex-item .icon-wrap {
  text-align: center;
  height: 80px;
  margin: 20px 0;
}
@media only screen and (max-width: 767px) {
  .lawyers-area .outro-wrap .flex-item .icon-wrap {
    height: 50px;
    margin: 10px 0;
  }
}
@media only screen and (max-width: 767px) {
  .lawyers-area .outro-wrap .flex-item .icon-wrap img {
    height: 100%;
  }
}
.lawyers-area .outro-wrap .item-1 img {
  margin-left: 20px;
}
.lawyers-area .outro-wrap .bg-img {
  position: absolute;
  right: -100px;
  bottom: -60px;
  z-index: -1;
}
@media print, screen and (min-width: 768px) {
  .lawyers-area .outro-wrap .bg-img {
    width: 526px;
  }
}
@media only screen and (max-width: 767px) {
  .lawyers-area .outro-wrap .bg-img {
    right: -20px;
    left: -20px;
    bottom: -80px;
  }
}
.lawyers-area .outro-wrap .link-access {
  font-size: 20px;
  color: #4F483C;
  text-decoration: underline;
}

.office-area {
  position: relative;
  padding-top: 30px;
  padding-bottom: 140px;
  background-color: #F7F8F2;
}
@media only screen and (max-width: 767px) {
  .office-area {
    padding-top: 10px;
    padding-bottom: 60px;
  }
}
.office-area .heading-wrap {
  text-align: center;
  margin-bottom: 110px;
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  .office-area .heading-wrap {
    margin-bottom: 50px;
  }
}
.office-area .heading-wrap .title {
  margin-bottom: 20px;
  font-weight: normal;
}
.office-area .heading-wrap .sub-title-en {
  margin-bottom: 14px;
}
@media only screen and (max-width: 767px) {
  .office-area .por-1 {
    top: -80px;
  }
}
.office-area .photo-wrap {
  display: flex;
  gap: 80px;
  align-items: start;
}
@media print, screen and (min-width: 768px) {
  .office-area .photo-wrap {
    position: absolute;
    top: 130px;
    right: 0;
    max-width: 642px;
    justify-content: right;
  }
}
@media only screen and (max-width: 767px) {
  .office-area .photo-wrap {
    margin-bottom: 40px;
    gap: 50px;
  }
}
.office-area .photo-wrap .img-1 {
  margin-top: 70px;
}
@media print, screen and (min-width: 768px) {
  .office-area .photo-wrap .img-1 {
    max-width: 177px;
    min-width: 140px;
    width: calc(calc(177 / 1260) * 100vw);
  }
}
@media only screen and (max-width: 767px) {
  .office-area .photo-wrap .img-1 {
    min-width: 0;
    margin-top: 50px;
    width: 60%;
  }
}
@media print, screen and (min-width: 768px) {
  .office-area .photo-wrap .img-2 {
    max-width: 385px;
    min-width: 305px;
    width: calc(calc(385 / 1260) * 100vw);
  }
}
@media only screen and (max-width: 767px) {
  .office-area .photo-wrap .img-2 {
    min-width: 0;
    width: 100%;
  }
}
@media print, screen and (min-width: 768px) {
  .office-area .text-wrap {
    min-width: 370px;
    width: calc(calc(450 / 1260) * 100vw);
  }
}
@media only screen and (max-width: 767px) {
  .office-area .text-wrap {
    margin-bottom: 30px;
    padding-left: 3px;
  }
}
.office-area .text-wrap .text-1 {
  letter-spacing: 0.2em;
  font-size: 18px;
}
@media only screen and (max-width: 767px) {
  .office-area .text-wrap .text-1 {
    font-size: 14px;
  }
}
@media print, screen and (min-width: 768px) {
  .office-area .info-wrap {
    width: 610px;
  }
}
@media only screen and (max-width: 767px) {
  .office-area .info-wrap {
    padding-left: 3px;
  }
}
.office-area .info-wrap .info-list {
  display: flex;
  flex-wrap: wrap;
  padding: 1em 0;
  border-top: 1px solid #F1EEE7;
}
@media only screen and (max-width: 767px) {
  .office-area .info-wrap .info-list {
    flex-direction: column;
    gap: 1em;
  }
}
.office-area .info-wrap .info-list:last-child {
  border-bottom: 1px solid #F1EEE7;
}
@media print, screen and (min-width: 768px) {
  .office-area .info-wrap .info-list dt {
    width: 120px;
  }
}
.office-area .info-wrap .info-list dd {
  flex: 1;
}
@media print, screen and (min-width: 768px) {
  .office-area .info-wrap .info-list dd .tel-link {
    pointer-events: none;
  }
}
@media only screen and (max-width: 767px) {
  .office-area .info-wrap .info-list dd .tel-link {
    color: #BEA567;
    text-decoration: underline;
  }
}
.office-area .info-wrap .info-list .link-text {
  color: #BEA567;
  text-decoration: underline;
}
@media only screen and (max-width: 767px) {
  .office-area .office-area {
    flex-direction: column;
    align-items: center;
  }
  .office-area .photo-wrap {
    width: 100%;
  }
  .office-area .wrapper {
    width: 100%;
  }
}

.price-area {
  background-color: #F7F7F7;
  padding: 50px 0;
  letter-spacing: 0;
}
@media only screen and (max-width: 767px) {
  .price-area {
    padding: 10px 10px 30px;
  }
}
.price-area .heading-wrap {
  text-align: center;
  margin-bottom: 50px;
  margin-top: 40px;
}
.price-area .heading-wrap .title {
  margin-bottom: 20px;
  font-weight: normal;
}
.price-area .heading-wrap .sub-title-en {
  margin-bottom: 14px;
}
.price-area .flex-row {
  justify-content: space-between;
}
@media print, screen and (min-width: 768px) {
  .price-area .flex-row {
    margin-bottom: 50px;
  }
}
.price-area .cont {
  width: 480px;
}
@media only screen and (max-width: 767px) {
  .price-area .cont {
    width: 100%;
    margin-bottom: 40px;
  }
}
.price-area .cont .title {
  font-size: 20px;
  font-weight: bold;
  border-left: 2px solid #BEA567;
  padding: 1px 14px 4px;
  margin-bottom: 10px;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .price-area .cont .title {
    font-size: 16px;
    padding: 1px 10px 1px;
    line-height: 1.2;
  }
}
.price-area .cont dl {
  border: 1px solid #CCCCCC;
  font-size: 16px;
}
@media print, screen and (min-width: 768px) {
  .price-area .cont dl {
    display: flex;
  }
}
@media only screen and (max-width: 767px) {
  .price-area .cont dl {
    font-size: 14px;
  }
}
.price-area .cont dl + dl {
  border-top: none;
}
.price-area .cont dl dt, .price-area .cont dl dd {
  padding: 20px 15px;
}
@media only screen and (max-width: 767px) {
  .price-area .cont dl dt, .price-area .cont dl dd {
    padding: 15px;
    font-size: 14px;
  }
}
.price-area .cont dl dt {
  background-color: #E5E5E5;
  width: 6em;
}
@media only screen and (max-width: 767px) {
  .price-area .cont dl dt {
    width: auto;
    padding: 10px 15px;
  }
}
.price-area .cont dl dd {
  background-color: #fff;
  flex: 1;
}
.price-area .cont .notes {
  margin-top: 10px;
}
.price-area .text-1 ul {
  display: inline-block;
}
.price-area .text-1 li {
  text-indent: -1em;
  margin-left: 1em;
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .price-area .text-1 li {
    font-size: 12px;
    margin-top: -20px;
    margin-bottom: 20px;
  }
}

.flow-area {
  background-color: #F7F8F2;
  padding: 50px 0 0;
  letter-spacing: 0;
}
@media only screen and (max-width: 767px) {
  .flow-area {
    padding: 10px 0 0;
  }
}
@media print, screen and (min-width: 768px) {
  .flow-area .inner {
    margin-left: 50px;
    margin-right: 50px;
  }
}
.flow-area .heading-wrap {
  text-align: center;
  margin-bottom: 50px;
  margin-top: 40px;
}
.flow-area .heading-wrap .title {
  margin-bottom: 20px;
  font-weight: normal;
}
.flow-area .heading-wrap .sub-title-en {
  margin-bottom: 14px;
}
.flow-area .flex-row {
  justify-content: space-between;
  padding: 0 50px 80px;
}
@media only screen and (max-width: 767px) {
  .flow-area .flex-row {
    padding: 0 10px 40px;
  }
}
@media only screen and (max-width: 767px) {
  .flow-area .sticky-wrap {
    display: none;
  }
}
.flow-area .sticky-item {
  position: sticky;
  top: 10px;
}
.flow-area .sticky-item .flow-nav li {
  margin-bottom: 30px;
}
.flow-area .sticky-item .flow-nav li.is-active .flow-num {
  background-color: #BEA567;
  color: #fff;
}
.flow-area .sticky-item .flow-nav li.is-active .flow-num::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 30px;
  background-color: #BEA567;
  position: absolute;
  left: 50%;
  bottom: -30px;
  transform: translateX(-50%);
}
.flow-area .sticky-item .flow-nav li:last-of-type.is-active .flow-num {
  background-color: #BEA567;
  color: #fff;
}
.flow-area .sticky-item .flow-nav li:last-of-type.is-active .flow-num::after {
  display: none;
}
.flow-area .sticky-item .nav-txt {
  font-size: 16px;
  font-weight: bold;
}
.flow-area .sticky-item a {
  color: #4F483C;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.flow-area .flow-num {
  font-size: 14px;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FDFBE4;
  color: #BEA567;
  font-weight: bold;
  margin-right: 15px;
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .flow-area .flow-cont-block {
    width: 637px;
  }
}
.flow-area .flow-cont-block .flow-cont {
  background-color: #fff;
  padding: 30px 30px 20px;
  margin-bottom: 40px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .flow-area .flow-cont-block .flow-cont {
    padding: 20px 15px 10px;
  }
}
.flow-area .flow-cont-block .flow-cont .text-1 {
  font-size: 16px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .flow-area .flow-cont-block .flow-cont .text-1 {
    font-size: 14px;
  }
}
.flow-area .flow-cont-block .flow-cont::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -30px;
  transform: translateX(-50%);
  width: 34px;
  height: 18px;
  background: url("/divorce-law/img/icon-arrow.svg") no-repeat center/contain;
}
.flow-area .flow-cont-block .flow-cont:last-of-type::after {
  display: none;
}
.flow-area .flow-cont-block .flow-cont .flow-num {
  background-color: #BEA567;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .flow-area .flow-cont-block .flow-cont .flow-num {
    font-size: 12px;
    width: 25px;
    height: 25px;
  }
}
.flow-area .flow-cont-block .flow-cont .btn-wrap {
  margin-top: 20px;
}
@media only screen and (max-width: 767px) {
  .flow-area .flow-cont-block .flow-cont .btn-wrap {
    margin-top: 10px;
  }
}
.flow-area .flow-cont-block .flow-cont .btn-wrap .btn-item {
  display: inline-block;
  text-align: center;
  background-color: #E69183;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  letter-spacing: 7px;
  padding: 16px 30px;
}
@media only screen and (max-width: 767px) {
  .flow-area .flow-cont-block .flow-cont .btn-wrap .btn-item {
    font-size: 17px;
    padding: 12px 10px;
    width: 100%;
    box-sizing: border-box;
    letter-spacing: 3px;
  }
}
.flow-area .flow-cont-block .flow-cont .btn-wrap .btn-item img {
  margin-right: 20px;
  margin-top: -5px;
}
@media only screen and (max-width: 767px) {
  .flow-area .flow-cont-block .flow-cont .btn-wrap .btn-item img {
    margin-right: 10px;
  }
}
.flow-area .flow-cont-block .heading-wrap-sub {
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .flow-area .flow-cont-block .heading-wrap-sub {
    margin-bottom: 10px;
  }
}
.flow-area .flow-cont-block .heading-wrap-sub .title {
  font-size: 24px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .flow-area .flow-cont-block .heading-wrap-sub .title {
    font-size: 16px;
  }
}

/*離婚問題・夫婦関係の悩み*/
@media print, screen and (min-width: 768px) {
  .page_divorce_issue .situation-area .cont-block.inner {
    width: auto;
  }
}
@media only screen and (max-width: 767px) {
  .page_divorce_issue .situation-area .cont-block.inner {
    margin-bottom: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .page_divorce_issue .situation-area .cont-block.inner .cont {
    padding: 30px 40px;
  }
}
@media print, screen and (min-width: 768px) {
  .page_divorce_issue .situation-area .cont-block.inner .cont .list-wrap {
    width: auto;
    margin: 0 0 30px;
    display: block;
  }
}

/*離婚問題・夫婦関係の悩み*/
#step {
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  #step {
    margin-top: 1.2em;
  }
}

.contact-area .heading-wrap .title-main {
  font-size: 28px;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.contact-area .heading-wrap .title-sub {
  font-size: 12px;
  letter-spacing: 0.2em;
}
.contact-area .contact-inner {
  letter-spacing: 0.1em;
  margin-left: 30px;
  margin-right: 30px;
}
@media only screen and (max-width: 767px) {
  .contact-area .contact-inner {
    margin-left: 5px;
    margin-right: 5px;
  }
}
.contact-area .internet-contact .steps {
  gap: 5px;
}
@media print, screen and (min-width: 768px) {
  .contact-area .internet-contact .steps .step {
    width: 40%;
  }
}
.contact-area .confirm-check-wrap {
  letter-spacing: 0.09em;
}

/*# sourceMappingURL=page_divorce-law.css.map */
