@charset "UTF-8";
/*
Theme Name: Theme name
Author: Author
Author URI:
*/
/* A Modern CSS Reset */
*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html {
  scroll-behavior: smooth;
  font-size: calc(100vw / 1280 * 16);
}
@media (1280px < width) {
  html {
    font-size: 16px;
  }
}
@media (width <= 768px) {
  html {
    font-size: calc(100vw / 375 * 16);
  }
}

body {
  font-family: "Noto Sans JP", serif;
  color: #000;
  line-height: 2;
  letter-spacing: 0.05em;
}

a {
  color: #000;
}
a:hover {
  opacity: 0.9;
  filter: alpha(opacity=90);
}

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

pre {
  white-space: pre;
}

/********************************************
* Layout
********************************************/
/* Header */
.l-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #fff;
}
.l-header__inner {
  padding: 0.625rem 1.25rem;
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.l-header__logo {
  width: 8rem;
}
@media (width <= 768px) {
  .l-header__logo {
    width: 6.25rem;
  }
}
.l-header .c-btn {
  width: 13rem;
  height: 3.125rem;
  font-size: 0.983125rem;
  display: inline-block;
  text-align: left;
  line-height: 3.125rem;
  padding-left: 1.875rem;
}
@media (width <= 768px) {
  .l-header .c-btn {
    width: 10rem;
    padding-left: 1.25rem;
    height: 2.1875rem;
    line-height: 2.1875rem;
    font-size: 0.75rem;
  }
}
.l-header .c-btn:before {
  width: 1.416875rem;
  height: 1.416875rem;
  right: 0.625rem;
  top: calc(50% - 0.708125rem);
}
.l-header .c-btn:after {
  width: 0.295625rem;
  height: 0.295625rem;
  border-top: 0.125rem solid #eb5c0c;
  border-right: 0.125rem solid #eb5c0c;
  top: calc(50% - 0.1875rem);
  right: 1.25rem;
}

/* Footer */
.l-footer {
  background: #000;
  font-size: 0.8125rem;
  text-align: center;
  padding: 2em 0;
  color: #fff;
}

.p-thanks-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  padding: 80px 20px 60px;
  text-align: center;
}
.p-thanks-message__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.4;
}
.p-thanks-message__text {
  font-size: 16px;
  line-height: 2;
  color: #333;
  max-width: 700px;
  margin: 0 auto 40px;
}
.p-thanks-message__text span {
  color: #f57c00;
  font-weight: bold;
}
.p-thanks-message__tel {
  font-weight: 600;
  font-size: 18px;
  display: block;
  margin-bottom: 40px;
}
.p-thanks-message__btn .c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 9999px;
  background-color: #e85a00;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s ease;
}
.p-thanks-message__btn .c-btn:hover {
  background-color: #cc4f00;
}

/********************************************
* Wordpress
********************************************/
/* Media */
.size-auto,
.size-full,
.size-large,
.size-medium,
.size-thumbnail {
  max-width: 100%;
  height: auto;
}

.aligncenter {
  display: block;
  margin: 0 auto;
}

.alignright {
  float: right;
}

.alignleft {
  float: left;
}

/* Contact Form */
.wpcf7 .wpcf7-not-valid-tip {
  display: none;
}
.wpcf7 .wpcf7-not-valid {
  background: pink;
}
.wpcf7 .wpcf7-response-output {
  margin: 10px 0 0;
  padding: 8px 35px 8px 14px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.wpcf7 .wpcf7-validation-errors {
  color: #b94a48;
  background-color: #f2dede;
  border: 1px solid #eed3d7;
}
.wpcf7 .wpcf7-mail-sent-ok {
  color: #3a87ad;
  background-color: #d9edf7;
  border: 1px solid #bce8f1;
}

/********************************************
* Component
********************************************/
.c-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #eb5c0c;
  width: 25.75rem;
  height: 5rem;
  text-align: center;
  font-size: 1.625rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  line-height: 1;
  position: relative;
}
@media (width <= 768px) {
  .c-btn {
    width: 100%;
    font-size: 1.125rem;
    height: 3.75rem;
  }
}
.c-btn:before {
  content: "";
  display: block;
  width: 2.75rem;
  height: 2.75rem;
  background: #fff;
  border-radius: 999px;
  position: absolute;
  right: 0.9375rem;
  top: calc(50% - 1.375rem);
}
.c-btn:after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-top: 0.1875rem solid #eb5c0c;
  border-right: 0.1875rem solid #eb5c0c;
  position: absolute;
  right: 2.1875rem;
  top: calc(50% - 0.125rem);
  transform: rotate(45deg);
}

.c-inner {
  max-width: 62.5rem;
  margin: 0 auto;
}
@media (width <= 768px) {
  .c-inner {
    width: 100%;
  }
}
.c-inner--small {
  max-width: 56.25rem;
}

.c-list {
  margin: 0;
  padding: 0;
}
.c-list--no-marker {
  list-style: none;
}
.c-list--check {
  list-style: none;
}
.c-list--check .c-list__item {
  background: url(../images/lp/check.png) no-repeat;
  background-position: left 1em;
  background-size: 0.875rem;
  padding: 0.5em 0 0.5em 1.5625rem;
  border-bottom: 0.125rem dashed #dedede;
}
.c-list--check .c-list__item:first-of-type {
  border-top: 0.125rem dashed #dedede;
}
.c-list--check2 {
  list-style: none;
}
.c-list--check2 .c-list__item {
  background: url(../images/lp/check2.png) no-repeat;
  background-position: left 1em;
  background-size: 0.875rem;
  padding: 0.5em 0 0.5em 1.5625rem;
  border-bottom: 0.125rem dashed #dedede;
}
.c-list--check2 .c-list__item:first-of-type {
  border-top: 0.125rem dashed #dedede;
}

.c-slider {
  width: 53.875rem;
  margin: 0 auto;
  position: relative;
}
@media (width <= 768px) {
  .c-slider {
    width: 100%;
  }
}
.c-slider__prev {
  width: 4.375rem;
  height: 4.375rem;
  background: url(../images/lp/arrow.png) no-repeat;
  background-size: cover;
  left: -2.1875rem;
}
@media (width <= 768px) {
  .c-slider__prev {
    width: 2.5rem;
    height: 2.5rem;
    left: -1.25rem;
  }
}
.c-slider__next {
  width: 4.375rem;
  height: 4.375rem;
  background: url(../images/lp/arrow.png) no-repeat;
  background-size: cover;
  transform: rotate(180deg);
  right: -2.1875rem;
}
@media (width <= 768px) {
  .c-slider__next {
    width: 2.5rem;
    height: 2.5rem;
    right: -1.25rem;
  }
}
.c-slider__img {
  border-radius: 0.625rem;
}
.c-slider .slick-arrow {
  position: absolute;
  z-index: 1;
  top: 13.75rem;
  cursor: pointer;
}
@media (width <= 768px) {
  .c-slider .slick-arrow {
    top: 4.6875rem;
  }
}
.c-slider .slick-dots {
  bottom: -3.75rem;
}
@media (width <= 768px) {
  .c-slider .slick-dots {
    bottom: -1.875rem;
  }
}
.c-slider .slick-dots li button:before {
  font-size: 0.6875rem;
}

.c-service__list {
  margin: 3.4375rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3.4375rem 1.25rem;
}
.c-service__list .c-list--no-marker {
  width: 100%;
}
.c-service__list .c-list--no-marker .c-list__item {
  letter-spacing: 0;
  font-size: 1.125rem;
  display: block;
}
.c-service__list .c-list--no-marker .c-list__item:not(:last-child) {
  border-bottom: 0.125rem dashed #dedede;
}
.c-service__list .c-list--no-marker .c-list__item--narrow {
  letter-spacing: -0.12em;
}
.c-service__item {
  width: 20rem;
  border: 0.1875rem solid #c7b719;
  border-radius: 0.625rem;
  padding: 2.5rem 1.0625rem 1.875rem;
  position: relative;
}
.c-service__title {
  position: absolute;
  width: 17.1875rem;
  top: -1.3125rem;
  left: calc(50% - 8.59375rem);
  background: #c7b719;
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 1.25rem;
  border-radius: 999px;
}

.c-system__list {
  margin: 2.5rem 0 0;
  padding: 0;
  list-style: none;
}
.c-system__item {
  background: #fff;
  border-radius: 0.625rem;
  display: flex;
  justify-content: space-between;
  padding: 1.5625rem 1.5625rem 1.5625rem 3.125rem;
  text-align: left;
}
@media (width <= 768px) {
  .c-system__item {
    padding: 1.25rem;
    flex-direction: column;
  }
}
.c-system__item:not(:last-child) {
  margin-bottom: 1.625rem;
}
.c-system__title {
  font-size: 1.5rem;
  margin-bottom: 0.625rem;
}
@media (width <= 768px) {
  .c-system__title {
    font-size: 1.125rem;
  }
}
.c-system__thumb {
  width: 27.125rem;
}
@media (width <= 768px) {
  .c-system__thumb {
    width: 100%;
    margin-bottom: 0.625rem;
    order: 1;
  }
}
.c-system__text {
  width: 22rem;
  line-height: 1.8;
}
@media (width <= 768px) {
  .c-system__text {
    width: 100%;
    order: 2;
  }
}

/********************************************
* Project
********************************************/
.p-mv {
  display: flex;
  position: relative;
  height: 45.3125rem;
  text-align: center;
}
@media (width <= 768px) {
  .p-mv {
    flex-direction: column;
    height: auto;
  }
}
.p-mv__inner {
  display: inline-block;
}
.p-mv__left {
  height: 100%;
  width: 45%;
  background: #f0eed9;
  padding-top: 5.3125rem;
  overflow: hidden;
  display: flex;
  justify-content: end;
  padding-right: 3.75rem;
}
@media (width <= 768px) {
  .p-mv__left {
    width: 100%;
    padding: 2.5rem 1.25rem 1.25rem;
  }
}
.p-mv__left-logo {
  width: 22.1875rem;
  margin: 0 auto 1.5625rem;
}
@media (width <= 768px) {
  .p-mv__left-logo {
    width: 12.5rem;
  }
}
.p-mv__left-p {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.2;
  margin-bottom: 1.875rem;
}
@media (width <= 768px) {
  .p-mv__left-p {
    font-size: 1.25rem;
    line-height: 1.6;
  }
}
.p-mv__left-img {
  border-radius: 0.625rem;
  width: 29.0625rem;
  margin: 0 auto;
}
.p-mv__right {
  color: #fff;
  height: 100%;
  width: 55%;
  background: linear-gradient(to bottom, #1e59b8 0, #baedff 100%);
  padding-top: 7.1875rem;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: start;
  padding-left: 5.625rem;
}
@media (width <= 768px) {
  .p-mv__right {
    width: 100%;
    padding: 6.25rem 1.25rem 6.25rem;
  }
}
.p-mv__right-catch {
  font-size: 1.875rem;
  font-weight: 700;
  color: #fbea53;
  padding: 0 2.5rem;
  position: relative;
  display: inline-block;
  line-height: 1.6;
}
@media (width <= 768px) {
  .p-mv__right-catch {
    font-size: 1.5rem;
  }
}
.p-mv__right-catch:before {
  content: "";
  width: 1.625rem;
  height: 1.75rem;
  background: url(../images/lp/fuki.png) no-repeat;
  background-size: 100%;
  position: absolute;
  left: 0;
  top: calc(50% - 0.625rem);
}
.p-mv__right-catch:after {
  content: "";
  width: 1.625rem;
  height: 1.75rem;
  background: url(../images/lp/fuki.png) no-repeat;
  background-size: 100%;
  position: absolute;
  right: 0;
  top: calc(50% - 0.625rem);
  transform: scale(-1, 1);
}
.p-mv__h1 {
  font-size: 3.125rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: underline dashed 0.125rem #fff;
  text-underline-offset: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
@media (width <= 768px) {
  .p-mv__h1 {
    font-size: 1.875rem;
  }
}
.p-mv__right-p {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 1.875rem;
}
@media (width <= 768px) {
  .p-mv__right-p {
    font-size: 0.875rem;
  }
}
.p-mv .c-btn {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  box-shadow: 0 0.25rem 0.25rem 0 rgba(0, 0, 0, 0.25);
}
.p-mv__fuki {
  position: absolute;
  font-size: 1.5rem;
  color: #1e59b8;
  font-weight: 700;
  line-height: 1.5;
  background: #fff;
  width: 11.6875rem;
  height: 11.6875rem;
  border-radius: 999px;
  padding-top: 4.6875rem;
  transform: rotate(25deg);
  right: -1.875rem;
  top: -3.125rem;
}
@media (width <= 768px) {
  .p-mv__fuki {
    letter-spacing: 0;
    font-size: 1rem;
    width: 7.5rem;
    height: 7.5rem;
    top: -1.875rem;
    right: -1.25rem;
    padding-top: 3.125rem;
  }
}
.p-mv__img {
  position: absolute;
}
.p-mv__cloud {
  width: 7.1875rem;
  top: 2.8125rem;
  left: 33rem;
}
@media (width <= 768px) {
  .p-mv__cloud {
    top: 1.25rem;
    left: -1.875rem;
  }
}
.p-mv__cloud2 {
  width: 7.0625rem;
  top: 19.6875rem;
  right: -3.75rem;
  z-index: 1;
}
.p-mv__people {
  bottom: 0;
  width: 45.375rem;
  left: calc(45% - 2.5rem);
  bottom: -2.8125rem;
  z-index: 1;
}
@media (width <= 768px) {
  .p-mv__people {
    width: calc(100% - 2.5rem);
    bottom: -1.25rem;
    left: 0.625rem;
  }
}
.p-mv__building {
  bottom: -0.125rem;
  left: 0;
}
@media (width <= 768px) {
  .p-mv__building {
    width: 100%;
  }
}

.p-about {
  text-align: center;
}
.p-about__title {
  margin-bottom: 0.8125rem;
  height: 20.1875rem;
  background: url(../images/lp/about-bg.jpg) no-repeat;
  background-position: center top;
  background-size: 100%;
  padding-top: 3.125rem;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.7;
}
@media (width <= 768px) {
  .p-about__title {
    height: auto;
    background-size: cover;
    font-size: 1.5rem;
    padding: 3.125rem 1.25rem 3.75rem;
  }
}
.p-about-span {
  font-size: 2.625rem;
}
@media (width <= 768px) {
  .p-about-span {
    font-size: 2.125rem;
  }
}
.p-about__title-span {
  display: inline-block;
  font-weight: 700;
  color: #fbea53;
  font-size: 1.875rem;
  padding: 0 3.125rem;
  position: relative;
}
@media (width <= 768px) {
  .p-about__title-span {
    font-size: 1.5rem;
    padding: 0 2.5rem;
  }
}
.p-about__title-span:before {
  content: "";
  width: 1.625rem;
  height: 1.75rem;
  background: url(../images/lp/fuki.png) no-repeat;
  background-size: 100%;
  position: absolute;
  left: 0;
  top: calc(50% - 0.875rem);
}
.p-about__title-span:after {
  content: "";
  width: 1.625rem;
  height: 1.75rem;
  background: url(../images/lp/fuki.png) no-repeat;
  background-size: 100%;
  position: absolute;
  right: 0;
  top: calc(50% - 0.875rem);
  transform: scale(-1, 1);
}
.p-about__1ssk {
  width: 49.375rem;
  height: 38.6875rem;
  display: inline-block;
}
@media (width <= 768px) {
  .p-about__1ssk {
    height: auto;
    padding: 1.25rem 1.25rem 0;
  }
}
.p-about__inner {
  background: url(../images/lp/ixo-bg.jpg) no-repeat;
  background-size: cover;
  margin-top: 2.1875rem !important;
  padding: 11.25rem 0 10rem !important;
}
@media (width <= 768px) {
  .p-about__inner {
    padding: 10rem 1.25rem 2.5rem !important;
  }
}
.p-about__logo {
  width: 20.9375rem;
  display: inline-block;
  margin-bottom: 0.3125rem;
}
@media (width <= 768px) {
  .p-about__logo {
    width: 12.5rem;
    margin-bottom: 0.625rem;
  }
}
.p-about__list {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 0.625rem;
  margin: 0;
  padding: 0;
  margin-bottom: 3.4375rem;
}
.p-about__item {
  border: 1px solid #000;
  padding: 0 0.625rem;
  line-height: 1.4;
}
.p-about__p {
  max-width: 53.75rem;
  font-size: 1.25rem;
  font-weight: 700px;
  display: block;
  position: relative;
  margin: 0 auto 5rem;
  width: 60rem;
}
@media (width <= 768px) {
  .p-about__p {
    font-size: 1rem;
    width: 100%;
    padding: 0 1.25rem;
    letter-spacing: 0.02em;
  }
}
.p-about__p:before {
  position: absolute;
  top: -3px;
  width: 10px;
  height: 100%;
  content: "";
  border-top: solid 3px;
  border-bottom: solid 3px;
  border-left: solid 3px;
  left: 0;
}
.p-about__p:after {
  position: absolute;
  top: -3px;
  width: 10px;
  height: 100%;
  content: "";
  border-top: solid 3px;
  border-bottom: solid 3px;
  border-right: solid 3px;
  right: 0;
}

.p-merit {
  background: #172c53;
  color: #fff;
  padding: 8.125rem 0 9.0625rem;
}
@media (width <= 768px) {
  .p-merit {
    padding: 2.5rem 1.25rem;
  }
}
.p-merit__title {
  text-align: center;
  font-size: 4.25rem;
  font-weight: 800;
  background: url(../images/lp/line.png) no-repeat;
  background-position: center bottom;
  background-size: 44.625rem;
  line-height: 1.8;
  margin-bottom: 3.75rem;
}
@media (width <= 768px) {
  .p-merit__title {
    font-size: 1.75rem;
    background-size: 100%;
  }
}
.p-merit__title .u-text--jost {
  font-size: 5rem;
  font-weight: 500;
}
@media (width <= 768px) {
  .p-merit__title .u-text--jost {
    font-size: 2.125rem;
    margin-right: 0.3125rem;
  }
}
.p-merit__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-merit__item {
  background: #fff;
  display: flex;
  position: relative;
  align-items: center;
  border-radius: 0.625rem;
}
@media (width <= 768px) {
  .p-merit__item {
    flex-direction: column;
    padding: 1.25rem;
  }
}
.p-merit__item:not(:last-of-type) {
  margin-bottom: 2.5rem;
}
.p-merit__item:nth-of-type(2n + 1) .p-merit__thumb {
  order: 1;
  border-radius: 0.625rem 0 0 0.625rem;
}
@media (width <= 768px) {
  .p-merit__item:nth-of-type(2n + 1) .p-merit__thumb {
    border-radius: 0.625rem;
  }
}
.p-merit__item:nth-of-type(2n + 1) .p-merit__text {
  order: 2;
}
.p-merit__item:nth-of-type(2n) .p-merit__thumb {
  order: 2;
  border-radius: 0 0.625rem 0.625rem 0;
}
@media (width <= 768px) {
  .p-merit__item:nth-of-type(2n) .p-merit__thumb {
    order: 1;
    border-radius: 0.625rem;
  }
}
.p-merit__item:nth-of-type(2n) .p-merit__text {
  order: 1;
}
@media (width <= 768px) {
  .p-merit__item:nth-of-type(2n) .p-merit__text {
    order: 2;
  }
}
.p-merit__thumb {
  width: 24rem;
  overflow: hidden;
}
@media (width <= 768px) {
  .p-merit__thumb {
    width: 100%;
    margin-bottom: 0.625rem;
  }
}
.p-merit__text {
  width: calc(100% - 24rem);
  color: #000;
  padding: 0 3.125rem;
}
@media (width <= 768px) {
  .p-merit__text {
    width: 100%;
    padding: 0;
  }
}
.p-merit__no {
  position: absolute;
  width: 4rem;
  height: 4rem;
  background: #c7b719;
  color: #fff;
  font-family: "jost", serif;
  border-radius: 999px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  font-size: 1.75rem;
  letter-spacing: 0;
  left: -0.625rem;
  top: -0.625rem;
}
.p-merit__list-title {
  color: #172c53;
  font-size: 1.5rem;
  font-weight: 700;
}
@media (width <= 768px) {
  .p-merit__list-title {
    margin-bottom: 0.625rem;
    line-height: 1.4;
  }
}

.p-point__inner {
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 8.125rem 0 8.125rem;
}
@media (width <= 768px) {
  .p-point__inner {
    padding: 5rem 1.25rem 3.75rem;
  }
}
.p-point__inner:nth-of-type(2) {
  background: url(../images/lp/point2-bg.png) no-repeat;
  background-size: cover;
  padding: 4.375rem 0 5.625rem;
}
@media (width <= 768px) {
  .p-point__inner:nth-of-type(2) {
    padding: 5rem 1.25rem 3.75rem;
  }
}
.p-point__inner:nth-of-type(2) .p-point__title {
  margin-bottom: 1.25rem;
}
.p-point__inner:nth-of-type(3) {
  padding: 6.875rem 0 5.625rem;
}
@media (width <= 768px) {
  .p-point__inner:nth-of-type(3) {
    padding: 6.25rem 1.25rem 3.75rem;
  }
}
.p-point__inner:nth-of-type(3) .p-point__p {
  text-align: center;
}
@media (width <= 768px) {
  .p-point__inner:nth-of-type(3) .p-point__p {
    text-align: left;
  }
}
.p-point__point {
  width: 14.25rem;
  height: 14.25rem;
  background: #f9f8ef;
  border-radius: 999px;
  font-family: "jost", serif;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1;
  left: -3.125rem;
  top: -3.4375rem;
  position: absolute;
  padding: 5.9375rem 0 0 1.875rem;
  text-align: center;
}
@media (width <= 768px) {
  .p-point__point {
    width: 9.375rem;
    height: 9.375rem;
    top: -3.75rem;
    font-size: 1.5rem;
    padding: 5rem 0 0 1.875rem;
  }
}
.p-point__point span {
  display: block;
  font-size: 2rem;
}
@media (width <= 768px) {
  .p-point__point span {
    font-size: 1.25rem;
  }
}
.p-point__title {
  display: inline-block;
  text-align: center;
  margin: 0 auto 1.875rem;
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(to bottom, transparent 75%, #23deff 75%, #23deff calc(75% + 0.5rem), transparent calc(75% + 0.5rem), transparent 100%);
}
@media (width <= 768px) {
  .p-point__title {
    display: inline;
    font-size: 1.75rem;
    line-height: 1.4;
  }
}
.p-point__p {
  text-align: left;
}
@media (width <= 768px) {
  .p-point__p {
    margin-top: 0.625rem;
  }
}
.p-point__list {
  display: flex;
  list-style: none;
  justify-content: center;
  gap: 2.5rem;
  padding: 0;
  margin: 1.875rem auto 2.5rem;
}
@media (width <= 768px) {
  .p-point__list {
    flex-wrap: wrap;
    gap: 2.5rem 1.25rem;
  }
}
.p-point__list-item {
  text-align: center;
  width: 13.75rem;
  height: 14.375rem;
  background: url(../images/lp/point2-fuki.png) no-repeat;
  background-position: center bottom;
  background-size: 100%;
  font-size: 0.875rem;
  line-height: 1.6em;
  letter-spacing: 0.03em;
}
@media (width <= 768px) {
  .p-point__list-item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 40vw;
    height: 40vw;
  }
}
.p-point__list-img {
  display: inline-block;
  width: auto;
  height: 8.125rem;
  margin-bottom: 0.4375rem;
}
@media (width <= 768px) {
  .p-point__list-img {
    height: 6.875rem;
  }
}
.p-point__list-p {
  font-size: 0.875rem;
  font-weight: 700;
  color: #172c53;
}
@media (width <= 768px) {
  .p-point__list-p {
    font-size: 0.75rem;
    line-height: 1.4;
  }
}
.p-point__list2 {
  list-style: none;
  padding: 0;
  margin: 3.75rem 0 3.125rem;
  text-align: left;
}
.p-point__list2-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (width <= 768px) {
  .p-point__list2-item {
    flex-direction: column;
  }
}
.p-point__list2-item:not(:last-of-type) {
  margin-bottom: 2.5rem;
}
.p-point__list2-thumb {
  width: 18.375rem;
  order: 1;
  border-radius: 0.625rem;
  overflow: hidden;
}
@media (width <= 768px) {
  .p-point__list2-thumb {
    margin-bottom: 0.625rem;
    width: 100%;
  }
}
.p-point__list2-thumb img {
  width: 100%;
  height: auto;
}
.p-point__list2-text {
  width: 35rem;
  order: 2;
}
@media (width <= 768px) {
  .p-point__list2-text {
    width: 100%;
  }
}
.p-point__list2-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #172c53;
  line-height: 1;
}
@media (width <= 768px) {
  .p-point__list2-title {
    font-size: 1.125rem;
  }
}
.p-point__list2-no {
  font-size: 2.5rem;
  color: #000;
  opacity: 0.2;
  font-weight: 400;
  font-family: "jost", serif;
  letter-spacing: 0;
  vertical-align: middle;
  display: inline-block;
}
@media (width <= 768px) {
  .p-point__list2-no {
    font-size: 1.875rem;
    transform: translateY(-0.1875rem);
  }
}

.p-intro {
  border: 0.1875rem solid #c7b719;
  border-radius: 1.25rem;
  padding: 5.9375rem 4.375rem 3.75rem;
  margin-bottom: 5rem;
  position: relative;
}
@media (width <= 768px) {
  .p-intro {
    padding: 3.125rem 1.25rem 2.5rem;
    margin: 0 1.25rem 2.5rem;
    width: calc(100% - 2.5rem);
  }
}
.p-intro__title {
  position: absolute;
  top: -2.8125rem;
  left: calc(50% - 14.375rem);
  background: #c7b719;
  color: #fff;
  display: block;
  width: 28.8125rem;
  height: 5.625rem;
  background: url(../images/lp/intro-fuki.png) no-repeat;
  background-size: 100%;
  background-position: center;
  text-align: center;
  font-size: 1.875rem;
  padding-top: 0.3125rem;
}
@media (width <= 768px) {
  .p-intro__title {
    font-size: 1.5rem;
    width: 17.5rem;
    height: 3.75rem;
    left: calc(50% - 8.75rem);
    top: -1.875rem;
    line-height: 2.5rem;
  }
}
.p-intro .c-slider__img {
  margin-bottom: 1.875rem;
}

.p-soudan {
  background: url(../images/lp/soudan-bg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  height: 36.3125rem;
  padding: 4.8125rem 0 4.125rem;
  text-align: center;
  color: #172c53;
  position: relative;
}
@media (width <= 768px) {
  .p-soudan {
    padding: 3.75rem 1.25rem;
    height: auto;
  }
}
.p-soudan:before {
  content: "";
  background: linear-gradient(to right, #d6b744 0%, #f0e7a4 50%, #d6b744 100%);
  width: 100%;
  height: 0.8125rem;
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: 0 0.125rem 0.5rem 0 rgba(0, 0, 0, 0.25);
}
.p-soudan:after {
  content: "";
  background: linear-gradient(to right, #d6b744 0%, #f0e7a4 50%, #d6b744 100%);
  width: 100%;
  height: 0.8125rem;
  position: absolute;
  bottom: 0;
  left: 0;
  box-shadow: 0 0.125rem 0.5rem 0 rgba(0, 0, 0, 0.25);
}
.p-soudan__title {
  font-size: 3.4375rem;
  letter-spacing: 0;
  line-height: 1.4;
  margin-bottom: 1.875rem;
}
@media (width <= 768px) {
  .p-soudan__title {
    font-size: 2.5rem;
  }
}
.p-soudan__title-span {
  font-size: 2.1875rem;
  display: block;
  margin-bottom: 0.625rem;
}
@media (width <= 768px) {
  .p-soudan__title-span {
    font-size: 1.125rem;
  }
}
.p-soudan__p {
  font-size: 1.25rem;
  margin-bottom: 1.875rem;
}
@media (width <= 768px) {
  .p-soudan__p {
    font-size: 1rem;
  }
}
.p-soudan .c-btn {
  margin: 0 auto;
}
.p-soudan--short {
  height: 21.125rem;
  padding: 3.75rem 0 0;
}
.p-soudan--short:after {
  content: inherit;
}
.p-soudan__fuki {
  position: relative;
  padding: 0 3.125rem;
  display: inline-block;
}
.p-soudan__fuki:before {
  width: 2.375rem;
  height: 2.5625rem;
  background: url(images/lp/voice-fuki.png) no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  top: calc(50% - 1.25rem);
}

.p-support__header {
  text-align: center;
  background: url(../images/lp/support-bg.jpg) no-repeat;
  background-size: cover;
  padding: 4.375rem 0 6.25rem;
  color: #fff;
  height: 25.8125rem;
}
@media (width <= 768px) {
  .p-support__header {
    padding: 3.75rem 1.25rem 6.25rem;
    height: auto;
    background-position: center bottom;
    background-size: 80rem 100%;
  }
}
.p-support__title {
  font-size: 2.1875rem;
  letter-spacing: 0;
  line-height: 1.4;
  margin-bottom: 2.5rem;
}
@media (width <= 768px) {
  .p-support__title {
    font-size: 1.375rem;
    margin-bottom: 1.25rem;
  }
}
.p-support__title-span {
  font-size: 2.625rem;
  display: inline-block;
  color: #fbea53;
  text-decoration: underline dashed 0.125rem white;
  text-underline-offset: 0.625rem;
}
.p-support__p {
  font-size: 0.9375rem;
  font-weight: 700;
}
.p-support__list {
  padding: 0;
  margin: 0;
}
.p-support__list-item {
  background: #fff;
  margin-top: -6.25rem;
  padding: 9.375rem 0 9.375rem !important;
  text-align: center;
}
@media (width <= 768px) {
  .p-support__list-item {
    padding: 8.75rem 1.25rem 6.25rem !important;
  }
}
.p-support__list-item:nth-of-type(2) {
  background: #e3f0d9;
  padding: 11.25rem 0 9.375rem !important;
}
@media (width <= 768px) {
  .p-support__list-item:nth-of-type(2) {
    padding: 8.75rem 1.25rem 6.25rem !important;
  }
}
.p-support__list-item:nth-of-type(3) {
  padding: 10.625rem 0 9.375rem !important;
}
@media (width <= 768px) {
  .p-support__list-item:nth-of-type(3) {
    padding: 8.75rem 1.25rem 2.5rem !important;
  }
}
.p-support__list-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #172c53;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1.5625rem;
}
@media (width <= 768px) {
  .p-support__list-title {
    font-size: 1.625rem;
    line-height: 1.4;
    display: inline;
  }
}
.p-support__no {
  background: #172c53;
  color: #172c53;
  font-size: 1.875rem;
  font-weight: 500;
  text-align: center;
  width: 4rem;
  height: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "jost", serif;
  line-height: 1;
  color: #fff;
  border-radius: 999px;
}
@media (width <= 768px) {
  .p-support__no {
    width: 3.125rem;
    height: 3.125rem;
    font-size: 1.25rem;
    margin: 0 auto 0.625rem;
  }
}
@media (width <= 768px) {
  .p-support__list-p {
    margin-top: 0.625rem;
  }
}

.p-accountant {
  background: #e3f0d9;
  border-radius: 0.625rem;
  margin: 2.1875rem 0 0;
  padding: 3.125rem;
  text-align: left;
  color: #172c53;
}
@media (width <= 768px) {
  .p-accountant {
    padding: 1.25rem;
  }
}
.p-accountant__top {
  display: flex;
  justify-content: space-between;
  border-bottom: 0.125rem solid #172c53;
  padding-bottom: 3.125rem;
  margin-bottom: 3.125rem;
}
@media (width <= 768px) {
  .p-accountant__top {
    flex-direction: column;
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
  }
}
.p-accountant__top-title {
  font-size: 1.5rem;
  color: #172c53;
  margin-bottom: 0.625rem;
}
.p-accountant__top-thumb {
  width: 19.625rem;
}
@media (width <= 768px) {
  .p-accountant__top-thumb {
    width: 100%;
  }
}
.p-accountant__top-text {
  width: 33.875rem;
}
@media (width <= 768px) {
  .p-accountant__top-text {
    width: 100%;
  }
}
.p-accountant__bottom {
  display: flex;
  justify-content: space-between;
  padding: 0 1.25rem;
}
@media (width <= 768px) {
  .p-accountant__bottom {
    flex-direction: column;
    padding: 0;
  }
}
.p-accountant__bottom-title {
  font-size: 2.25rem;
  line-height: 1.4;
  margin-bottom: 0.625rem;
}
@media (width <= 768px) {
  .p-accountant__bottom-title {
    font-size: 1.5rem;
  }
}
.p-accountant__catch {
  line-height: 1;
}
.p-accountant__left {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 35rem;
}
@media (width <= 768px) {
  .p-accountant__left {
    width: 100%;
    flex-direction: column;
    order: 2;
  }
}
.p-accountant__name {
  font-size: 1.5rem;
  font-weight: 700;
}
@media (width <= 768px) {
  .p-accountant__name {
    font-size: 1.125rem;
  }
}
.p-accountant__name-span {
  font-weight: 400;
  font-size: 1rem;
}
.p-accountant__position {
  font-size: 0.75rem;
}
.p-accountant__left-thumb {
  order: 1;
  width: 11.6875rem;
}
@media (width <= 768px) {
  .p-accountant__left-thumb {
    width: 100%;
    margin-bottom: 0.625rem;
  }
}
.p-accountant__left-thumb img {
  width: 100%;
}
.p-accountant__left-text {
  width: 21.25rem;
  order: 2;
}
@media (width <= 768px) {
  .p-accountant__left-text {
    width: 100%;
  }
}
.p-accountant__p {
  width: 100%;
  order: 3;
  margin-top: 2.5rem;
  padding-left: 1.875rem;
  line-height: 1.6;
}
@media (width <= 768px) {
  .p-accountant__p {
    padding-left: 0;
    margin-top: 1em;
  }
}
@media (width <= 768px) {
  .p-accountant__right {
    position: relative;
    padding-top: 6.25rem;
    order: 1;
  }
}
.p-accountant__fuki {
  text-align: center;
  width: 16.5rem;
  height: 16.5rem;
  background: url(../images/lp/support-fuki.png) no-repeat;
  background-size: cover;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  padding-top: 3.125rem;
  letter-spacing: 0;
  line-height: 1.6;
}
@media (width <= 768px) {
  .p-accountant__fuki {
    background: url(../images/lp/support-fuki-sp.png) no-repeat;
    background-size: cover;
    width: 8.75rem;
    height: 8.75rem;
    font-size: 0.875rem;
    padding-top: 1.5625rem;
    position: absolute;
    right: 0;
    top: -0.625rem;
  }
}

.p-voice {
  background: url(../images/lp/voice-bg.jpg) no-repeat;
  background-size: cover;
  text-align: center;
  padding: 5rem 0 6.25rem;
}
@media (width <= 768px) {
  .p-voice {
    padding: 2.5rem 1.25rem;
  }
}
.p-voice__title {
  font-size: 3.4375rem;
  color: #172c53;
  text-align: center;
  position: relative;
  display: inline-block;
  padding: 0 4.375rem;
  margin-bottom: 1.25rem;
}
@media (width <= 768px) {
  .p-voice__title {
    font-size: 1.875rem;
    padding: 0 2.5rem;
  }
}
.p-voice__title:before {
  content: "";
  position: absolute;
  width: 3.4375rem;
  height: 3.701875rem;
  left: 0;
  top: calc(50% - 1.25rem);
  background: url(../images/lp/voice-fuki.png) no-repeat;
  background-size: 100%;
}
@media (width <= 768px) {
  .p-voice__title:before {
    width: 1.875rem;
    height: 2rem;
    top: calc(50% - 0.9375rem);
  }
}
.p-voice__title:after {
  content: "";
  position: absolute;
  width: 3.4375rem;
  height: 3.701875rem;
  right: 0;
  top: calc(50% - 1.25rem);
  background: url(../images/lp/voice-fuki.png) no-repeat;
  background-size: 100%;
  transform: scale(-1, 1);
}
@media (width <= 768px) {
  .p-voice__title:after {
    width: 1.875rem;
    height: 2rem;
    top: calc(50% - 0.9375rem);
  }
}
.p-voice__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-voice__item {
  background: #fff;
  border: 0.125rem solid rgba(23, 44, 83, 0.17);
  border-radius: 0.625rem;
  display: flex;
  justify-content: space-between;
  padding: 2.1875rem 2.8125rem;
}
@media (width <= 768px) {
  .p-voice__item {
    padding: 1.25rem;
    flex-direction: column;
  }
}
.p-voice__item:not(:last-of-type) {
  margin-bottom: 1.4375rem;
}
.p-voice__list-thumb {
  width: 8.625rem;
  overflow: hidden;
  order: 1;
}
@media (width <= 768px) {
  .p-voice__list-thumb {
    margin: 0 auto 0.625rem;
  }
}
.p-voice__list-text {
  order: 2;
  width: 39.6875rem;
  text-align: left;
}
@media (width <= 768px) {
  .p-voice__list-text {
    width: 100%;
  }
}
.p-voice__list-title {
  font-size: 1.5rem;
  color: #172c53;
  line-height: 1.2;
  margin-bottom: 0.625rem;
}
@media (width <= 768px) {
  .p-voice__list-title {
    font-size: 1.25rem;
    line-height: 1.4;
  }
}

.p-flow {
  text-align: center;
  padding: 5rem 0 6.25rem;
}
@media (width <= 768px) {
  .p-flow {
    padding: 2.5rem 1.25rem;
  }
}
.p-flow__title {
  font-size: 3.4375rem;
  color: #172c53;
  text-align: center;
  position: relative;
  display: inline-block;
}
@media (width <= 768px) {
  .p-flow__title {
    font-size: 1.875rem;
  }
}
.p-flow__list {
  margin: 0;
  padding: 2.5rem 0 2.5rem;
  list-style: none;
  display: flex;
  gap: 2.625rem;
  justify-content: space-between;
}
@media (width <= 768px) {
  .p-flow__list {
    flex-direction: column;
  }
}
.p-flow__item {
  background: #f9f8ef;
  border-radius: 0.625rem;
  position: relative;
  width: 17rem;
  position: relative;
  padding: 3.125rem 1.375rem 1.5625rem;
}
@media (width <= 768px) {
  .p-flow__item {
    width: 100%;
    padding: 1.25rem;
  }
}
.p-flow__item:not(:last-of-type):after {
  position: absolute;
  content: "";
  width: 1.875rem;
  height: 3.25rem;
  background: #172c53;
  opacity: 0.2;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  right: -2.375rem;
  top: calc(50% - 1.625rem);
}
@media (width <= 768px) {
  .p-flow__item:not(:last-of-type):after {
    right: calc(50% - 0.9375rem);
    top: inherit;
    bottom: -2.625rem;
    width: 1.625rem;
    height: 2.5rem;
    transform: rotate(90deg);
  }
}
.p-flow__item:nth-of-type(1) .p-flow__img {
  width: 8.625rem;
}
.p-flow__item:nth-of-type(2) .p-flow__img {
  width: 12.75rem;
}
.p-flow__item:nth-of-type(3) .p-flow__img {
  width: 8.5rem;
}
.p-flow__no {
  background: #172c53;
  color: #fff;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.625rem;
  font-weight: 400;
  letter-spacing: 0;
  border-radius: 999px;
  position: absolute;
  left: -0.375rem;
  top: -0.375rem;
}
.p-flow__thumb {
  height: 7.625rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5625rem;
}
.p-flow__list-title {
  color: #172c53;
  font-size: 1.5rem;
}
.p-flow__list-p {
  font-weight: 500;
}
.p-flow__list-notice {
  font-size: 0.625rem;
}

.p-company .c-inner {
  display: flex;
  justify-content: space-between;
}
@media (width <= 768px) {
  .p-company .c-inner {
    flex-direction: column;
    padding: 0 1.25rem;
  }
}
.p-company__title {
  position: relative;
  font-size: 2rem;
  color: #172c53;
  margin-bottom: 0.625rem;
}
@media (width <= 768px) {
  .p-company__title {
    font-size: 1.875rem;
  }
}
.p-company__title:before {
  position: absolute;
  content: "";
  width: 100%;
  background: #172c53;
  height: 0.125rem;
  right: calc(100% + 1.875rem);
  top: calc(50% - 0.0625rem);
}
.p-company__text {
  width: 38.5625rem;
}
@media (width <= 768px) {
  .p-company__text {
    width: 100%;
  }
}
.p-company__thumb {
  width: 21.5rem;
  padding-top: 6.25rem;
}
@media (width <= 768px) {
  .p-company__thumb {
    padding-top: 0;
    margin-bottom: 2.5rem;
  }
}
.p-company__img {
  border-radius: 0.625rem;
}
.p-company__img:not(:last-of-type) {
  margin-bottom: 1.4375rem;
}
@media (width <= 768px) {
  .p-company__img:not(:last-of-type) {
    margin-bottom: 1.25rem;
  }
}
.p-company__table {
  width: 100%;
  line-height: 1.7;
  margin-bottom: 11.25rem;
}
@media (width <= 768px) {
  .p-company__table {
    margin-bottom: 1.25rem;
  }
}
.p-company__table tr {
  border-bottom: 0.125rem solid rgba(23, 44, 83, 0.2);
  display: block;
}
.p-company__table th {
  width: 8.9375rem;
  text-align: left;
  padding: 1.25em 0;
  vertical-align: top;
}
@media (width <= 768px) {
  .p-company__table th {
    width: 6.875rem;
  }
}
.p-company__table td {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 1.25em 0;
}
.p-company__table .c-list {
  display: flex;
  flex-wrap: wrap;
}
.p-company__table .c-list__item {
  width: 50%;
  display: inline-block;
}
@media (width <= 768px) {
  .p-company__table .c-list__item {
    width: 100%;
  }
}
.p-company__detail-table .c-list__item:nth-of-type(2n + 1) {
  width: 9.375rem;
}
@media (width <= 768px) {
  .p-company__detail-table .c-list__item:nth-of-type(2n + 1) {
    width: 100%;
  }
}
.p-company__detail-table .c-list__item:nth-of-type(2n) {
  width: calc(100% - 9.375rem);
}
@media (width <= 768px) {
  .p-company__detail-table .c-list__item:nth-of-type(2n) {
    width: 100%;
  }
}

.p-form {
  background: #172c53;
  text-align: center;
  color: #fff;
  padding-bottom: 6.25rem;
}
@media (width <= 768px) {
  .p-form {
    padding: 3.75rem 1.25rem 2.5rem;
  }
}
.p-form__title {
  font-size: 2.5rem;
  letter-spacing: 0.03em;
  margin-bottom: 1.875rem;
}
.p-form__table {
  text-align: left;
  width: 50.625rem;
  margin: 0 auto 2.5rem;
}
@media (width <= 768px) {
  .p-form__table {
    width: 100%;
    margin-bottom: 0;
  }
}
.p-form__table th {
  display: block;
  font-size: 1.375rem;
  margin-bottom: 0.625rem;
}
.p-form__table td {
  display: block;
  margin-bottom: 1.75rem;
}
.p-form__table input[type=tel],
.p-form__table input[type=email],
.p-form__table input[type=text] {
  width: 100%;
  height: 3.75rem;
  border-radius: 0.625rem;
  padding: 0 1.375rem;
  border: none;
}
.p-form__table ::placeholder {
  color: #000;
  opacity: 0.3;
}
.p-form__area {
  display: flex !important;
  gap: 0.9375rem;
}
@media (width <= 768px) {
  .p-form__area {
    flex-wrap: wrap;
  }
}
.p-form__pref {
  width: 15.5rem;
  border-radius: 0.625rem;
  border: none;
  color: rgba(0, 0, 0, 0.3);
}
@media (width <= 768px) {
  .p-form__pref {
    width: 100%;
    height: 3.75rem;
  }
}
.p-form__pref.is-selected {
  color: #000;
}
.p-form__city {
  width: 34.1875rem !important;
}
@media (width <= 768px) {
  .p-form__city {
    width: 100% !important;
  }
}
.p-form .c-btn {
  margin: 0 auto;
  border: none;
}

/* Utilities */
.u-mt0 {
  margin-top: 0px;
}

.u-mb0 {
  margin-bottom: 0px;
}

.u-mt10 {
  margin-top: 10px;
}

.u-mb10 {
  margin-bottom: 10px;
}

.u-mt20 {
  margin-top: 20px;
}

.u-mb20 {
  margin-bottom: 20px;
}

.u-mt30 {
  margin-top: 30px;
}

.u-mb30 {
  margin-bottom: 30px;
}

.u-mt40 {
  margin-top: 40px;
}

.u-mb40 {
  margin-bottom: 40px;
}

.u-mt50 {
  margin-top: 50px;
}

.u-mb50 {
  margin-bottom: 50px;
}

.u-mt60 {
  margin-top: 60px;
}

.u-mb60 {
  margin-bottom: 60px;
}

.u-mt70 {
  margin-top: 70px;
}

.u-mb70 {
  margin-bottom: 70px;
}

.u-mt80 {
  margin-top: 80px;
}

.u-mb80 {
  margin-bottom: 80px;
}

.u-mt90 {
  margin-top: 90px;
}

.u-mb90 {
  margin-bottom: 90px;
}

.u-mt100 {
  margin-top: 100px;
}

.u-mb100 {
  margin-bottom: 100px;
}

.u-pc {
  display: block;
}
.u-pc--inline {
  display: inline;
}
.u-pc--iblock {
  display: inline-block;
}
.u-pc--table {
  display: table;
}

.u-sp {
  display: none;
}
.u-sp--inline {
  display: none;
}
.u-sp--iblock {
  display: none;
}
.u-sp--table {
  display: none;
}

.u-marker {
  background: linear-gradient(to bottom, transparent 75%, #23deff 75%, #23deff calc(75% + 0.5rem), transparent calc(75% + 0.5rem), transparent 100%);
}

.u-ofit {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.u-pos--absolute {
  position: absolute;
}
.u-pos--fixed {
  position: fixed;
}
.u-pos--relative {
  position: relative;
}

.u-text--default {
  font-family: "Noto Sans JP", serif;
}
.u-text--mincho {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.u-text--jost {
  font-family: "Jost", serif;
  letter-spacing: 0;
}
.u-text--small {
  font-size: 0.7em;
}
.u-text--big {
  font-size: 1.3em;
}
.u-text--center {
  text-align: center;
}
.u-text--left {
  text-align: left;
}
.u-text--right {
  text-align: right;
}
.u-text--thin {
  font-weight: 100;
}
.u-text--extra-light {
  font-weight: 200;
}
.u-text--light {
  font-weight: 300;
}
.u-text--regular {
  font-weight: 400;
}
.u-text--medium {
  font-weight: 500;
}
.u-text--semi-bold {
  font-weight: 600;
}
.u-text--bold {
  font-weight: 700;
}
.u-text--extra-bold {
  font-weight: 800;
}
.u-text--black {
  font-weight: 900;
}
.u-text--big {
  font-size: 1.4em;
}
.u-text--regular {
  font-size: 1em;
}
.u-text--small {
  font-size: 0.8em;
}

.u-text_ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  background-color: #ccc;
  line-height: 1.5;
}
.u-text_ellipsis--multiline {
  white-space: normal;
  max-height: 3em;
  position: relative;
}
.u-text_ellipsis--multiline::after {
  content: "…";
  position: absolute;
  display: block;
  bottom: 0;
  right: 0;
  background-color: #ccc;
}
.u-text_ellipsis--line2 {
  max-height: 3em;
}
.u-text_ellipsis--line3 {
  max-height: 4.5em;
}
.u-text_ellipsis--line4 {
  max-height: 6em;
}
.u-text_ellipsis--line5 {
  max-height: 7.5em;
}

.u-color--main {
  color: #172c53;
}
.u-color--accent {
  color: #c7b719;
}
.u-color--brown {
  color: #a34229;
}

@media (width <= 768px) {
  .u-pc {
    display: none;
  }
  .u-pc--inline {
    display: none;
  }
  .u-pc--iblock {
    display: none;
  }
  .u-pc--table {
    display: none;
  }
  .u-sp {
    display: block;
  }
  .u-sp--inline {
    display: inline;
  }
  .u-sp--iblock {
    display: inline-block;
  }
  .u-sp--table {
    display: table;
  }
}
.u-shape--type01 {
  margin-top: -6.25rem;
  clip-path: polygon(0 0, 50% 6.25rem, 100% 0, 100% 100%, 0 100%);
  padding-top: 10.625rem;
}/*# sourceMappingURL=style.css.map */