@charset "UTF-8";
.p-service-detail-lead__inner--cta {
  align-items: center;
  padding-top: 10px;
  padding-bottom: 20px;
}

.p-service-detail-lead__button {
  width: 560px;
  max-width: 100%;
  line-height: 1.5;
  word-break: auto-phrase;
  background: #b89754;
  background: linear-gradient(145deg, rgb(206, 170, 96) 30%, rgb(152, 122, 62) 60%, rgb(152, 122, 62) 80%, rgb(206, 170, 96) 100%);
}
@media screen and (max-width: 768px) {
  .p-service-detail-lead__button {
    width: 100%;
    height: auto;
    min-height: 64px;
    padding: 16px 48px 16px 20px;
  }
}

.p-service-detail-issue--plain .p-service-detail-issue__title {
  background-color: transparent;
  color: #987a3e;
  padding: 0;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .p-service-detail-issue--plain .p-service-detail-issue__title {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.p-service-detail-issue--plain .p-service-detail-issue__body {
  padding-top: 36px;
  padding-bottom: 36px;
}

.p-service-detail-worries {
  display: flex;
  flex-direction: column;
}

.p-service-detail-worries__item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 8px;
  border-bottom: 1px solid #cccccc;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.7;
  letter-spacing: 0.06em;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-service-detail-worries__item {
    font-size: 15px;
    font-size: 1.5rem;
    padding: 20px 0;
  }
}
.p-service-detail-worries__item::before {
  content: "✓";
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border: 2px solid #987a3e;
  color: #987a3e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 700;
}

.p-section--service-solutions,
.p-section--service-cases,
.p-section--service-process {
  padding-top: 100px;
  padding-bottom: 80px;
}
.p-section--service-solutions .p-section__inner,
.p-section--service-cases .p-section__inner,
.p-section--service-process .p-section__inner {
  width: 1320px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.p-section--service-solutions .c-title__jp,
.p-section--service-cases .c-title__jp,
.p-section--service-process .c-title__jp {
  font-size: 36px;
  font-size: 3.6rem;
  word-break: auto-phrase;
}
@media screen and (max-width: 768px) {
  .p-section--service-solutions .c-title__jp,
  .p-section--service-cases .c-title__jp,
  .p-section--service-process .c-title__jp {
    font-size: 26px;
    font-size: 2.6rem;
  }
}

@media screen and (max-width: 768px) {
  .p-section--service-process .c-title__jp {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

.p-service-detail-solutions {
  counter-reset: solution-counter 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 768px) {
  .p-service-detail-solutions {
    grid-template-columns: 1fr;
  }
}

.p-service-detail-solutions__item {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 240px;
  aspect-ratio: 16/9;
  display: grid;
  padding: 16px;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0;
  text-align: center;
  color: #ffffff;
}
.p-service-detail-solutions__item .p-service-detail-solutions__img {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}
.p-service-detail-solutions__item::before {
  counter-increment: solution-counter;
  content: "0" counter(solution-counter);
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  font-size: 4.8rem;
  line-height: 1;
  font-style: italic;
  font-weight: 700;
  flex: 1 1 50%;
  align-self: end;
}
.p-service-detail-solutions__item .p-service-detail-solutions__label {
  position: relative;
  z-index: 1;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.7;
  letter-spacing: 0.06em;
  font-weight: 700;
  margin-top: 1em;
  flex: 1 1 50%;
  word-break: auto-phrase;
}

.p-service-detail-case__selector {
  display: grid;
  position: relative;
  z-index: 1;
}
.p-service-detail-case__selector--column2 {
  grid-template-columns: repeat(2, 1fr);
}
.p-service-detail-case__selector--column3 {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 1024px) {
  .p-service-detail-case__selector--column2, .p-service-detail-case__selector--column3 {
    grid-template-columns: 1fr;
  }
}

.p-service-detail-case__tab {
  display: flex;
  min-width: 0;
}

.p-service-detail-case__tab-button {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 32px 36px;
  text-align: left;
  cursor: pointer;
  color: inherit;
  font: inherit;
  appearance: none;
  background-color: transparent;
  border: 1px solid #e6e6e6;
  transition: background-color 0.2s, border-color 0.2s;
}
@media screen and (max-width: 768px) {
  .p-service-detail-case__tab-button {
    padding: 24px 20px;
    gap: 16px;
  }
}
.p-service-detail-case__tab-button[data-selected=true] {
  background-color: #ffffff;
}
.p-service-detail-case__tab-button[data-selected=true] {
  position: relative;
  z-index: 1;
  border-bottom-color: #ffffff;
}

.p-service-detail-case__letter {
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-size: 4rem;
  line-height: 1;
  font-style: italic;
  font-weight: 700;
  color: #987a3e;
  flex-shrink: 0;
}

.p-service-detail-case__meta {
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: #987a3e;
  margin-bottom: 8px;
}

.p-service-detail-case__body {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.7;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.p-service-detail-cases__content-wrapper {
  background-color: #ffffff;
  border: 1px solid #e6e6e6;
  border-top: none;
  padding: 48px 48px 56px;
}
@media screen and (max-width: 768px) {
  .p-service-detail-cases__content-wrapper {
    min-height: 0;
    padding: 28px 20px 36px;
  }
}

.p-service-detail-cases__content {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  pointer-events: none;
}
.p-service-detail-cases__content.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.p-service-detail-cases__content-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.06em;
  color: #333333;
}

.p-service-detail-cases__content-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 40px;
}
@media screen and (max-width: 768px) {
  .p-service-detail-cases__content-list {
    grid-template-columns: 1fr;
  }
}

.p-service-detail-cases__content-item {
  padding: 16px 0;
  border-bottom: 1px solid #e6e6e6;
}

.p-service-detail-records {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.p-service-detail-records__item {
  background-color: #ffffff;
  interpolate-size: allow-keywords;
}
.p-service-detail-records__item::details-content {
  height: 0;
  overflow: clip;
  transition: height 0.35s ease, content-visibility 0.35s allow-discrete;
}
.p-service-detail-records__item[open]::details-content {
  height: auto;
}

.p-service-detail-records__summary {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 28px 36px;
  cursor: pointer;
  list-style: none;
}
.p-service-detail-records__summary::-webkit-details-marker {
  display: none;
}
.p-service-detail-records__summary::marker {
  content: "";
}
.p-service-detail-records__summary::after {
  content: "+";
  margin-left: auto;
  flex-shrink: 0;
  color: #b89754;
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 1;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .p-service-detail-records__summary {
    gap: 16px;
    padding: 22px 20px;
  }
}

.p-service-detail-records__item[open] .p-service-detail-records__summary::after {
  content: "−";
}

.p-service-detail-records__num {
  flex-shrink: 0;
  width: 1.2em;
  font-family: "Montserrat", sans-serif;
  font-style: italic;
  font-weight: 600;
  color: #b89754;
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 1;
}

.p-service-detail-records__title {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: #333333;
}

.p-service-detail-records__meta {
  color: #b89754;
  font-weight: 500;
}

.p-service-detail-records__body {
  padding: 8px 36px 32px 92px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.04em;
  color: #666;
}
@media screen and (max-width: 768px) {
  .p-service-detail-records__body {
    padding: 4px 20px 24px;
  }
}

.p-service-detail-process {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .p-service-detail-process {
    flex-direction: column;
    align-items: center;
  }
}

.p-service-detail-process__item {
  flex: 1 1 0;
  max-width: 8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-service-detail-process__item {
    max-width: none;
    width: 100%;
    flex-direction: row;
    align-items: stretch;
  }
}

.p-service-detail-process__num {
  width: 100%;
  background-color: #b89754;
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
  text-align: center;
  padding: 18px 8px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.p-service-detail-process__num small {
  font-size: 11px;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  font-weight: 500;
}
.p-service-detail-process__num b {
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 1;
  font-weight: 700;
  font-style: italic;
}
@media screen and (max-width: 768px) {
  .p-service-detail-process__num {
    width: 80px;
    flex-shrink: 0;
  }
}

.p-service-detail-process__label {
  width: 100%;
  background-color: #ffffff;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.7;
  letter-spacing: 0.12em;
  font-weight: 700;
  padding: 28px 0;
  display: flex;
  align-items: center;
  flex-grow: 1;
}
@media screen and (max-width: 768px) {
  .p-service-detail-process__label {
    writing-mode: horizontal-tb;
    min-height: 0;
    padding: 20px 16px;
  }
}

.p-service-detail-process__arrow {
  flex: 0 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b89754;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 700;
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  .p-service-detail-process__arrow {
    display: none;
  }
}

.p-section--service-mid-cta {
  padding: 48px 0;
  background-color: #b89754;
}
.p-section--service-mid-cta .p-section__inner {
  width: 960px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 1024px) {
  .p-section--service-mid-cta .p-section__inner {
    grid-template-columns: 1fr;
  }
}

.p-service-detail-mid-cta__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 88px;
  padding: 24px 36px;
  background-color: #ffffff;
  color: #333333;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.06em;
  font-weight: 700;
}
.p-service-detail-mid-cta__link:not(:last-child) {
  border-right: 1px solid #cccccc;
}
@media screen and (max-width: 1024px) {
  .p-service-detail-mid-cta__link:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #cccccc;
  }
}
.p-service-detail-mid-cta__link:hover {
  background-color: #f7f4ee;
}
.p-service-detail-mid-cta__link::after {
  content: "";
  display: block;
  width: 80px;
  height: 80px;
  mix-blend-mode: darken;
}
.p-service-detail-mid-cta__link--mail::after {
  background: center/contain no-repeat url("/src/images/service/financial-strategy/icon-mail.png");
}
.p-service-detail-mid-cta__link--download::after {
  background: center/contain no-repeat url("/src/images/service/financial-strategy/icon-download.png");
}
/*# sourceMappingURL=service--financial-strategy.css.map */
