@charset "UTF-8";
/* LP2025 - 共通スタイル
================================================== */
/*! destyle.css v3.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.min.css */
*, ::before, ::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p, table, blockquote, address, pre, iframe, form, figure, dl {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

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

dt {
  font-weight: 700;
}

dd {
  margin-left: 0;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

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

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg, img, embed, object, iframe {
  vertical-align: bottom;
}

button, input, optgroup, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}

button, [type=button], [type=reset], [type=submit] {
  cursor: pointer;
}

button:disabled, [type=button]:disabled, [type=reset]:disabled, [type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-color: inherit;
}

caption {
  text-align: left;
}

td, th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: 700;
}

/* CSS変数 */
:root {
  --base-font: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", sans-serif;
  --palette-white: #ffffff;
  --palette-lightgray: #DDDDDD;
  --palette-gray: #CCCCCC;
  --palette-black: #333333;
  --palette-pink: #EB849D;
  --color-text-primary: var(--palette-black);
  --color-text-secondary: var(--palette-white);
  --color-text-accent: var(--palette-pink);
  --color-bg-primary: var(--palette-white);
  --color-bg-pink: var(--palette-pink);
  --base-transition: background .3s ease-out, border .3s ease-out, box-shadow .3s ease-out, color .3s ease-out, transform .3s ease-out, translate .3s ease-out, scale .3s ease-out, opacity .3s ease-out, margin .3s ease-out, top .3s ease-out, right .3s ease-out, bottom .3s ease-out, left .3s ease-out, flex .3s ease-out, visibility .3s ease-out;
}

/* ベース */
html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  font-family: var(--base-font);
  width: 100%;
  margin: 0 auto;
  padding: 0;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  -webkit-text-size-adjust: 100%;
}

img {
  max-width: 100%;
  width: auto;
  height: auto;
  vertical-align: bottom;
  -webkit-transition: var(--base-transition);
  transition: var(--base-transition);
}

a {
  color: var(--color-text-primary);
  text-decoration: none;
  -webkit-transition: var(--base-transition);
  transition: var(--base-transition);
}
a[href^="tel:"] {
  cursor: default;
}

/* レイアウト */
#container {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.lp-header {
  position: sticky;
  top: 0;
  z-index: 3;
  max-height: 80px;
  background: var(--color-bg-primary);
}
@media screen and (max-width: 767px) {
  .lp-header {
    max-height: 48px;
  }
}
.lp-header__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 40px;
}
@media screen and (max-width: 767px) {
  .lp-header__wrap {
    padding: 10px;
  }
}
.lp-header .logo-echo {
  max-width: 229px;
}
@media screen and (max-width: 767px) {
  .lp-header .logo-echo {
    max-width: 160px;
  }
}
.lp-header__logo-corp {
  max-width: 124px;
}
@media screen and (max-width: 767px) {
  .lp-header__logo-corp {
    max-width: 82px;
  }
}
.lp-header img {
  width: 100%;
  height: auto;
  display: block;
}
.lp-header a {
  position: relative;
  display: block;
}

.lp-footer {
  background: var(--color-bg-primary);
}
.lp-footer__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 40px;
}
@media screen and (max-width: 767px) {
  .lp-footer__wrap {
    padding: 12px 10px;
  }
}
.lp-footer__logo-corp {
  max-width: 124px;
}
@media screen and (max-width: 767px) {
  .lp-footer__logo-corp {
    max-width: 82px;
  }
}
.lp-footer img {
  width: 100%;
  height: auto;
  display: block;
}
.lp-footer a {
  display: block;
}
.lp-footer__copyright {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 14px;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .lp-footer__copyright {
    font-size: 12px;
  }
}

#lp-service .p-three-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 40px;
  max-width: 980px;
  margin: 0 auto;
}
#lp-service .p-three-block__box {
  position: relative;
  width: calc((100% - 80px) / 3);
}
@media screen and (max-width: 1280px) {
  #lp-service .p-three-block__box {
    width: calc((100% - 40px) / 2);
  }
}
@media screen and (max-width: 767px) {
  #lp-service .p-three-block__box {
    width: 100%;
  }
}
#lp-service .service-list__box a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 20px;
}
@media screen and (max-width: 767px) {
  #lp-service .service-list__box a {
    gap: 0 12px;
  }
}
#lp-service .service-list__box a:hover {
  color: var(--color-text-accent);
}
#lp-service .service-list__box-img {
  max-width: 80px;
}
@media screen and (max-width: 767px) {
  #lp-service .service-list__box-img {
    max-width: 40px;
  }
}
#lp-service .service-list__box-title {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  #lp-service .service-list__box-title {
    font-size: 14px;
  }
}

.lp-service-title {
  margin-bottom: 40px;
  text-align: center;
}
.lp-service-title__title {
  font-size: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px 0;
}
@media screen and (max-width: 767px) {
  .lp-service-title__title {
    font-size: 24px;
  }
}
.lp-service-title__title::after {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 20px;
  content: attr(data-en);
  color: var(--color-text-accent);
}
@media screen and (max-width: 767px) {
  .lp-service-title__title::after {
    font-size: 14px;
  }
}

/* パーツ */
.lp-description {
  background: var(--color-bg-pink);
}
.lp-description p {
  font-size: 14px;
  font-weight: bold;
  padding: 8px 0;
  color: var(--color-text-secondary);
  text-align: center;
  line-height: 1.5;
}

.c-video iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
/*# sourceMappingURL=lp-2025_style.css.map */