@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul {
  list-style-type: none;
}

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

ul,
ol,
div {
  margin: 0;
  padding: 0;
}

html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  color: #000;
  scroll-behavior: smooth;
}

main {
  margin-top: 51px;
}
@media screen and (max-width: 767px) {
  main {
    margin-top: 36px;
  }
}

.bg-color {
  position: relative;
}
.bg-color::before, .bg-color::after {
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
}
.bg-color::before {
  z-index: -1;
  opacity: 0.5;
  mix-blend-mode: soft-light;
  background-color: #00a0e9;
}
.bg-color::after {
  z-index: -2;
  opacity: 0.75;
  mix-blend-mode: screen;
  background: radial-gradient(ellipse, #fff 0%, rgba(255, 255, 255, 0.75) 50%, rgba(255, 255, 255, 0) 100%);
}

.bg-image {
  top: 0;
  left: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  position: absolute;
}

.button {
  border: none;
  width: 300px;
  height: 60px;
  display: block;
  margin: 0 auto;
  cursor: pointer;
  font-size: 1.8rem;
  color: #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  font-weight: 900;
  background-color: #00a0e9;
  line-height: 1.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.button:hover {
  opacity: 0.6;
}
.button--gray {
  background-color: #ccc;
}

.container {
  z-index: 1;
  position: relative;
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1000px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .container {
    max-width: 100%;
    padding: 0 8%;
  }
}

.footer {
  color: #fff;
  padding: 60px 0 40px;
  background-color: #00a0e9;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-top: 100px;
  }
}
.footer__wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  .footer__wrap {
    gap: 60px;
    grid-template-rows: auto;
    grid-template-columns: repeat(1, 1fr);
  }
}
.footer__wrap-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.footer__wrap-item:last-child {
  gap: 9px;
}
.footer__logo {
  width: 250px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 59.6px;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
@media screen and (max-width: 767px) {
  .footer__logo {
    width: 227.92px;
    margin-bottom: 40px;
  }
}
.footer__text {
  max-width: 400px;
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 1.6em;
}
.footer__text-small {
  max-width: 400px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.7142857143em;
}
.footer__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.5rem;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  letter-spacing: 0.05em;
  font-weight: 500;
  line-height: 1.6em;
}
.footer__link .jp {
  font-size: 1.3rem;
  line-height: 1.8461538462em;
}
.footer__link::before {
  top: 50%;
  left: -20px;
  content: "";
  width: 14px;
  height: 14px;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("./public/img/icons/caret-right-lightblue.svg") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .footer__link::before {
    top: unset;
    left: unset;
    -webkit-transform: unset;
            transform: unset;
    position: relative;
    margin-right: 5.3px;
  }
}
.footer__link:hover {
  -webkit-transform: translateX(8px);
          transform: translateX(8px);
}
@media screen and (max-width: 767px) {
  .footer__link:hover {
    -webkit-transform: unset;
            transform: unset;
  }
}
.footer__copyright {
  margin-top: 28px;
  font-size: 1.3rem;
  text-align: center;
  letter-spacing: 0.05em;
  font-weight: 500;
  line-height: 1.6923076923em;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    margin-top: 68px;
  }
}

.header {
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  position: fixed;
  transition: 0.3s all ease;
}
.header.scrolled {
  background-color: #fff;
  box-shadow: 0 0 5px rgb(0 0 0 / 10%);
}
.header__wrap {
  padding: 30px;
  background-color: transparent;
}
@media screen and (max-width: 767px) {
  .header__wrap {
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.header__logo {
  z-index: 5;
  width: 300px;
  height: auto;
  display: block;
  position: relative;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 227.92px;
  }
}
@media screen and (max-width: 767px) {
  .header__menubar {
    z-index: 5;
    width: 40px;
    height: 30px;
    position: relative;
  }
}
@media screen and (max-width: 767px) {
  .header__menubar-line {
    top: 50%;
    left: 50%;
    width: 40px;
    height: 2px;
    position: absolute;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    background-color: #888;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 767px) {
  .header__menubar-line::before, .header__menubar-line::after {
    top: 50%;
    left: 50%;
    content: "";
    width: 40px;
    height: 2px;
    display: block;
    position: absolute;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    background-color: #888;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 767px) {
  .header__menubar-line::before {
    margin-top: -10px;
  }
}
@media screen and (max-width: 767px) {
  .header__menubar-line::after {
    margin-top: 10px;
  }
}
.header__menu {
  display: none;
}
@media screen and (max-width: 767px) {
  .header__menu {
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 70px;
    position: absolute;
    padding-inline: 20px;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    background-color: #fff;
  }
}
@media screen and (max-width: 767px) {
  .header__menu-item {
    position: relative;
    padding-block: 25px;
    color: #231815;
    letter-spacing: 0.05em;
    font-weight: 500;
    border-bottom: 1px dashed #00a0e9;
  }
}
@media screen and (max-width: 767px) {
  .header__menu-item span {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .header__menu-item:first-child {
    border-top: 1px dashed #00a0e9;
  }
}
@media screen and (max-width: 767px) {
  .header__menu-item::before {
    top: 50%;
    right: 0;
    width: 18px;
    content: "";
    height: 18px;
    display: block;
    border-radius: 50%;
    position: absolute;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background: url("./public/img/icons/caret-right-blue.svg") no-repeat center/contain;
  }
}
@media screen and (max-width: 767px) {
  .header__menu-text-eng {
    font-size: 1.8rem;
    margin-bottom: 4px;
    line-height: 1.5em;
  }
}
@media screen and (max-width: 767px) {
  .header__menu-text-jp {
    font-size: 1.3rem;
    line-height: 1.4615384615em;
  }
}
@media screen and (max-width: 767px) {
  .header.toggle .header__menu {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@media screen and (max-width: 767px) {
  .header.toggle .header__menubar-line {
    background-color: transparent;
  }
}
@media screen and (max-width: 767px) {
  .header.toggle .header__menubar-line::before {
    margin-top: 0;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg);
  }
}
@media screen and (max-width: 767px) {
  .header.toggle .header__menubar-line::after {
    margin-top: 0;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
            transform: translate(-50%, -50%) rotate(-45deg);
  }
}

.image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.image--100 {
  height: 100%;
}
.image--auto {
  width: auto;
}
.image--contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.scroll-top {
  z-index: 50;
  bottom: 20px;
  position: sticky;
  margin-top: -55px;
}
@media screen and (max-width: 767px) {
  .scroll-top {
    margin-top: -45px;
  }
}
.scroll-top__wrap {
  width: 37px;
  height: 37px;
  cursor: pointer;
  margin-bottom: 20px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  margin-inline: auto 20px;
  -webkit-transform: translateY(200%);
          transform: translateY(200%);
  background: url("./public/img/icons/caret-top.svg") no-repeat center/contain;
  background-size: 14px 8px;
  background-color: #333;
}
@media screen and (max-width: 767px) {
  .scroll-top__wrap {
    margin-right: 10px;
    margin-bottom: 10px;
  }
}
.scroll-top__wrap.show {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.title {
  font-size: 3.2rem;
  text-align: center;
  color: #00a0e9;
  margin-bottom: 60px;
  letter-spacing: 0.1em;
  font-weight: 900;
  line-height: 1.125em;
}
.title__jp {
  display: block;
  margin-top: 19px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2.25em;
}
.title--white {
  color: #fff;
}

.lp__mv {
  height: 668px;
  position: relative;
}
.lp__mv-title {
  top: 50%;
  left: 50%;
  z-index: 1;
  height: 708px;
  width: 269.8px;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .lp__mv-title {
    height: 577px;
    width: 219.88px;
  }
}
.lp__service {
  padding-bottom: 166px;
}
.lp__service-intro {
  padding-block: 100px 126px;
}
@media screen and (max-width: 767px) {
  .lp__service-intro {
    padding-block: 150px 200px;
  }
}
.lp__service-text {
  font-size: 1.6rem;
  text-align: center;
  font-weight: 500;
  line-height: 2.25em;
}
.lp__service-cards {
  margin-top: -66px;
}
@media screen and (max-width: 767px) {
  .lp__service-cards {
    margin-top: -100px;
  }
}
.lp__service-card {
  gap: 3%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  border-radius: 10px;
  padding: 66px 6% 59px;
  background-color: #fff;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 900px) {
  .lp__service-card {
    gap: 40px;
    padding: 60px 6%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.lp__service-card:not(:last-child) {
  margin-bottom: 60px;
}
.lp__service-card--2 {
  padding-block: 63px 62px;
}
@media screen and (max-width: 767px) {
  .lp__service-card--2 {
    padding: 60px 6%;
  }
}
.lp__service-card-image {
  z-index: 1;
  width: 298px;
  height: 199px;
  position: relative;
}
@media screen and (max-width: 900px) {
  .lp__service-card-image {
    width: 100%;
    height: auto;
  }
}
.lp__service-card-detail {
  z-index: 1;
  width: auto;
  position: relative;
}
.lp__service-card-label {
  display: block;
  font-size: 1.8rem;
  line-height: 1em;
  color: #00a0e9;
  margin-bottom: 9px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .lp__service-card-label {
    line-height: 1.5em;
    margin-bottom: 19px;
  }
}
.lp__service-text-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.lp__service-text-list li::before {
  content: "・";
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .lp__service-text-list li:not(:last-child) {
    margin-bottom: 20px;
  }
}
.lp__service-text-list li.ndt::before {
  content: none;
}
.lp__service-card-text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .lp__service-card-text {
    line-height: 1.75em;
  }
}
.lp__service-card-text .small {
  font-size: 1.4rem;
  line-height: 2.2857142857em;
}
.lp__service-card-grid {
  gap: 28px;
  display: grid;
  grid-template-columns: auto auto;
}
@media screen and (max-width: 767px) {
  .lp__service-card-grid {
    gap: 20px;
    grid-template-rows: auto;
    grid-template-columns: auto;
  }
}
.lp__service-card-note {
  display: block;
  padding-left: 2px;
  font-size: 1.4rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .lp__service-card-note {
    margin-top: -20px;
  }
}
.lp__service-card-eng {
  right: 10px;
  bottom: 31.6px;
  position: absolute;
  aspect-ratio: 422/94;
}
@media screen and (max-width: 900px) {
  .lp__service-card-eng {
    top: 20px;
    left: 24%;
    right: 20px;
    bottom: unset;
    aspect-ratio: 249/55;
  }
}
.lp__service-card-eng--printing {
  bottom: 9.6px;
  aspect-ratio: 423/125;
}
@media screen and (max-width: 767px) {
  .lp__service-card-eng--printing {
    top: 20px;
    right: 20px;
    bottom: unset;
    aspect-ratio: 250/74;
  }
}
.lp__work {
  position: relative;
  padding-block: 100px;
  background: rgba(239, 237, 228, 0.5);
}
.lp__work::before {
  left: 50%;
  top: -15px;
  content: "";
  width: 100%;
  height: 40px;
  display: block;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url("./public/img/icons/spring.svg") repeat-x center/contain;
  background-size: 1286px auto;
}
@media screen and (max-width: 767px) {
  .lp__work::before {
    background: url("./public/img/icons/spring-sp.svg") repeat-x center/contain;
    background-position: 20px;
    background-size: 370px auto;
  }
}
.lp__work-splide-item {
  gap: 22px;
  width: 100%;
  padding: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 900px;
  margin-right: 100px;
  border-radius: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #fff;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.16);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 1200px) {
  .lp__work-splide-item {
    margin-right: 50px;
  }
}
@media screen and (max-width: 1000px) {
  .lp__work-splide-item {
    padding: 50px;
    max-width: 450px;
  }
}
@media screen and (max-width: 767px) {
  .lp__work-splide-item {
    padding: 40px 25px;
    margin-right: 20px;
  }
}
@media screen and (max-width: 390px) {
  .lp__work-splide-item {
    padding-inline: 17px;
  }
}
.lp__work-detail {
  gap: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .lp__work-detail {
    width: 100%;
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  .lp__work-detail {
    gap: 40px;
  }
}
.lp__work-label {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  line-height: 2em;
}
.lp__work-label .small {
  display: block;
  margin-top: 14px;
  font-size: 1.4rem;
  line-height: 1.8571428571em;
}
.lp__work-tags {
  gap: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 290px;
}
.lp__work-tag {
  padding: 2px 8px;
  font-size: 1.4rem;
  border-radius: 6px;
  color: #fff;
  font-weight: 600;
  line-height: 2.2857142857em;
  background-color: #ccc;
}
.lp__work-tag--highlight {
  background-color: #888;
}
.lp__work-image {
  width: 100%;
  height: 400px;
  max-width: 400px;
  outline: 1px solid #666;
}
@media screen and (max-width: 1000px) {
  .lp__work-image {
    height: 300px;
    max-width: 300px;
    margin-inline: auto;
  }
}
.lp__profile {
  overflow: hidden;
  padding-block: 150px;
}
.lp__profile-content {
  gap: 4.4%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .lp__profile-content {
    gap: 60px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.lp__profile-detail {
  width: 51.1%;
}
@media screen and (max-width: 767px) {
  .lp__profile-detail {
    width: 100%;
  }
}
.lp__profile-text {
  gap: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.5rem;
  color: #333;
  line-height: 1.6em;
}
@media screen and (max-width: 767px) {
  .lp__profile-text {
    gap: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.lp__profile-text :first-child {
  min-width: 115px;
}
@media screen and (max-width: 767px) {
  .lp__profile-text :first-child {
    width: 100%;
  }
}
.lp__profile-text:not(:last-child) {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .lp__profile-text:not(:last-child) {
    margin-bottom: 30px;
  }
}
.lp__profile-map {
  width: 44.5%;
}
@media screen and (max-width: 767px) {
  .lp__profile-map {
    width: 100%;
  }
}
.lp__profile-map-text {
  margin-top: 21px;
  font-size: 1.4rem;
  color: #333;
  line-height: 1.5714285714em;
}
@media screen and (max-width: 767px) {
  .lp__profile-map-text {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .lp__profile-map-text :not(:first-child) {
    margin-top: 20px;
  }
}
.lp__profile-map-img {
  height: 300px;
}
@media screen and (max-width: 767px) {
  .lp__profile-map-img {
    margin-left: -10%;
    width: 120%;
  }
}
.lp__about {
  position: relative;
  padding-block: 150px;
}
@media screen and (max-width: 767px) {
  .lp__about {
    padding-block: 100px;
  }
}
.lp__about::before, .lp__about::after {
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
}
.lp__about::before {
  z-index: -2;
  opacity: 0.2;
  background: url("./public/img/lp/about-bg.jpg") no-repeat center/cover;
}
.lp__about::after {
  z-index: -1;
  background-color: #00a0e9;
  mix-blend-mode: multiply;
}
.lp__about-container {
  max-width: calc(710px + 8%);
}
.lp__about-title {
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  font-weight: 900;
  color: #fffe00;
  line-height: 1.5em;
}
@media screen and (max-width: 767px) {
  .lp__about-title {
    font-size: 1.8rem;
    line-height: 1.6666666667em;
  }
}
.lp__about-title .eng {
  display: block;
  font-size: 2rem;
  margin-bottom: 15px;
  line-height: 1.8em;
}
@media screen and (max-width: 767px) {
  .lp__about-title .eng {
    font-size: 1.5rem;
    margin-bottom: 19px;
    line-height: 2.4em;
  }
}
.lp__about-text {
  margin-top: 49px;
  font-size: 1.6rem;
  color: #fff;
  font-weight: 600;
  line-height: 2.25em;
}
@media screen and (max-width: 767px) {
  .lp__about-text {
    margin-top: 59px;
    font-size: 1.5rem;
    line-height: 2em;
  }
}
.lp__contact {
  padding-block: 150px;
}
.lp__contact-form {
  margin-bottom: 60px;
}
.lp__contact-item:not(:last-child) {
  margin-bottom: 40px;
}
.lp__contact-item--privacy {
  position: relative;
}
.lp__contact-label {
  font-size: 1.8rem;
  margin-bottom: 19px;
  font-weight: 500;
}
.lp__contact-label .required {
  font-size: 1.4rem;
  color: #00a0e9;
}
.lp__contact-input {
  gap: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.8rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .lp__contact-input {
    gap: 20px;
    font-size: 1.6rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.lp__contact-input input,
.lp__contact-input textarea {
  width: 100%;
  border: 1px solid #666;
  font: 500 1.8rem "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .lp__contact-input input,
  .lp__contact-input textarea {
    font-size: 1.6rem;
  }
}
.lp__contact-input input::-webkit-input-placeholder, .lp__contact-input textarea::-webkit-input-placeholder {
  color: #ccc;
  font: 500 1.8rem "Noto Sans JP", sans-serif;
}
.lp__contact-input input::-moz-placeholder, .lp__contact-input textarea::-moz-placeholder {
  color: #ccc;
  font: 500 1.8rem "Noto Sans JP", sans-serif;
}
.lp__contact-input input:-ms-input-placeholder, .lp__contact-input textarea:-ms-input-placeholder {
  color: #ccc;
  font: 500 1.8rem "Noto Sans JP", sans-serif;
}
.lp__contact-input input::-ms-input-placeholder, .lp__contact-input textarea::-ms-input-placeholder {
  color: #ccc;
  font: 500 1.8rem "Noto Sans JP", sans-serif;
}
.lp__contact-input input::placeholder,
.lp__contact-input textarea::placeholder {
  color: #ccc;
  font: 500 1.8rem "Noto Sans JP", sans-serif;
}
.lp__contact-input input {
  height: 60px;
  line-height: 1em;
  padding-inline: 20px;
}
.lp__contact-input textarea {
  resize: none;
  height: 150px;
  padding: 15px 20px;
}
.lp__contact-input input[name=name-2] + .error,
.lp__contact-input input[name=furi-2] + .error {
  left: 55%;
}
@media screen and (max-width: 767px) {
  .lp__contact-input input[name=name-2] + .error,
  .lp__contact-input input[name=furi-2] + .error {
    left: unset;
  }
}
.lp__contact-privacy-text {
  height: 284px;
  font-size: 1.4rem;
  overflow-y: scroll;
  color: #333;
  line-height: 1.5714285714em;
}
.lp__contact-privacy-text::-webkit-scrollbar {
  width: 16px;
}
@media screen and (max-width: 767px) {
  .lp__contact-privacy-text::-webkit-scrollbar {
    width: 10px;
  }
}
.lp__contact-privacy-text::-webkit-scrollbar-track {
  background-color: #f6f6f6;
}
.lp__contact-privacy-text::-webkit-scrollbar-thumb {
  background-color: #ccc;
}
.lp__contact-button {
  gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.lp__contact-complete {
  font-size: 2rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .lp__contact-complete {
    font-size: 1.6rem;
  }
}

.overflow {
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

@media screen and (max-width: 1000px) {
  .pc-tab {
    display: none;
  }
}

.sp-tab {
  display: none;
}
@media screen and (max-width: 1000px) {
  .sp-tab {
    display: block;
  }
}

.mwform-checkbox-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contact__checkbox {
  display: none;
}

.mwform-checkbox-field-text {
  gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  font-size: 1.8rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
}
.mwform-checkbox-field-text::before {
  content: "";
  width: 30px;
  height: 30px;
  display: block;
  border: 1px solid #333;
}

input:checked + .mwform-checkbox-field-text::before {
  background: url("./public/img/icons/check.svg") no-repeat center/contain;
  background-size: 23px 20px;
}

.mw_wp_form_confirm .lp__contact-item--privacy {
  display: none;
}

.mw_wp_form .error {
  bottom: -25px;
  position: absolute;
  font-size: 1.2rem !important;
}
@media screen and (max-width: 767px) {
  .mw_wp_form .error {
    bottom: unset;
    margin-top: -10px;
    position: relative;
  }
}

.lp__contact-item--privacy .error {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .lp__contact-item--privacy .error {
    bottom: -25px;
    position: absolute;
  }
}

.lp .splide__track {
  padding: 5px 0 40px;
}
.lp .splide__pagination {
  gap: 12px;
  left: unset;
  right: unset;
  bottom: unset;
  position: relative;
}
.lp .splide__pagination__page {
  margin: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #00a0e9;
  background-color: #fff;
}
.lp .splide__pagination__page.is-active {
  -webkit-transform: unset;
          transform: unset;
  background-color: #00a0e9;
}
.lp .splide__arrows {
  top: 50%;
  left: 50%;
  z-index: 20;
  width: 100%;
  max-width: 1050px;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 1000px) {
  .lp .splide__arrows {
    max-width: 630px;
  }
}
@media screen and (max-width: 767px) {
  .lp .splide__arrows {
    max-width: 535px;
  }
}
.lp .splide__arrow {
  opacity: 1;
  width: 50px;
  height: 50px;
}
@media screen and (max-width: 767px) {
  .lp .splide__arrow {
    width: 30px;
    height: 30px;
  }
}
.lp .splide__arrow svg {
  display: none;
}
.lp .splide__arrow--prev {
  background: url("./public/img/icons/caret-white-right.svg") no-repeat center/contain;
  background-position: 15px;
  background-size: 25px 20px;
  background-color: #00a0e9;
  -webkit-transform: translateY(-50%) scaleX(-1);
          transform: translateY(-50%) scaleX(-1);
}
@media screen and (max-width: 767px) {
  .lp .splide__arrow--prev {
    left: 5px;
    background-position: 9px;
    background-size: 15px 12px;
  }
}
.lp .splide__arrow--next {
  background: url("./public/img/icons/caret-white-right.svg") no-repeat center/contain;
  background-position: 15px;
  background-size: 25px 20px;
  background-color: #00a0e9;
}
@media screen and (max-width: 767px) {
  .lp .splide__arrow--next {
    right: 5px;
    background-position: 9px;
    background-size: 15px 12px;
  }
}
.lp .splide__arrow:hover {
  opacity: 1;
}