@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}
@media screen and (min-width: 768px) {
  html {
    scroll-padding-top: 80px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* CMSが空要素に &nbsp; を入れると行ボックスができるため、アンカー専用要素だけ高さを消す */
#top {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  line-height: 0;
  font-size: 0;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #3e3a39;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

picture {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid #344877;
  outline-offset: 2px;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 0 0 1em;
}

p:last-child {
  margin-bottom: 0;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

.l-header {
  position: fixed;
  display: flex;
  align-items: center;
  height: 60px;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  flex-shrink: 0;
  background-color: #ffffff;
  box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 768px) {
  .l-header {
    height: 80px;
  }
}

.l-header-inner {
  display: flex;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 20px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .l-header-inner {
    padding: 0 32px;
  }
}
@media screen and (min-width: 1024px) {
  .l-header-inner {
    padding: 0 52px;
  }
}

.l-header-logo {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
}
.l-header-logo a {
  display: inline-block;
  line-height: 0;
  vertical-align: sub;
}
@media screen and (min-width: 768px) {
  .l-header-logo a {
    vertical-align: middle;
  }
}
.l-header-logo img {
  display: block;
  width: 160px;
  max-width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .l-header-logo img {
    width: 276px;
  }
}

.l-header-navWrapper {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 14px;
}

.l-header-nav {
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  z-index: 99;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  border-bottom: 1px solid #dddddd;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s;
}
.l-header-nav.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
@media screen and (min-width: 768px) {
  .l-header-nav {
    top: 80px;
  }
}
@media screen and (min-width: 1224px) {
  .l-header-nav {
    position: static;
    display: block;
    margin: 0 20px 0 0;
    padding: 0;
    background: transparent;
    border-bottom: none;
    box-shadow: none;
    visibility: visible;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    transition: none;
  }
}

.l-header-navList {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 8px 0 0;
  list-style: none;
}
@media screen and (min-width: 1224px) {
  .l-header-navList {
    flex-direction: row;
    align-items: center;
    padding: 0;
  }
}

.l-header-navItem {
  margin: 0;
  border-bottom: 1px solid #dddddd;
}
.l-header-navItem:last-child {
  border-bottom: none;
}
@media screen and (min-width: 1224px) {
  .l-header-navItem {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 23px;
    padding-left: 23px;
    padding-top: 8px;
    padding-bottom: 9px;
    border-bottom: none;
    border-left: 1px solid #dddddd;
  }
  .l-header-navItem:first-child {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
  }
}

.l-header-navLink {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 16px 20px;
  transition: background-color 0.2s, opacity 0.2s;
}
.l-header-navLink:hover {
  background-color: #f2f4f7;
}
@media screen and (min-width: 1224px) {
  .l-header-navLink {
    align-items: center;
    padding: 0;
    text-align: center;
  }
  .l-header-navLink:hover {
    background-color: transparent;
    opacity: 0.72;
  }
}

.l-header-navTitle {
  font-size: clamp(15px, 15px + (16px - 15px) * (100vw - 375px) / (768px - 375px), 16px);
  font-weight: 500;
  line-height: 1.4;
  color: #3e3a39;
}

.l-header-navText {
  font-size: clamp(18px, 18px + (22px - 18px) * (100vw - 375px) / (768px - 375px), 22px);
  font-weight: 700;
  line-height: 1.4;
  color: #3e3a39;
}

.l-header-contact {
  display: block;
  margin: 0;
  flex-shrink: 0;
}

.l-header-menuBtn {
  position: relative;
  display: inline-block;
  width: 26px;
  height: 24px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  box-sizing: border-box;
  flex-shrink: 0;
  transition: all 0.4s;
}
@media screen and (min-width: 1224px) {
  .l-header-menuBtn {
    display: none;
  }
}
.l-header-menuBtn span {
  display: inline-block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #333;
  border-radius: 4px;
  box-sizing: border-box;
  pointer-events: none;
  transition: all 0.4s;
}
.l-header-menuBtn span:nth-of-type(1) {
  top: 0;
}
.l-header-menuBtn span:nth-of-type(2) {
  top: 10px;
}
.l-header-menuBtn span:nth-of-type(3) {
  top: 20px;
}
.l-header-menuBtn[aria-expanded=true] span:nth-of-type(1) {
  top: -4px;
  transform: translateY(16px) rotate(-45deg);
}
.l-header-menuBtn[aria-expanded=true] span:nth-of-type(2) {
  opacity: 0;
}
.l-header-menuBtn[aria-expanded=true] span:nth-of-type(3) {
  top: 28px;
  transform: translateY(-16px) rotate(45deg);
}
@media (prefers-reduced-motion: reduce) {
  .l-header-menuBtn {
    transition: none;
  }
  .l-header-menuBtn span {
    transition: none;
  }
}

#wrapper > .cv,
#wrapper > footer:not(.l-footer),
#wrapper > p.close,
ol[itemtype="http://schema.org/BreadcrumbList"],
#pagetitle,
.main.estimate_add {
  display: none !important;
}

.l-footer {
  background-color: #1a2830;
  background-image: url("/dcms_media/image/footer_back.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.l-footer-inner {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 375px) {
  .l-footer-inner {
    padding-left: 35px;
    padding-right: 35px;
  }
}
@media screen and (min-width: 1265px) {
  .l-footer-inner {
    padding-left: 0;
    padding-right: 0;
  }
}
.l-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: 32px;
  padding-bottom: 36px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    min-height: 108px;
    padding-top: 24px;
    padding-bottom: 24px;
    text-align: left;
  }
}

.l-footer-brand {
  flex-shrink: 0;
}

.l-footer-logo {
  margin: 0;
  line-height: 0;
}
.l-footer-logo a {
  display: block;
  line-height: 0;
}
.l-footer-logo a:hover {
  opacity: 0.85;
}
.l-footer-logo img {
  display: block;
  width: auto;
  height: 32px;
}
@media screen and (min-width: 768px) {
  .l-footer-logo img {
    height: 36px;
  }
}

.l-footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: column;
  gap: 8px 20px;
  margin-top: 20px;
  color: #ffffff;
  text-align: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .l-footer-legal {
    margin-top: 10px;
    gap: 8px 24px;
    text-align: left;
    justify-content: flex-start;
    flex-direction: row;
  }
}

.l-footer-nav {
  margin: 0;
  font-size: clamp(12px, 12px + (13px - 12px) * (100vw - 375px) / (768px - 375px), 13px);
  line-height: 1.6;
}
.l-footer-nav a {
  color: inherit;
  text-decoration: none;
}
.l-footer-nav a:hover {
  opacity: 0.72;
}

.l-footer-copy {
  margin: 0;
  font-size: clamp(12px, 12px + (13px - 12px) * (100vw - 375px) / (768px - 375px), 13px);
  line-height: 1.6;
}
.l-footer-copy small {
  font-size: inherit;
}

.l-footer-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
  color: #ffffff;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .l-footer-info {
    flex-direction: row;
    align-items: center;
    gap: 48px;
  }
}

.l-footer-address,
.l-footer-tel {
  margin: 0;
  font-size: clamp(12px, 12px + (13px - 12px) * (100vw - 375px) / (768px - 375px), 13px);
  line-height: 1.7;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .l-footer-address,
  .l-footer-tel {
    line-height: 1.8;
  }
}

.l-footer-telLink {
  color: inherit;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .l-footer-telLink {
    pointer-events: none;
  }
}
.l-footer-telLink:hover {
  opacity: 0.85;
}

.l-main {
  padding-top: 60px;
  overflow-x: hidden;
}
@media screen and (min-width: 768px) {
  .l-main {
    padding-top: 80px;
  }
}

.u-sp-none {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-sp-none {
    display: inline;
  }
}

.u-tb-none {
  display: none;
}
@media screen and (min-width: 1024px) {
  .u-tb-none {
    display: inline;
  }
}

@media screen and (min-width: 768px) {
  .u-pc-none {
    display: none;
  }
}

.m-contactBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 30px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  color: #ffffff;
  background: linear-gradient(-90deg, #344877 0%, #036eb8 100%);
  border-radius: 8px;
  transition: opacity 0.2s;
}
.m-contactBtn:hover {
  opacity: 0.88;
}
@media screen and (min-width: 768px) {
  .m-contactBtn {
    gap: 7px;
    min-height: 40px;
    padding: 15px 24px 15px 26px;
    font-size: clamp(16px, 16px + (22px - 16px) * (100vw - 375px) / (768px - 375px), 22px);
    border-radius: 10px;
  }
}
@media screen and (min-width: 768px) {
  .m-contactBtn span {
    transform: translateY(-2px);
  }
}

.m-contactBtn-icon {
  width: 14px;
  height: 10px;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .m-contactBtn-icon {
    width: 40px;
    height: 30px;
  }
}

.m-contactBtn__block {
  width: 100%;
  max-width: 280px;
  min-height: 48px;
  font-size: 15px;
}

.p-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  color: #ffffff;
  background: url("/dcms_media/image/img_hero_bg.jpg") center/cover no-repeat;
  overflow: hidden;
}
.p-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: -2px;
  width: calc(100% + 4px);
  height: 100%;
  background: url("/dcms_media/image/img_hero_bg_wave_sp.png") top center/100% 90vw no-repeat;
  z-index: 0;
  pointer-events: none;
}
@media screen and (min-width: 1024px) {
  .p-hero::before {
    left: 0;
    width: 100%;
    background: url("/dcms_media/image/img_hero_bg_wave.png") top center/125% auto no-repeat;
  }
}
@media screen and (min-width: 1780px) {
  .p-hero::before {
    background-size: 100% 380px;
  }
}
@media screen and (min-width: 1024px) {
  .p-hero {
    display: grid;
    grid-template-columns: minmax(0, 524px) clamp(690px, 100vw - 430px, 1050px);
    -moz-column-gap: 40px;
         column-gap: 40px;
    align-items: start;
    padding-left: max(40px, (100% - 1680px) / 2 + 40px);
    padding-right: 0;
  }
}

.p-hero-inner {
  display: contents;
}

.p-hero-copy {
  display: contents;
}
@media screen and (min-width: 1024px) {
  .p-hero-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 27px;
    order: 0;
    grid-column: 1;
    grid-row: 3;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 100%;
    min-width: 0;
    padding-left: 80px;
    box-sizing: border-box;
  }
}

.p-hero-title {
  position: relative;
  z-index: 1;
  order: 1;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 30px 20px 0;
  text-align: center;
}
@media screen and (min-width: 375px) {
  .p-hero-title {
    padding: 30px 35px 0;
  }
}
@media screen and (min-width: 1024px) {
  .p-hero-title {
    order: 0;
    grid-column: 1/-1;
    width: auto;
    max-width: 1600px;
    margin: 0 0 40px;
    padding: 48px 40px 0 0;
    text-align: center;
  }
}
.p-hero-title img {
  width: 100%;
  max-width: 1600px;
  height: auto;
}

.p-hero-body {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  order: 3;
  padding: 0 20px;
}
@media screen and (min-width: 375px) {
  .p-hero-body {
    padding: 0 35px;
  }
}
@media screen and (min-width: 1024px) {
  .p-hero-body {
    order: 0;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 100%;
    padding: 92px 0 0;
    margin-top: 7vw;
    margin-bottom: 0;
    margin-left: 0;
  }
}
@media screen and (min-width: 1780px) {
  .p-hero-body {
    margin-top: 145px;
  }
}

.p-hero-lead {
  margin: 35px 0 30px;
  font-size: clamp(22px, 22px + (49px - 22px) * (100vw - 375px) / (768px - 375px), 49px);
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (min-width: 1024px) {
  .p-hero-lead {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    margin: 0;
    white-space: nowrap;
  }
}

.p-hero-text {
  margin: 0 0 28px;
  font-size: clamp(16px, 16px + (20px - 16px) * (100vw - 375px) / (768px - 375px), 20px);
  line-height: 2;
  opacity: 0.95;
}
@media screen and (min-width: 1024px) {
  .p-hero-text {
    max-width: none;
    margin-bottom: 0;
    white-space: nowrap;
  }
}

.p-hero-catch {
  position: relative;
  z-index: 1;
  order: 4;
  margin: 0;
  padding: 35px 0;
  font-size: clamp(16px, 22px + (16px - 22px) * (100vw - 375px) / (768px - 375px), 22px);
  font-weight: 700;
  line-height: 1.5;
  color: #524774;
}
@media screen and (min-width: 1024px) {
  .p-hero-catch {
    order: 0;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 100%;
    margin: 0 0 50px !important;
    padding: 0;
    line-height: 1.6;
    color: inherit;
    box-sizing: border-box;
  }
}
@media screen and (min-width: 768px) {
  .p-hero-catch .u-sp-none {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .p-hero-catch .u-sp-none {
    display: inline;
  }
}
.p-hero-catch > span:not(.p-hero-catch-group) {
  display: inline-block;
  margin: 0 0 15px;
  padding: 6px 14px;
  font-size: clamp(22px, 22px + (26px - 22px) * (100vw - 375px) / (768px - 375px), 26px);
  line-height: inherit;
  color: inherit;
  background-color: #ffffff;
  border-radius: 2px;
  max-width: 100%;
  white-space: normal;
  box-sizing: border-box;
}
@media screen and (min-width: 1024px) {
  .p-hero-catch > span:not(.p-hero-catch-group) {
    width: -moz-fit-content;
    width: fit-content;
    max-width: none;
    margin-bottom: 15px;
    padding: 4px 14px 7px;
    line-height: 1.5;
    color: #524774;
    background-color: #ffffff;
    border-radius: 2px;
    white-space: nowrap;
  }
}
.p-hero-catch-group {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  margin: 0 0 15px;
  padding: 6px 14px;
  font-size: clamp(22px, 22px + (26px - 22px) * (100vw - 375px) / (768px - 375px), 26px);
  line-height: inherit;
  color: inherit;
  background-color: #ffffff;
  border-radius: 2px;
  box-sizing: border-box;
  white-space: nowrap;
}
@media screen and (max-width: 400px) {
  .p-hero-catch-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    white-space: normal;
    background-color: transparent;
    margin: 0;
    padding: 0;
  }
}
@media screen and (min-width: 1024px) {
  .p-hero-catch-group {
    margin-bottom: 15px;
    padding: 4px 14px 7px;
    line-height: 1.5;
    color: #524774;
  }
}
.p-hero-catch-group > span {
  display: inline;
  margin: 0;
  padding: 0;
  background-color: transparent;
  border-radius: 0;
  white-space: nowrap;
}
@media screen and (max-width: 400px) {
  .p-hero-catch-group > span {
    display: block;
    margin: 0;
    padding: 6px 14px;
    line-height: inherit;
    color: inherit;
    background-color: #ffffff;
    border-radius: 2px;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1680px) {
  .p-hero-catch-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 15px;
    margin-bottom: 15px;
    padding: 0;
    background-color: transparent;
    white-space: normal;
  }
  .p-hero-catch-group > span {
    display: inline-block;
    margin: 0;
    padding: 4px 14px 7px;
    background-color: #ffffff;
    border-radius: 2px;
    white-space: nowrap;
    font-size: clamp(17px, 1.7vw, 26px);
  }
  .p-hero-catch > span:not(.p-hero-catch-group) {
    font-size: clamp(17px, 1.7vw, 26px);
  }
}
.p-hero-visual {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  order: 2;
  margin: 0;
  min-width: 0;
  line-height: 0;
}
@media screen and (min-width: 1024px) {
  .p-hero-visual {
    order: 0;
    grid-column: 2;
    grid-row: 3;
    flex: 0 0 auto;
    width: 100%;
    max-width: none;
    margin-top: 205px;
    padding: 0;
    align-self: end;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
  }
}
@media screen and (min-width: 1680px) {
  .p-hero-visual {
    margin-top: 240px;
  }
}
.p-hero-visual picture {
  display: block;
  width: 100%;
  max-width: 1050px;
}
.p-hero-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.p-onestop {
  padding: 50px 0 85px;
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .p-onestop {
    padding: 75px 0 100px;
  }
}

.p-onestop-inner {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 375px) {
  .p-onestop-inner {
    padding-left: 35px;
    padding-right: 35px;
  }
}
@media screen and (min-width: 1265px) {
  .p-onestop-inner {
    padding-left: 0;
    padding-right: 0;
  }
}
.p-onestop-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  -moz-column-gap: 12px;
       column-gap: 12px;
  align-items: stretch;
}
@media screen and (min-width: 768px) {
  .p-onestop-inner {
    display: block;
  }
}

.p-onestop-label {
  grid-column: 1;
  grid-row: 1/-1;
  display: flex;
  align-items: center;
  width: 40px;
  margin: 0;
  padding: 20px 0 16px;
  font-size: clamp(21px, 21px + (28px - 21px) * (100vw - 375px) / (768px - 375px), 28px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.18em;
  color: #3e3a39;
  background-color: #e9eeef;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), 50% 100%, 0 calc(100% - 12px));
}
@media screen and (min-width: 768px) {
  .p-onestop-label {
    grid-column: auto;
    grid-row: auto;
    display: block;
    width: 100%;
    margin: 0 0 36px;
    padding: 14px 48px 14px 24px;
    letter-spacing: 0.08em;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 50%, calc(100% - 28px) 100%, 0 100%);
  }
}

.p-onestop-title {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-onestop-title {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 8px 16px;
    margin: 0 0 40px;
    font-size: clamp(40px, 40px + (63px - 40px) * (100vw - 768px) / (1024px - 768px), 63px);
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    white-space: nowrap;
  }
}
@media screen and (min-width: 1100px) {
  .p-onestop-title {
    -moz-column-gap: clamp(16px, 16px + (55px - 16px) * (100vw - 1100px) / (1265px - 1100px), 55px);
         column-gap: clamp(16px, 16px + (55px - 16px) * (100vw - 1100px) / (1265px - 1100px), 55px);
  }
}
.p-onestop-title [aria-hidden=true] {
  font-weight: 700;
  color: #333333;
}

.p-onestop-title__analysis {
  color: #344877;
}

.p-onestop-title__plan {
  color: #025fa1;
}

.p-onestop-title__method {
  color: #4b3f70;
}

.p-onestop-list {
  grid-column: 2;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 768px) {
  .p-onestop-list {
    grid-column: auto;
    grid-template-columns: repeat(3, 1fr);
    gap: 66px;
  }
}

.p-onestop-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 15px;
  align-items: center;
  margin: 0;
  padding: 0 0 4px;
}
@media screen and (min-width: 768px) {
  .p-onestop-item {
    display: block;
    padding: 0;
  }
}
.p-onestop-item:not(:last-child)::after {
  content: "×";
  display: block;
  margin: 8px 0 4px 24px;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  color: #333333;
}
@media screen and (min-width: 375px) {
  .p-onestop-item:not(:last-child)::after {
    margin-left: 50px;
  }
}
@media screen and (min-width: 768px) {
  .p-onestop-item:not(:last-child)::after {
    content: none;
    display: none;
  }
}

.p-onestop-itemName {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
@media screen and (min-width: 375px) {
  .p-onestop-itemName {
    font-size: 34px;
  }
}
@media screen and (min-width: 768px) {
  .p-onestop-itemName {
    display: none;
  }
}

.p-onestop-itemName__analysis {
  color: #344877;
}

.p-onestop-itemName__plan {
  color: #025fa1;
}

.p-onestop-itemName__method {
  color: #4b3f70;
}

.p-onestop-itemTitle {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin: 0;
  padding: 8px 6px;
  min-width: 0;
  font-size: clamp(16.2px, 16.2px + (28px - 16.2px) * (100vw - 375px) / (768px - 375px), 28px);
  font-weight: 700;
  line-height: 1.45;
  color: #ffffff;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-onestop-itemTitle {
    min-height: 157px;
    margin-bottom: 20px;
    padding: 24px 16px;
    line-height: 1.6;
  }
}

.p-onestop-itemTitle__analysis {
  background-color: #344877;
}

.p-onestop-itemTitle__plan {
  background-color: #025fa1;
}

.p-onestop-itemTitle__method {
  background-color: #4b3f70;
}

.p-onestop-itemText {
  grid-column: 1/-1;
  margin: 0;
  font-size: clamp(14px, 14px + (18px - 14px) * (100vw - 375px) / (768px - 375px), 18px);
  line-height: 1.9;
  color: #3e3a39;
}
@media screen and (min-width: 768px) {
  .p-onestop-itemText {
    grid-column: auto;
  }
}

.p-strength {
  padding: 0 0 80px;
  background-color: #ffffff;
}
@media screen and (min-width: 1024px) {
  .p-strength {
    padding: 0 0 136px;
  }
}

.p-strength-inner {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 375px) {
  .p-strength-inner {
    padding-left: 35px;
    padding-right: 35px;
  }
}
@media screen and (min-width: 1265px) {
  .p-strength-inner {
    padding-left: 0;
    padding-right: 0;
  }
}
.p-strength-inner {
  display: grid;
  gap: 40px;
  align-items: start;
}
@media screen and (min-width: 1024px) {
  .p-strength-inner {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
    gap: 140px;
  }
}

.p-strength-title {
  margin: 0 0 28px;
  font-size: clamp(36px, 36px + (63px - 36px) * (100vw - 375px) / (768px - 375px), 63px);
  font-weight: 900;
  line-height: 1.4;
  color: #3e3a39;
}
@media screen and (min-width: 1024px) {
  .p-strength-title br {
    display: none;
  }
}

.p-strength-titleEm {
  color: #344877;
}

.p-strength-lead {
  margin: 0 0 28px;
  font-size: clamp(22px, 22px + (36px - 22px) * (100vw - 375px) / (768px - 375px), 36px);
  font-weight: 700;
  line-height: 1.8;
  color: #3e3a39;
}

.p-strength-text {
  margin: 0 0 1.2em;
  font-size: clamp(16px, 16px + (20px - 16px) * (100vw - 375px) / (768px - 375px), 20px);
  line-height: 2;
  color: #3e3a39;
  letter-spacing: -0.03em;
}
.p-strength-text:last-child {
  margin-bottom: 0;
}

.p-strength-visual {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  min-width: 0;
}
@media screen and (min-width: 1024px) {
  .p-strength-visual {
    gap: 20px;
  }
}
.p-strength-visual img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}
@media screen and (min-width: 1024px) {
  .p-strength-visual img {
    width: 130%;
    max-width: 130%;
    border-radius: 20px;
  }
}

.p-feature {
  padding: 70px 0 0;
  background-color: #eef3f8;
}
@media screen and (min-width: 1024px) {
  .p-feature {
    padding: 90px 0 60px;
  }
}

.p-feature + .p-feature {
  padding-top: 60px;
  padding-bottom: 64px;
}
@media screen and (min-width: 1024px) {
  .p-feature + .p-feature {
    padding-bottom: 100px;
  }
}

.p-feature-inner {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 375px) {
  .p-feature-inner {
    padding-left: 35px;
    padding-right: 35px;
  }
}
@media screen and (min-width: 1265px) {
  .p-feature-inner {
    padding-left: 0;
    padding-right: 0;
  }
}

.p-feature-head {
  display: grid;
  grid-template-columns: auto auto auto;
  justify-content: start;
  align-items: start;
  -moz-column-gap: 12px;
       column-gap: 12px;
  row-gap: 8px;
  margin-bottom: 38px;
}
@media screen and (min-width: 1024px) {
  .p-feature-head {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 40px;
    margin-bottom: 90px;
  }
}

.p-feature-num {
  align-self: start;
  margin: 0;
  font-size: clamp(90px, 90px + (160px - 90px) * (100vw - 375px) / (768px - 375px), 160px);
  font-weight: 500;
  line-height: 1;
  transform: translateX(-15px);
}
@media screen and (min-width: 1024px) {
  .p-feature-num {
    align-self: flex-end;
    transform: translateX(6px);
  }
}

.p-feature-headBody {
  display: contents;
}
@media screen and (min-width: 1024px) {
  .p-feature-headBody {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    gap: 24px 100px;
    margin-top: 40px;
  }
}

.p-feature-side {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  gap: 14px;
  width: auto;
  grid-column: 1;
  grid-row: 1;
}
@media screen and (min-width: 1024px) {
  .p-feature-side {
    width: auto;
    gap: 16px;
  }
}

.p-feature-head:not(.p-feature-head__02) {
  grid-template-columns: minmax(0, 1fr) auto auto auto minmax(0, 1fr);
  justify-content: center;
  justify-items: start;
  align-items: start;
  -moz-column-gap: 8px;
       column-gap: 8px;
  row-gap: 0;
}
@media screen and (min-width: 1024px) {
  .p-feature-head:not(.p-feature-head__02) {
    margin-bottom: 80px;
  }
}
@media screen and (min-width: 375px) {
  .p-feature-head:not(.p-feature-head__02) {
    -moz-column-gap: 12px;
         column-gap: 12px;
  }
}
.p-feature-head:not(.p-feature-head__02) .p-feature-side {
  display: contents;
}
@media screen and (min-width: 1024px) {
  .p-feature-head:not(.p-feature-head__02) .p-feature-side {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
    width: auto;
  }
}
.p-feature-head:not(.p-feature-head__02) .p-feature-sideTexts {
  display: contents;
}
.p-feature-head:not(.p-feature-head__02) .p-feature-flow {
  grid-column: 2;
  grid-row: 1;
  margin-right: 8px;
}
@media screen and (min-width: 1024px) {
  .p-feature-head:not(.p-feature-head__02) .p-feature-flow {
    grid-column: unset;
    grid-row: unset;
    margin-right: 0;
  }
}
.p-feature-head:not(.p-feature-head__02) .p-feature-sideLead {
  grid-column: 3;
  grid-row: 1;
  padding-top: clamp(105px, 105px + (187px - 105px) * (100vw - 375px) / (768px - 375px), 187px);
  font-weight: 500;
  line-height: 1.85;
}
@media screen and (max-width: 374px) {
  .p-feature-head:not(.p-feature-head__02) .p-feature-sideLead {
    padding-top: 75px;
  }
}
@media screen and (min-width: 1024px) {
  .p-feature-head:not(.p-feature-head__02) .p-feature-sideLead {
    grid-column: unset;
    grid-row: unset;
    padding-top: 0;
    font-weight: 700;
  }
}
.p-feature-head:not(.p-feature-head__02) .p-feature-num {
  grid-column: 4;
  grid-row: 1;
  color: #344877;
}
@media screen and (min-width: 1024px) {
  .p-feature-head:not(.p-feature-head__02) .p-feature-num {
    grid-column: unset;
    grid-row: unset;
    justify-self: unset;
  }
}
@media screen and (max-width: 575px) {
  .p-feature-head:not(.p-feature-head__02) .p-feature-num {
    transform: translateX(-5px);
  }
}
@media screen and (max-width: 374px) {
  .p-feature-head:not(.p-feature-head__02) .p-feature-num {
    transform: translate(-2px, -27px);
  }
}
.p-feature-head:not(.p-feature-head__02) .p-feature-sideTitle {
  grid-column: 4;
  grid-row: 1;
  padding-top: clamp(105px, 105px + (187px - 105px) * (100vw - 375px) / (768px - 375px), 187px);
  line-height: 1.5;
}
@media screen and (max-width: 374px) {
  .p-feature-head:not(.p-feature-head__02) .p-feature-sideTitle {
    padding-top: 75px;
  }
}
.p-feature-head:not(.p-feature-head__02) .p-feature-sideTitle span {
  display: block;
}
@media screen and (min-width: 1024px) {
  .p-feature-head:not(.p-feature-head__02) .p-feature-sideTitle {
    padding-top: 0;
    grid-column: unset;
    grid-row: unset;
    line-height: 1.7;
  }
}
.p-feature-head:not(.p-feature-head__02) .p-feature-main {
  grid-column: 1/-1;
  grid-row: 2;
  margin-top: 0;
}
@media screen and (min-width: 1024px) {
  .p-feature-head:not(.p-feature-head__02) .p-feature-main {
    grid-column: unset;
    grid-row: unset;
    margin-top: 0;
  }
}

.p-feature-flow {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0;
  width: auto;
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-feature-flow li {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 auto;
}
.p-feature-flow li:not(:last-child)::after {
  content: "";
  display: block;
  box-sizing: border-box;
  width: 10px;
  height: 10px;
  margin: 12px 0 14px;
  border-style: solid;
  border-width: 0 2px 2px 0;
  border-color: #344877;
  transform: rotate(45deg);
}
@media screen and (min-width: 375px) {
  .p-feature-flow li:not(:last-child)::after {
    width: clamp(10px, 10px + (15px - 10px) * (100vw - 375px) / (768px - 375px), 15px);
    height: clamp(10px, 10px + (15px - 10px) * (100vw - 375px) / (768px - 375px), 15px);
  }
}
@media screen and (min-width: 1024px) {
  .p-feature-flow li:not(:last-child)::after {
    margin: 8px 0 12px;
    border-width: 0 3px 3px 0;
  }
}
.p-feature-flow span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  padding: 4px 2px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  word-break: keep-all;
  color: #344877;
  background-color: #ffffff;
  border: 3px solid #344877;
  border-radius: 50%;
}
@media screen and (min-width: 375px) {
  .p-feature-flow span {
    width: clamp(116px, 116px + (150px - 116px) * (100vw - 375px) / (768px - 375px), 150px);
    height: clamp(116px, 116px + (150px - 116px) * (100vw - 375px) / (768px - 375px), 150px);
    padding: 6px 4px;
    font-size: clamp(16px, 16px + (20px - 16px) * (100vw - 375px) / (768px - 375px), 20px);
  }
}
@media screen and (min-width: 1024px) {
  .p-feature-flow span {
    padding: 10px;
    line-height: 1.35;
    word-break: normal;
    border-width: 3px;
    border-color: #2d527e;
  }
}

.p-feature-sideLead,
.p-feature-sideNote {
  margin: 0;
  line-height: 1.7;
  writing-mode: vertical-rl;
}

.p-feature-sideLead {
  margin: 0;
  font-size: clamp(18px, 18px + (28px - 18px) * (100vw - 375px) / (768px - 375px), 28px);
  font-weight: 700;
  line-height: 1.7;
  color: #3e3a39;
}

.p-feature-sideNote {
  font-size: clamp(13px, 13px + (28px - 13px) * (100vw - 375px) / (768px - 375px), 28px);
  font-weight: 500;
  line-height: 1.8;
  color: #3e3a39;
}

.p-feature-sideTitle {
  margin: 0;
  font-size: clamp(32px, 32px + (50px - 32px) * (100vw - 375px) / (768px - 375px), 50px);
  font-weight: 900;
  line-height: 1.6;
  color: #344877;
  writing-mode: vertical-rl;
}
@media screen and (min-width: 1024px) {
  .p-feature-sideTitle {
    line-height: 1.7;
  }
}

.p-feature-main {
  min-width: 0;
  flex: 1 1 auto;
  grid-column: 1/-1;
}

.p-feature-lead,
.p-feature-subTitle {
  font-weight: 900;
  color: #344877;
  font-size: 0;
}
.p-feature-lead span,
.p-feature-subTitle span {
  padding-bottom: 2px;
  border-bottom: 1px solid #3e3a39;
}

.p-feature-lead {
  margin: 55px 0 30px;
  line-height: 2;
}
.p-feature-lead span {
  display: inline;
  font-size: clamp(22px, 22px + (35px - 22px) * (100vw - 375px) / (768px - 375px), 35px);
}
@media screen and (min-width: 1024px) {
  .p-feature-lead {
    margin-top: 0;
    margin-bottom: 40px;
    line-height: 2;
  }
}

.p-feature-text {
  margin: 0;
  font-size: clamp(16px, 16px + (20px - 16px) * (100vw - 375px) / (768px - 375px), 20px);
  line-height: 2;
  color: #3e3a39;
}

.p-feature-main .p-feature-text {
  margin-bottom: 45px;
}

.p-feature-tags {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 14px;
  margin: 0 12px;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 375px) {
  .p-feature-tags {
    margin: 0 40px;
  }
}
.p-feature-tags li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 8px 8px;
  font-size: clamp(18px, 18px + (25px - 18px) * (100vw - 375px) / (768px - 375px), 25px);
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  color: #231815;
  background-color: #fff;
  border-radius: 8px;
}
.p-feature-tags li span {
  display: inline;
  font-size: clamp(13px, 13px + (16px - 13px) * (100vw - 375px) / (768px - 375px), 16px);
  font-weight: 500;
}
@media screen and (min-width: 1024px) {
  .p-feature-tags li {
    min-height: 56px;
    padding: 10px 12px;
  }
}

.p-feature-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
  background-color: #ffffff;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}
.p-feature-panel:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .p-feature-panel {
    display: grid;
    grid-template-columns: minmax(0, 2.5fr) auto minmax(0, 1fr);
    align-items: center;
    -moz-column-gap: 32px;
         column-gap: 32px;
    margin-bottom: 75px;
    padding: 0 35px 35px;
  }
}

.p-feature-panelBadge {
  position: absolute;
  top: 5%;
  left: 4%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  padding: 4px;
  font-size: clamp(14px, 14px + (20px - 14px) * (100vw - 375px) / (768px - 375px), 20px);
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  color: #3e3a39;
  background-color: #ffffff;
  border: 2px solid #344877;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
@media screen and (min-width: 375px) {
  .p-feature-panelBadge {
    width: clamp(74px, 74px + (102px - 74px) * (100vw - 375px) / (768px - 375px), 102px);
    height: clamp(74px, 74px + (102px - 74px) * (100vw - 375px) / (768px - 375px), 102px);
  }
}
@media screen and (max-width: 374px) {
  .p-feature-panelBadge {
    padding: 3px;
    font-size: 12px;
  }
}
@media screen and (min-width: 1024px) {
  .p-feature-panelBadge {
    left: 50px;
    top: 30px;
    padding: 6px;
  }
}

.p-feature-panelTitle {
  position: relative;
  padding: 12px 16px;
  font-size: clamp(15px, 15px + (35px - 15px) * (100vw - 375px) / (768px - 375px), 35px);
  font-weight: 500;
  color: #ffffff;
  background-color: #344877;
  text-align: center;
  margin: 0;
}
@media screen and (min-width: 1024px) {
  .p-feature-panelTitle {
    grid-column: 1/-1;
    margin: 0 -35px 0;
    padding: 14px 20px 14px 56px;
  }
}

.p-feature-panelBody {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  padding: 20px 16px 24px;
}
@media screen and (min-width: 1024px) {
  .p-feature-panelBody {
    display: contents;
    padding: 0;
  }
}

.p-feature-panelFig {
  position: relative;
  margin: 0;
  min-width: 0;
}
@media screen and (min-width: 1024px) {
  .p-feature-panelFig {
    position: static;
    grid-column: 1;
    grid-row: 2;
    margin-top: 35px;
    max-width: 740px;
  }
}
.p-feature-panelFig img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  margin-top: 30px;
}
@media screen and (min-width: 1024px) {
  .p-feature-panelFig img {
    border-radius: 4px;
    margin-top: 0;
  }
}

.p-feature-panelCaption {
  margin: 8px 16px 0;
  font-size: 12px;
  line-height: 1.5;
  color: #3e3a39;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-feature-panelCaption {
    display: none;
  }
}

.p-feature-panelArrow {
  margin: 0;
  flex-shrink: 0;
  line-height: 0;
  align-self: center;
  position: relative;
  top: 0;
}
@media screen and (min-width: 1024px) {
  .p-feature-panelArrow {
    grid-column: 2;
    grid-row: 2;
    align-self: center;
    top: -40px;
  }
}
.p-feature-panelArrow img {
  width: 35px;
  height: auto;
  transform: rotate(90deg);
}
@media screen and (min-width: 1024px) {
  .p-feature-panelArrow img {
    transform: none;
  }
}

@media screen and (min-width: 1024px) {
  .p-feature-panel + .p-feature-panel .p-feature-panelArrow {
    top: -45px;
  }
}

.p-feature-panelContent {
  flex: 1 1 30%;
  min-width: 0;
}
@media screen and (min-width: 1024px) {
  .p-feature-panelContent {
    grid-column: 3;
    grid-row: 2;
    flex: none;
  }
}

.p-feature-panelLead {
  margin: 0 0 14px;
  font-size: clamp(18px, 18px + (26px - 18px) * (100vw - 375px) / (768px - 375px), 26px);
  font-weight: 900;
  line-height: 1.6;
  color: #344877;
  text-align: left;
}
@media screen and (min-width: 1024px) {
  .p-feature-panelLead {
    margin: 50px 0;
    line-height: 2;
  }
}

.p-feature-panelLabel {
  margin: 0 0 6px;
  font-size: clamp(16px, 16px + (20px - 16px) * (100vw - 375px) / (768px - 375px), 20px);
  font-weight: 700;
  color: #3e3a39;
}

.p-feature-panelText {
  margin: 0;
  font-size: clamp(16px, 16px + (20px - 16px) * (100vw - 375px) / (768px - 375px), 20px);
  line-height: 1.8;
  color: #3e3a39;
}
.p-feature-panelText br {
  display: none;
}
@media screen and (min-width: 1024px) {
  .p-feature-panelText {
    line-height: 1.9;
  }
  .p-feature-panelText br {
    display: inline;
  }
}

.p-feature-head__02 {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px 12px;
}
@media screen and (min-width: 1024px) {
  .p-feature-head__02 {
    display: flex;
    flex-direction: column;
  }
}
.p-feature-head__02 .p-feature-num {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  color: #025fa1;
  transform: translateX(-7px);
  margin-left: clamp(70px, 70px + (100px - 70px) * (100vw - 375px) / (768px - 375px), 100px);
}
@media screen and (min-width: 1024px) {
  .p-feature-head__02 .p-feature-num {
    grid-column: unset;
    grid-row: unset;
    justify-self: unset;
    align-self: start;
    transform: none;
    margin-left: 100px;
  }
}
.p-feature-head__02 .p-feature-sideTitle {
  color: #025fa1;
}
.p-feature-head__02 .p-feature-lead {
  color: #025fa1;
}
.p-feature-head__02 .p-feature-headBody {
  display: contents;
}
@media screen and (min-width: 1024px) {
  .p-feature-head__02 .p-feature-headBody {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 28px 36px;
  }
}
.p-feature-head__02 .p-feature-side {
  grid-column: 1;
  grid-row: 1;
  flex-direction: row;
  gap: 8px;
  width: auto;
  align-items: flex-start;
  margin-top: clamp(105px, 105px + (187px - 105px) * (100vw - 375px) / (768px - 375px), 187px);
}
@media screen and (min-width: 1024px) {
  .p-feature-head__02 .p-feature-side {
    grid-column: unset;
    grid-row: unset;
    gap: 12px;
    margin-top: 0;
  }
}
.p-feature-head__02 .p-feature-visual {
  grid-column: 2;
  grid-row: 1/3;
  align-self: start;
  width: calc(100% + 20px);
  max-width: none;
  margin-top: clamp(95px, 95px + (169px - 95px) * (100vw - 375px) / (768px - 375px), 169px);
  margin-right: -20px;
}
@media screen and (min-width: 375px) {
  .p-feature-head__02 .p-feature-visual {
    width: calc(100% + 35px);
    margin-right: -35px;
  }
}
@media screen and (min-width: 1024px) {
  .p-feature-head__02 .p-feature-visual {
    grid-column: unset;
    grid-row: unset;
    width: 100%;
    margin-top: 0;
    margin-right: 0;
  }
}
.p-feature-head__02 .p-feature-body {
  grid-column: 1/-1;
  grid-row: 3;
}
@media screen and (min-width: 1024px) {
  .p-feature-head__02 .p-feature-body {
    grid-column: auto;
    grid-row: auto;
  }
}

.p-feature-lead__02 {
  color: #025fa1;
  margin-bottom: 30px;
  margin-top: 40px;
}
@media screen and (min-width: 1024px) {
  .p-feature-lead__02 {
    margin-top: 0;
  }
}

.p-feature-visual {
  margin: 0;
  flex: 1.2 1 auto;
  width: 100%;
  min-width: 0;
  max-width: none;
}
@media screen and (min-width: 1024px) {
  .p-feature-visual {
    max-width: 480px;
  }
}
.p-feature-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.p-feature-body {
  min-width: 0;
}

.p-feature-subTitle {
  margin: 0 0 18px;
  line-height: 1.7;
}
.p-feature-subTitle span {
  font-size: clamp(22px, 22px + (35px - 22px) * (100vw - 375px) / (768px - 375px), 35px);
}

.p-feature-cases {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.p-feature-casesRow {
  display: grid;
  gap: 20px;
  align-items: start;
}

.p-feature-casesRow__main {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.p-feature-casesRow__main .p-feature-body {
  order: -1;
}
@media screen and (min-width: 1024px) {
  .p-feature-casesRow__main {
    display: grid;
    grid-template-columns: 0.7fr 1.5fr;
    gap: 32px 28px;
  }
  .p-feature-casesRow__main .p-feature-body {
    order: 0;
  }
}

.p-feature-casesFig {
  margin: 0;
}
.p-feature-casesFig img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2px;
}
@media screen and (min-width: 1024px) {
  .p-feature-casesFig img {
    aspect-ratio: auto;
    width: 372px;
    height: 267px;
  }
}
.p-feature-casesFig figcaption {
  margin-top: 10px;
  font-size: clamp(14px, 14px + (20px - 14px) * (100vw - 375px) / (768px - 375px), 20px);
  font-weight: 700;
  text-align: center;
  color: #3e3a39;
}

.p-feature-casesRow__main .p-feature-casesFig {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 12px;
}
.p-feature-casesRow__main .p-feature-casesFig img {
  flex: 1 1 auto;
  width: auto;
  max-width: calc(100% - 5em);
  min-width: 0;
}
.p-feature-casesRow__main .p-feature-casesFig figcaption {
  flex-shrink: 0;
  margin: 0 0 4px;
  text-align: left;
}
@media screen and (min-width: 1024px) {
  .p-feature-casesRow__main .p-feature-casesFig {
    display: block;
  }
  .p-feature-casesRow__main .p-feature-casesFig img {
    width: 372px;
    max-width: 372px;
  }
  .p-feature-casesRow__main .p-feature-casesFig figcaption {
    margin-top: 10px;
    text-align: center;
  }
}

.p-feature-casesRow__sub {
  grid-template-columns: 1fr 1fr;
}
.p-feature-casesRow__sub .p-feature-specs {
  grid-column: 1/-1;
}
@media screen and (min-width: 1024px) {
  .p-feature-casesRow__sub {
    grid-template-columns: 0.9fr 0.9fr 0.97fr;
    gap: 24px 28px;
  }
  .p-feature-casesRow__sub .p-feature-specs {
    grid-column: auto;
  }
}

.p-feature-specs {
  margin: 0;
  padding: 8px 0 0;
  list-style: none;
}
@media screen and (min-width: 1024px) {
  .p-feature-specs {
    padding: 82px 0 0;
  }
}
.p-feature-specs li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin: 0 0 10px;
  padding: 0;
  font-size: clamp(14px, 14px + (18px - 14px) * (100vw - 375px) / (768px - 375px), 18px);
  line-height: 1.75;
  color: #3e3a39;
}
.p-feature-specs li:last-child {
  margin-bottom: 0;
}
.p-feature-specs li::before {
  content: "■";
  flex-shrink: 0;
  margin-top: 0.15em;
  font-size: inherit;
  line-height: 1.4;
}
.p-feature-specs strong {
  flex-shrink: 0;
  font-weight: 500;
}

.p-map {
  margin: 72px 0 66px;
  background-color: #ffffff;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-map {
    margin: 150px 0 120px;
  }
}

.p-map-inner {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 375px) {
  .p-map-inner {
    padding-left: 35px;
    padding-right: 35px;
  }
}
@media screen and (min-width: 1265px) {
  .p-map-inner {
    padding-left: 0;
    padding-right: 0;
  }
}
.p-map-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 1024px) {
  .p-map-inner {
    display: block;
  }
}

@media screen and (min-width: 1024px) {
  .p-map-body {
    position: absolute;
    top: 0;
    z-index: 1;
  }
}

.p-map-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0 0 14px;
  font-size: clamp(19px, 19px + (28px - 19px) * (100vw - 375px) / (768px - 375px), 28px);
  font-weight: 700;
  line-height: 1.5;
  color: #3e3a39;
}

.p-map-titleNote {
  font-size: clamp(16px, 16px + (28px - 16px) * (100vw - 375px) / (768px - 375px), 28px);
}

.p-map-catch {
  margin: 0 0 16px;
  font-size: clamp(24px, 24px + (36px - 24px) * (100vw - 375px) / (768px - 375px), 36px);
  font-weight: 900;
  line-height: 1.5;
  color: #3e3a39;
}
.p-map-catch em {
  margin: 0 0.02em;
  font-size: 1em;
  font-style: normal;
  font-weight: inherit;
  line-height: 1.2;
  color: #e60012;
}
@media screen and (min-width: 1024px) {
  .p-map-catch em {
    font-size: 1.35em;
  }
}

.p-map-text {
  margin: 0;
  font-size: clamp(16px, 16px + (20px - 16px) * (100vw - 375px) / (768px - 375px), 20px);
  line-height: 1.9;
  color: #3e3a39;
}
@media screen and (min-width: 1024px) {
  .p-map-text {
    width: 320px;
  }
}

.p-map-visual {
  margin: 0;
  min-width: 0;
}
@media screen and (min-width: 1024px) {
  .p-map-visual {
    width: 100%;
    margin-left: auto;
  }
}
.p-map-visual img {
  display: block;
  width: 100%;
  height: auto;
  padding-top: 12px;
}
@media screen and (min-width: 768px) {
  .p-map-visual img {
    padding-top: 55px;
  }
}
@media screen and (min-width: 1024px) {
  .p-map-visual img {
    padding-top: 100px;
    padding-left: 50px;
  }
}
@media screen and (min-width: 1265px) {
  .p-map-visual img {
    padding-top: 55px;
    padding-left: 0;
  }
}

.p-worry {
  position: relative;
  padding: 55px 0 78px;
  color: #ffffff;
  background: radial-gradient(ellipse 120% 80% at 50% 40%, #6e639b 0%, #444285 100%);
}
@media screen and (min-width: 768px) {
  .p-worry {
    padding: 100px 0 130px;
  }
}
.p-worry::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 28px solid #4F4B8B;
  transform: translate(-50%, 100%);
}

.p-worry-inner {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 375px) {
  .p-worry-inner {
    padding-left: 35px;
    padding-right: 35px;
  }
}
@media screen and (min-width: 1265px) {
  .p-worry-inner {
    padding-left: 0;
    padding-right: 0;
  }
}
.p-worry-inner {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-worry-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (min-width: 1265px) {
  .p-worry-inner {
    padding-left: 0;
    padding-right: 0;
  }
}

.p-worry-title {
  margin: 0 0 24px;
  font-size: clamp(32px, 32px + (48px - 32px) * (100vw - 375px) / (768px - 375px), 48px);
  font-weight: 900;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .p-worry-title {
    margin-bottom: 48px;
  }
}

.p-worry-mark {
  --p-worry-mark-dot-size: 8px;
  color: #ffee7d;
}

.p-worry-markChar {
  position: relative;
  display: inline-block;
  letter-spacing: 0;
  padding-top: calc(var(--p-worry-mark-dot-size) + 0.15em);
}
.p-worry-markChar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: var(--p-worry-mark-dot-size);
  height: var(--p-worry-mark-dot-size);
  margin: 0 auto;
  border-radius: 50%;
  background-color: #ffee7d;
  transform: none;
}
@media screen and (min-width: 768px) {
  .p-worry-markChar::before {
    top: 10px;
    left: 50%;
    right: auto;
    margin: 0;
    transform: translateX(-50%);
  }
}

.p-worry-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-content: center;
  justify-items: stretch;
  gap: 12px;
  margin: 0 auto 28px;
  max-width: 380px;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 375px) {
  .p-worry-list {
    grid-template-columns: repeat(2, minmax(0, 180px));
    justify-items: center;
    gap: 20px;
  }
}
@media screen and (min-width: 768px) {
  .p-worry-list {
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, calc((1200px - 90px) / 4)));
    justify-items: center;
    gap: 30px;
    margin-bottom: 48px;
  }
}
@media screen and (min-width: 1024px) {
  .p-worry-list {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    grid-template-columns: repeat(4, 1fr);
    justify-content: stretch;
    justify-items: stretch;
    gap: 30px;
    margin-bottom: 70px;
  }
}

.p-worry-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: none;
  width: 100%;
  min-height: 0;
  min-width: 0;
  padding: 16px 12px 20px;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  color: #3e3a39;
  text-align: left;
}
@media screen and (min-width: 375px) {
  .p-worry-item {
    gap: 28px;
    max-width: 180px;
    min-height: 307px;
    padding: 25px;
  }
}
@media screen and (min-width: 768px) {
  .p-worry-item {
    width: 100%;
    max-width: calc((1200px - 90px) / 4);
    gap: 20px;
    padding: 35px 45px 50px;
    min-height: 300px;
    border-radius: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .p-worry-item {
    max-width: none;
  }
}

.p-worry-itemBadge {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-shrink: 0;
  width: min(112px, 78%);
  height: auto;
  aspect-ratio: 1;
  padding: 6px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.3;
  text-align: center;
  color: #524774;
  background-color: #ffffff;
  border: 2px solid #524774;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .p-worry-itemBadge {
    width: 162px;
    height: 162px;
    padding: 12px;
    font-size: 26px;
    line-height: 1.35;
  }
}
.p-worry-itemBadge strong {
  color: #2d527e;
}

.p-worry-itemText {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-worry-itemText {
    font-size: 20px;
    line-height: 1.75;
  }
}

.p-worry-catch {
  margin: 0;
  font-size: clamp(25px, 25px + (48px - 25px) * (100vw - 375px) / (768px - 375px), 48px);
  font-weight: 900;
  line-height: 1.7;
  letter-spacing: 0.04em;
}

.p-contact {
  padding: 72px 0 57px;
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .p-contact {
    padding: 128px 0 75px;
  }
}

.p-contact-inner {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 375px) {
  .p-contact-inner {
    padding-left: 35px;
    padding-right: 35px;
  }
}
@media screen and (min-width: 1265px) {
  .p-contact-inner {
    padding-left: 0;
    padding-right: 0;
  }
}

.p-contact-topics {
  margin: 0 0 48px;
  padding: 40px 24px 44px;
  text-align: center;
  border: 1px solid #cccccc;
}
@media screen and (min-width: 768px) {
  .p-contact-topics {
    padding: 52px 48px 56px;
  }
}

.p-contact-topicsTitle {
  margin: 0 0 16px;
  font-size: clamp(18px, 18px + (22px - 18px) * (100vw - 375px) / (768px - 375px), 22px);
  font-weight: 900;
  line-height: 1.5;
  color: #3e3a39;
}

.p-contact-topicsLead {
  margin: 0 0 28px;
  font-size: clamp(14px, 16px + (14px - 16px) * (100vw - 375px) / (768px - 375px), 16px);
  line-height: 1.8;
  color: #3e3a39;
}
@media screen and (min-width: 768px) {
  .p-contact-topicsLead {
    margin-bottom: 36px;
  }
}

.p-contact-topicsList {
  display: grid;
  gap: 21px 32px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-contact-topicsList {
    grid-template-columns: 1fr 1fr;
    gap: 37px 48px;
  }
}
.p-contact-topicsList li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(16px, 16px + (16px - 16px) * (100vw - 375px) / (768px - 375px), 16px);
  line-height: 1.5;
  color: #3e3a39;
}
.p-contact-topicsList li::before {
  content: "";
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  background-color: #025fa1;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' d='M3.5 8.2l3 3.1 6-6.2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}
@media screen and (min-width: 768px) {
  .p-contact-topicsList li::before {
    width: 35px;
    height: 35px;
  }
}

.p-contact-form {
  margin: 0 auto;
}/*# sourceMappingURL=embankmentlp.css.map */