@charset "UTF-8";
html {
  height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
  font-size: 0.6944444444vw;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
@media screen and (max-width: 1079px) {
  html {
    font-size: 0.7083333333vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  height: 100%;
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #032441;
  -webkit-font-smoothing: antialiased;
}
@media screen and (max-width: 991px) {
  body.is-fixed {
    overflow: hidden;
  }
}

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

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

svg {
  display: block;
  width: 100%;
  height: auto;
}

a,
button,
input[type=submit] {
  text-decoration: none;
  color: #032441;
  transition: all 0.3s;
  cursor: pointer;
}
a:hover,
button:hover,
input[type=submit]:hover {
  opacity: 0.7;
}

input,
textarea,
select,
button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
}

input[type=checkbox],
input[type=radio] {
  width: auto;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

textarea {
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #cacaca;
}

button:disabled {
  opacity: 0.7;
  pointer-events: none;
}

strong {
  font-weight: 700;
}

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

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

.text-main {
  color: #0062b9;
}

.text-center {
  text-align: center;
}

.font-outfit {
  font-family: "Outfit", sans-serif;
}

.whitespace-nowrap {
  white-space: nowrap;
}

/* Contact Form 7 */
.wpcf7-form-control-wrap {
  width: 100%;
}

.wpcf7-not-valid-tip {
  margin-top: 0.6rem;
  font-size: 1.4rem;
  color: #db0000;
}

.wpcf7-spinner {
  display: none !important;
}

/* Swiper */
.swiper {
  visibility: hidden;
}
.swiper.swiper-initialized {
  visibility: visible;
}

.swiper-button-prev,
.swiper-button-next {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  width: auto;
  height: auto;
  margin: 0;
}

/* recapcha */
.grecaptcha-badge {
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .grecaptcha-badge {
    display: none !important;
  }
}

/* c-input */
.c-input {
  width: 100%;
  padding: 2rem 3rem;
  border-radius: 0.4rem;
  background-color: #fff;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .c-input {
    padding: 1rem 2rem;
  }
}

/* c-checkbox */
.c-checkbox .wpcf7-list-item {
  margin: 0;
}
.c-checkbox .wpcf7-list-item label {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  height: 100%;
  gap: 0 1rem;
  transition: background-color 0.3s, border-color 0.3s;
  font-size: 1.4rem;
  cursor: pointer;
}
.c-checkbox .wpcf7-list-item label:has(input:checked) {
  border-color: #0062b9;
}
.c-checkbox .wpcf7-list-item label:has(input:checked):before {
  background-color: #0062b9;
  border-color: #0062b9;
}
.c-checkbox .wpcf7-list-item label:before {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border: 0.1rem solid #032441;
  border-radius: 0.4rem;
  background-color: #fff;
  text-align: center;
  transition: all 0.2s ease;
}
.c-checkbox .wpcf7-list-item input[type=checkbox] {
  display: none;
}
.c-checkbox .wpcf7-list-item input[type=checkbox]:checked ~ .wpcf7-list-item-label::before {
  position: absolute;
  top: 46%;
  left: 0.9rem;
  width: 1.3rem;
  height: 0.8rem;
  border-left: 0.3rem solid #fff;
  border-bottom: 0.3rem solid #fff;
  transform: translateY(-50%) rotate(-45deg);
}
.c-checkbox--reservation .wpcf7-list-item {
  margin: 0;
}
.c-checkbox--reservation .wpcf7-list-item label:has(input:checked) {
  border-color: #0062b9;
}
.c-checkbox--reservation .wpcf7-list-item label:has(input:checked):before {
  background-color: #0062b9;
  border-color: #0062b9;
}

/* c-radio */
@media screen and (max-width: 767px) {
  .c-radio {
    display: flex;
    flex-direction: column;
    gap: 8px 0;
  }
}
.c-radio .wpcf7-list-item {
  margin: 0 24px 0 0;
}
@media screen and (max-width: 767px) {
  .c-radio .wpcf7-list-item {
    margin: 0;
  }
}
.c-radio .wpcf7-list-item label {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 8px;
  width: 100%;
  height: 100%;
  transition: background-color 0.3s, border-color 0.3s;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
}
.c-radio .wpcf7-list-item label:before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 9999px;
  border: 1px solid #ccc;
  display: inline-block;
  flex-shrink: 0;
  box-sizing: border-box;
  text-align: center;
  transition: all 0.2s ease;
}
.c-radio .wpcf7-list-item input[type=radio] {
  display: none;
}
.c-radio .wpcf7-list-item input[type=radio]:checked ~ .wpcf7-list-item-label::before {
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 9999px;
  background-color: #0062b9;
}
.c-radio--reservation .wpcf7-list-item {
  margin: 0 30px 0 0;
}
@media screen and (max-width: 767px) {
  .c-radio--reservation .wpcf7-list-item {
    margin: 0;
  }
}
.c-radio--reservation .wpcf7-list-item input[type=radio]:checked ~ .wpcf7-list-item-label::before {
  background-color: #f38303;
}

/* c-select */
.c-select {
  position: relative;
  border-radius: 0.4rem;
}
.c-select:after {
  content: "";
  position: absolute;
  top: 2.9rem;
  right: 2rem;
  width: 1.2rem;
  height: 0.8rem;
  background-image: url("../img/common/arrow_select.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .c-select:after {
    top: 1.9rem;
  }
}
.c-select select {
  width: 100%;
  padding: 2rem 3rem;
  font-size: 1.4rem;
  color: #0062b9;
  background-color: #fff;
  border-radius: 0.4rem;
}
@media screen and (max-width: 767px) {
  .c-select select {
    padding: 1rem 2rem;
  }
}
.c-select--search select {
  background-color: #e5eff8;
}

/* c-edge-txt */
.c-edge-txt {
  font-family: "Outfit", sans-serif;
  paint-order: stroke fill;
  color: #fff;
  -webkit-text-stroke: 0.2rem #0062b9;
  text-stroke: 0.2rem #0062b9;
}

/* c-card */
.c-card {
  padding: 3.2rem 2rem 4.2rem;
  border-radius: 1rem;
  text-align: center;
}
.c-card:nth-of-type(1) {
  background-color: #0062b9;
}
.c-card:nth-of-type(1) .c-card__num {
  color: #0062b9;
}
.c-card:nth-of-type(2) {
  background-color: #2784d8;
}
.c-card:nth-of-type(2) .c-card__num {
  color: #2784d8;
}
.c-card:nth-of-type(3) {
  background-color: #3ba1fb;
}
.c-card:nth-of-type(3) .c-card__num {
  color: #3ba1fb;
}
.c-card:nth-of-type(4) {
  background-color: #64b6ff;
}
.c-card:nth-of-type(4) .c-card__num {
  color: #64b6ff;
}
.c-card__num {
  font-family: "Outfit", sans-serif;
  font-size: 4rem;
  font-weight: 800;
  -webkit-text-stroke-color: #fff;
  text-stroke-color: #fff;
  line-height: 1;
}
.c-card__img {
  width: 10rem;
  margin: 0 auto;
}
.c-card__ttl {
  margin: 0.6rem 0 1.7rem;
  font-size: 2rem;
  color: #fff;
}
.c-card__txt {
  color: #fff;
}

/* c-menu */
.c-menu {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 10rem;
  background-color: #e5eff8;
  border-radius: 1rem;
  padding: 0 3rem 0 5rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: #0062b9;
}
@media screen and (max-width: 767px) {
  .c-menu {
    height: 8rem;
    font-size: 1.6rem;
    padding: 0 5rem 0 3rem;
  }
}
.c-menu:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 3rem;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  background-image: url("../img/common/arrow_btn_blue.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .c-menu:after {
    right: 2rem;
    width: 2.4rem;
    height: 2.4rem;
  }
}

/* c-list */
.c-list li {
  position: relative;
  padding-left: 1.6rem;
}
@media screen and (max-width: 767px) {
  .c-list li {
    font-size: 1.4rem;
  }
}
.c-list li:before {
  content: "";
  position: absolute;
  top: 1.2rem;
  left: 0;
  width: 0.4rem;
  height: 0.4rem;
  background-color: #0062b9;
  border-radius: 999.9rem;
}

/* c-ttl */
.c-ttl {
  display: flex;
  flex-direction: column;
  gap: 2rem 0;
  color: #0062b9;
}
@media screen and (max-width: 767px) {
  .c-ttl {
    gap: 1rem 0;
  }
}
.c-ttl__en {
  font-family: "Outfit", sans-serif;
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-ttl__en {
    font-size: 2.6rem;
  }
}
.c-ttl__ja {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .c-ttl__ja {
    font-size: 1.6rem;
  }
}
.c-ttl--lg .c-ttl__en {
  font-size: 6rem;
}
@media screen and (max-width: 767px) {
  .c-ttl--lg .c-ttl__en {
    font-size: 2.6rem;
  }
}
.c-ttl--white {
  color: #fff;
}

/* c-sec-ttl */
.c-sec-ttl {
  padding-bottom: 0.6rem;
  border-bottom: 0.1rem solid #b2d0ea;
  font-size: 3rem;
  color: #0062b9;
}
@media screen and (max-width: 767px) {
  .c-sec-ttl {
    font-size: 1.8rem;
  }
}

/* c-sec-sub-ttl */
.c-sec-sub-ttl {
  padding: 0.7rem 3rem;
  background-color: #e5eff8;
  border-radius: 0.4rem;
  font-size: 2rem;
  color: #0062b9;
}
@media screen and (max-width: 767px) {
  .c-sec-sub-ttl {
    font-size: 1.6rem;
  }
}

/* c-viewmore */
.c-viewmore {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 2rem;
  width: fit-content;
  padding-bottom: 0.6rem;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  color: #0062b9;
  border-bottom: 0.1rem solid #0062b9;
}
@media screen and (max-width: 767px) {
  .c-viewmore {
    padding-bottom: 0.8rem;
    font-size: 1.5rem;
  }
}
.c-viewmore:after {
  content: "";
  background-image: url("../img/common/arrow_btn_blue.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 3rem;
  height: 3rem;
}
@media screen and (max-width: 767px) {
  .c-viewmore:after {
    width: 2.4rem;
    height: 2.4rem;
  }
}
.c-viewmore__arrow {
  width: 3rem;
}
@media screen and (max-width: 767px) {
  .c-viewmore__arrow {
    width: 2.4rem;
  }
}
.c-viewmore--white {
  color: #fff;
  border-bottom-color: #fff;
}
.c-viewmore--white:after {
  background-image: url("../img/common/arrow_btn.svg");
}

/* c-project-card */
.c-project-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 2rem 6rem;
  padding: 6rem 6rem 6rem 8rem;
  border: 0.15rem solid #0062b9;
  border-radius: 3rem;
}
@media screen and (max-width: 767px) {
  .c-project-card {
    flex-direction: column;
    padding: 3rem;
  }
}
.c-project-card__head {
  display: flex;
  flex-direction: column;
  gap: 2.5rem 0;
  width: 61rem;
}
@media screen and (max-width: 767px) {
  .c-project-card__head {
    gap: 1rem 0;
    width: 100%;
  }
}
.c-project-card__meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 3.4rem;
}
@media screen and (max-width: 767px) {
  .c-project-card__meta {
    align-items: flex-end;
    gap: 0 1.4rem;
  }
}
.c-project-card__num {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1;
}
.c-project-card__num__txt {
  font-size: 1.4rem;
  color: #0062b9;
}
@media screen and (max-width: 767px) {
  .c-project-card__num__txt {
    font-size: 1.2rem;
  }
}
.c-project-card__num__num {
  font-size: 8rem;
}
@media screen and (max-width: 767px) {
  .c-project-card__num__num {
    font-size: 4.4rem;
  }
}
.c-project-card__cats {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 767px) {
  .c-project-card__cats {
    margin-bottom: 0;
  }
}
.c-project-card__cat {
  width: fit-content;
  padding: 0.7rem 1.6rem;
  border: 0.1rem solid #0062b9;
  border-radius: 999.9rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: #0062b9;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-project-card__cat {
    font-size: 1.2rem;
  }
}
.c-project-card__ttl {
  font-size: 2rem;
  line-height: 2.5;
  color: #0062b9;
}
@media screen and (max-width: 767px) {
  .c-project-card__ttl {
    font-size: 1.8rem;
    line-height: 1.5;
  }
}
.c-project-card__txt {
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .c-project-card__txt {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}
.c-project-card__img {
  width: 43rem;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 430/300;
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .c-project-card__img {
    width: 100%;
  }
}
.c-project-card .c-viewmore {
  margin-left: 0 !important;
}

/* c-post-card */
.c-post-card {
  display: flex;
  flex-direction: column;
}
.c-post-card__img {
  margin-bottom: 1.6rem;
  border-radius: 1rem;
  overflow: hidden;
}
.c-post-card__img img {
  border-radius: 1rem;
  aspect-ratio: 370/230;
  object-fit: cover;
  transition: all 0.3s;
}
.c-post-card:hover {
  opacity: 1;
}
.c-post-card:hover .c-post-card__img img {
  transform: scale(1.1);
}
.c-post-card__meta {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 0 1.6rem;
  margin-bottom: 0.6rem;
  color: #0062b9;
}
@media screen and (max-width: 767px) {
  .c-post-card__meta {
    gap: 0 1rem;
  }
}
.c-post-card__time {
  font-family: "Outfit", sans-serif;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .c-post-card__time {
    font-size: 1.3rem;
  }
}
.c-post-card__cats {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .c-post-card__cats {
    gap: 0.5rem;
  }
}
.c-post-card__cat {
  padding: 0.7rem 1.6rem;
  font-size: 1.2rem;
  border: 0.1rem solid #0062b9;
  border-radius: 999.9rem;
}
@media screen and (max-width: 767px) {
  .c-post-card__cat {
    font-size: 1.1rem;
  }
}
.c-post-card__ttl {
  font-size: 1.6rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .c-post-card__ttl {
    font-size: 1.4rem;
  }
}
.c-post-card--news {
  padding: 2.4rem 0;
  border-bottom: 0.1rem solid #0062b9;
}
@media screen and (max-width: 767px) {
  .c-post-card--news {
    padding: 1.5rem 0;
  }
}
.c-post-card--news:first-child {
  border-top: 0.1rem solid #0062b9;
}
.c-post-card--product .c-post-card__ttl {
  margin-bottom: 0.6rem;
  font-weight: 700;
  color: #0062b9;
}
.c-post-card--product .c-post-card__meta {
  margin-bottom: 0;
}

/* c-slide-txt */
.c-slide-txt {
  display: flex;
  flex-direction: row;
  width: max-content;
  overflow: hidden;
  white-space: nowrap;
}
.c-slide-txt__list {
  display: flex;
  flex-direction: row;
}
.c-slide-txt__item {
  margin-right: 4.8rem;
  font-family: "Outfit", sans-serif;
  font-size: 18rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .c-slide-txt__item {
    margin-right: 2.4rem;
    font-size: 9rem;
  }
}
.c-slide-txt__item:first-child {
  animation: auto-slide01 60s -30s linear infinite;
}
.c-slide-txt__item:last-child {
  animation: auto-slide02 60s linear infinite;
}

/* c-btn */
.c-btn {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 30rem;
  height: 6rem;
  font-weight: 700;
  line-height: 1;
  color: #0062b9;
  border: 0.1rem solid #0062b9;
  border-radius: 999.9rem;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .c-btn {
    width: 27rem;
    font-size: 1.5rem;
  }
}
.c-btn:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  background-image: url("../img/common/arrow_btn_blue.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .c-btn:after {
    right: 1.5rem;
    width: 2.4rem;
    height: 2.4rem;
  }
}
.c-btn--back {
  color: #032441;
  border-color: #032441;
}
.c-btn--back:after {
  left: 2rem;
  right: auto;
  transform: translateY(-50%) rotate(-180deg);
  background-image: url("../img/common/arrow_btn_default.svg");
}

/* c-tags */
.c-tags {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.c-tag {
  display: block;
  padding: 0.7rem 1.6rem;
  border-radius: 999.9rem;
  font-weight: 700;
  color: #0062b9;
  border: 0.1rem solid #0062b9;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-tag {
    font-size: 1.3rem;
  }
}
.c-tag--lg {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .c-tag--lg {
    font-size: 1.3rem;
  }
}

/* c-pagination */
.c-pagination {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0 1rem;
  padding-top: 12rem;
  font-family: "Outfit", sans-serif;
}
@media screen and (max-width: 767px) {
  .c-pagination {
    padding-top: 6rem;
  }
}
.c-pagination > a.prev, .c-pagination > a.next {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.c-pagination > a.prev img, .c-pagination > a.next img {
  width: 5rem;
}
.c-pagination > a.prev {
  transform: rotate(-180deg);
}
.c-pagination > ul.page-numbers {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.c-pagination > ul.page-numbers li a,
.c-pagination > ul.page-numbers li span:not(.dots) {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 5rem;
  height: 5rem;
  padding-top: 0.2rem;
  border: 0.1rem solid #0062b9;
  border-radius: 999.9rem;
  color: #0062b9;
}
.c-pagination > ul.page-numbers li .dots {
  position: relative;
  top: -0.5rem;
  color: #0062b9;
}
.c-pagination > ul.page-numbers li span.current {
  background-color: #0062b9;
  color: #fff;
}

/* c-mv */
.c-mv {
  width: 100%;
  border-radius: 0 0 8rem 8rem;
  aspect-ratio: 1440/570;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .c-mv {
    aspect-ratio: 375/240;
    border-radius: 0 0 4rem 4rem;
  }
}

/* c-menu-card */
.c-menu-card {
  display: flex;
  flex-direction: column;
  gap: 2.4rem 0;
}
.c-menu-card__img {
  overflow: hidden;
  border-radius: 1rem;
}
.c-menu-card__img img {
  aspect-ratio: 580/330;
  object-fit: cover;
  transition: all 0.3s;
}
.c-menu-card:hover {
  opacity: 1;
}
.c-menu-card:hover .c-menu-card__img img {
  transform: scale(1.1);
}
.c-menu-card__head {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  padding-right: 2rem;
}
@media screen and (max-width: 767px) {
  .c-menu-card__head {
    padding-right: 1rem;
  }
}
.c-menu-card .c-ttl {
  flex: 1;
}
.c-menu-card .c-ttl__en {
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .c-menu-card .c-ttl__en {
    font-size: 2.6rem;
  }
}
.c-menu-card__arrow {
  width: 3rem;
}
.c-menu-card--sm {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 2rem;
  background-color: #e5eff8;
  border-radius: 1rem;
  padding: 2rem;
}
@media screen and (max-width: 767px) {
  .c-menu-card--sm {
    flex-direction: column;
    gap: 2.4rem 0;
  }
}
.c-menu-card--sm .c-menu-card__img {
  width: 24rem;
  aspect-ratio: 240/136;
}
@media screen and (max-width: 767px) {
  .c-menu-card--sm .c-menu-card__img {
    width: 100%;
  }
}
.c-menu-card--sm .c-menu-card__head {
  flex: 1;
  align-items: center;
  padding-right: 0;
}
@media screen and (max-width: 767px) {
  .c-menu-card--sm .c-menu-card__head {
    width: 100%;
    padding-right: 1rem;
    align-items: flex-start;
    justify-content: space-between;
  }
}
.c-menu-card--sm .c-ttl {
  gap: 0.6rem 0;
}
.c-menu-card--sm .c-ttl__en {
  font-size: 2.6rem;
}
@media screen and (max-width: 767px) {
  .c-menu-card--sm .c-ttl__en {
    font-size: 2.2rem;
  }
}
.c-menu-card--sm .c-ttl__ja {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .c-menu-card--sm .c-ttl__ja {
    font-size: 1.6rem;
  }
}

/* c-news-item */
.c-news-item {
  display: flex;
  flex-direction: column;
  gap: 1rem 0;
  padding: 2.4rem 0;
  border-bottom: 0.1rem solid #0062b9;
}
@media screen and (max-width: 767px) {
  .c-news-item {
    padding: 1.5rem 0;
  }
}
.c-news-item:first-child {
  border-top: 0.1rem solid #0062b9;
}
.c-news-item__img img {
  border-radius: 1rem;
  aspect-ratio: 370/230;
  object-fit: cover;
}
.c-news-item__meta {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 0 1.6rem;
  color: #0062b9;
}
@media screen and (max-width: 767px) {
  .c-news-item__meta {
    gap: 0 1rem;
  }
}
.c-news-item__time {
  font-family: "Outfit", sans-serif;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .c-news-item__time {
    font-size: 1.3rem;
  }
}
.c-news-item__cats {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .c-news-item__cats {
    gap: 0.5rem;
  }
}
.c-news-item__cat {
  padding: 0.2rem 1.2rem;
  font-size: 1.2rem;
  border: 0.1rem solid #0062b9;
  border-radius: 999.9rem;
}
@media screen and (max-width: 767px) {
  .c-news-item__cat {
    font-size: 1.1rem;
  }
}
.c-news-item__ttl {
  font-size: 1.6rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .c-news-item__ttl {
    font-size: 1.4rem;
  }
}

/* c-pagetop */
.c-pagetop {
  position: fixed;
  right: 10px;
  bottom: 90px;
  z-index: 10;
  width: 60px;
  transform: rotate(-90deg);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  box-shadow: -0.2rem 0 0.4rem rgba(0, 0, 0, 0.3);
  border-radius: 999.9rem;
}
@media screen and (max-width: 767px) {
  .c-pagetop {
    width: 4.8rem;
    right: 1.6rem;
    bottom: 2rem;
  }
}
.c-pagetop.is-active {
  opacity: 1;
  visibility: visible;
}
.c-pagetop img {
  width: 100%;
}

/* l-wrapper */
.l-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
}

/* l-inner */
.l-inner {
  max-width: 128.8rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 2.4rem;
}
.l-inner--sm {
  max-width: 94.8rem;
}

/* l-header */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  height: 12rem;
  background-color: #fff;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .l-header {
    height: 9.6rem;
  }
}
.l-header.is-scrolled {
  height: 8rem;
}
@media screen and (max-width: 767px) {
  .l-header.is-scrolled {
    height: 7rem;
  }
}
.l-header__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  max-width: none;
  padding: 0 6rem;
}
@media screen and (max-width: 1179px) {
  .l-header__inner {
    padding: 0 2.4rem;
  }
}
.l-header__logo {
  position: relative;
  z-index: 1;
  display: block;
  width: 26rem;
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    width: 18rem;
  }
}
.l-header__logo .path {
  fill: #032441;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .l-header__logo.is-active .path {
    fill: #fff;
  }
}
.l-header__toggle {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-header__toggle {
    position: relative;
    display: block;
    width: 4.8rem;
    height: 4.8rem;
    border-radius: 9999px;
    background-color: #0062b9;
    transition: all 0.3s;
  }
  .l-header__toggle__line {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2rem;
    height: 0.1rem;
    background-color: #fff;
    transition: all 0.3s;
  }
  .l-header__toggle__line:first-child {
    transform: translate(-50%, -0.4rem);
  }
  .l-header__toggle__line:last-child {
    transform: translate(-50%, 0.4rem);
  }
  .l-header__toggle.is-active {
    background-color: #fff;
  }
  .l-header__toggle.is-active .l-header__toggle__line {
    width: 2.4rem;
  }
  .l-header__toggle.is-active .l-header__toggle__line:first-child {
    transform: translate(-50%, -50%) rotate(-35deg);
    background-color: #0062b9;
  }
  .l-header__toggle.is-active .l-header__toggle__line:last-child {
    transform: translate(-50%, -50%) rotate(35deg);
    background-color: #0062b9;
  }
}
.l-header__overlay {
  display: none;
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  pointer-events: none;
}

/* l-footer */
.l-footer {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: 10rem 0 7rem;
  background-color: #143568;
  border-radius: 8rem 8rem 0 0;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 5rem 0 4rem;
    border-radius: 4rem 4rem 0 0;
  }
}
.l-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 16.1rem 0;
}
@media screen and (max-width: 767px) {
  .l-footer__inner {
    gap: 4rem 0;
  }
}
.l-footer__top {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 4rem;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .l-footer__top {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__top .p-sns {
    display: none;
  }
}
.l-footer__logo {
  display: block;
  width: 26rem;
  margin-bottom: 4.7rem;
}
@media screen and (max-width: 767px) {
  .l-footer__logo {
    width: 20rem;
    margin-bottom: 1.6rem;
  }
}
.l-footer__logo svg {
  width: 100%;
}
.l-footer__logo .path {
  fill: #fff;
}
.l-footer__address {
  margin-bottom: 2.3rem;
  font-size: 1.4rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .l-footer__address {
    margin-bottom: 0;
    font-size: 1.2rem;
  }
}
.l-footer__btm {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  font-family: "Outfit", sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #fff;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .l-footer__btm {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.4rem 0;
  }
}
.l-footer__btm .p-sns {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-footer__btm .p-sns {
    display: flex;
    margin-bottom: 1.6rem;
  }
}
.l-footer__privacy {
  color: #fff;
}

/* l-main */
.l-main {
  padding-top: 12rem;
}
@media screen and (max-width: 767px) {
  .l-main {
    padding-top: 9.6rem;
  }
}

/* l-box */
.l-box {
  padding: 12rem 0;
}
@media screen and (max-width: 767px) {
  .l-box {
    padding: 4.6rem 0 4rem;
  }
}
.l-box--sm {
  padding-top: 8rem;
}
@media screen and (max-width: 767px) {
  .l-box--sm {
    padding-top: 4.6rem;
  }
}
.l-box--lg {
  padding-top: 19rem;
}
@media screen and (max-width: 767px) {
  .l-box--lg {
    padding-top: 6.2rem;
  }
}
.l-box .c-btn:last-of-type {
  margin: 12rem auto 0;
}
@media screen and (max-width: 767px) {
  .l-box .c-btn:last-of-type {
    margin-top: 4rem;
  }
}

/* l-menu-list */
.l-menu-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7rem 8rem;
}
@media screen and (max-width: 767px) {
  .l-menu-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 4.8rem 0;
  }
}
.l-menu-list__child {
  margin-top: 4.9rem;
  display: flex;
  flex-direction: column;
  gap: 2rem 0;
}
@media screen and (max-width: 767px) {
  .l-menu-list__child {
    margin-top: 3.2rem;
    gap: 1.4rem 0;
  }
}

/* l-post-list */
.l-post-list__search {
  display: flex;
  flex-direction: row;
  gap: 2rem 6rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .l-post-list__search {
    flex-direction: column;
    margin-bottom: 3.2rem;
  }
}
.l-post-list__search__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.2rem 2rem;
}
@media screen and (max-width: 767px) {
  .l-post-list__search__item {
    flex-direction: column;
    align-items: flex-start;
  }
}
.l-post-list__search__item .ttl {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0062b9;
}
.l-post-list__search__item .c-select {
  width: 35rem;
}
@media screen and (max-width: 767px) {
  .l-post-list__search__item .c-select {
    width: 100%;
  }
}
.l-post-list__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem 6.5rem;
}
@media screen and (max-width: 767px) {
  .l-post-list__list {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* l-project-list */
.l-project-list {
  display: flex;
  flex-direction: column;
  gap: 3rem 0;
}
@media screen and (max-width: 767px) {
  .l-project-list {
    gap: 2rem 0;
  }
}

/* p-breadcrumb */
@media screen and (max-width: 767px) {
  .p-breadcrumb {
    max-width: 90%;
    overflow-x: auto;
    margin-left: auto;
    padding: 1rem 0;
  }
}
.p-breadcrumb__list {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 0 0.4rem;
  flex-wrap: nowrap;
  width: max-content;
  min-width: 100%;
  overflow-x: auto;
}
.p-breadcrumb__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 0.4rem;
  flex: 0 0 auto;
  white-space: nowrap;
  scroll-snap-align: start;
}
.p-breadcrumb__item:after {
  content: "／";
  display: block;
  font-size: 1.2rem;
}
.p-breadcrumb__item a,
.p-breadcrumb__item span {
  font-size: 1.2rem;
  font-weight: 500;
  color: #a1aec3;
}
.p-breadcrumb__item:first-child a {
  font-family: "Outfit", sans-serif;
}
.p-breadcrumb__item:last-child::after {
  display: none;
}

.p-breadcrumb-wrapper-intro,
.p-breadcrumb-wrapper-orientation {
  margin-bottom: -1px;
  background-color: #1955a6;
}
.p-breadcrumb-wrapper-intro .p-breadcrumb,
.p-breadcrumb-wrapper-orientation .p-breadcrumb {
  width: 100%;
  margin-left: 0;
}
.p-breadcrumb-wrapper-intro .p-breadcrumb__item:after,
.p-breadcrumb-wrapper-orientation .p-breadcrumb__item:after {
  color: #fff;
}
.p-breadcrumb-wrapper-intro .p-breadcrumb__item a,
.p-breadcrumb-wrapper-intro .p-breadcrumb__item span,
.p-breadcrumb-wrapper-orientation .p-breadcrumb__item a,
.p-breadcrumb-wrapper-orientation .p-breadcrumb__item span {
  color: #fff;
}

.p-breadcrumb-wrapper-interview {
  max-width: 1000px;
  width: 100%;
  margin: 10px auto 65px;
}

/* p-nav-pc */
.p-nav-pc {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 3rem;
}
@media screen and (max-width: 767px) {
  .p-nav-pc {
    display: none;
  }
}
.p-nav-pc .p-nav-pc__list {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 3rem;
}
.p-nav-pc .p-nav-pc__item {
  position: relative;
}
.p-nav-pc .p-nav-pc__item__link {
  font-size: min(1.3vw, 1.5rem);
  font-weight: 700;
  color: #032441;
  line-height: 1.5;
}
.p-nav-pc .p-nav-pc__item--hasMega {
  position: static;
}
.p-nav-pc .p-nav-pc__item--hasMega:hover .p-nav-pc__item__mega, .p-nav-pc .p-nav-pc__item--hasMega:focus-within .p-nav-pc__item__mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.p-nav-pc .p-nav-pc__item--hasMega.is-open .p-nav-pc__item__mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.p-nav-pc .p-nav-pc__item__mega {
  position: fixed;
  top: 15.7rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  gap: 2.6rem 0;
  padding: 5rem;
  background-color: #fff;
  border-radius: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.24s ease, visibility 0.24s ease, transform 0.24s ease;
  z-index: 50;
}
.p-nav-pc .p-nav-pc__item__mega--4 {
  width: 124rem;
}
.p-nav-pc .p-nav-pc__item__mega--4 .child-menu {
  grid-template-columns: repeat(4, 1fr);
}
.p-nav-pc .p-nav-pc__item__mega--3 {
  width: 95rem;
}
.p-nav-pc .p-nav-pc__item__mega--3 .child-menu {
  grid-template-columns: repeat(3, 1fr);
}
.p-nav-pc .p-nav-pc__item__mega--2 {
  width: 66rem;
}
.p-nav-pc .p-nav-pc__item__mega--2 .child-menu {
  grid-template-columns: repeat(2, 1fr);
}
.p-nav-pc .p-nav-pc__item__mega .ttl {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 2rem;
  font-weight: 700;
  line-height: 1.5;
  color: #0062b9;
}
.p-nav-pc .p-nav-pc__item__mega .ttl__en {
  font-family: "Outfit", sans-serif;
  font-size: 2.4rem;
}
.p-nav-pc .p-nav-pc__item__mega .ttl__ja {
  font-size: 1.6rem;
  letter-spacing: 0.08em;
}
.p-nav-pc .p-nav-pc__item__mega .ttl__arrow {
  width: 3rem;
}
.p-nav-pc .p-nav-pc__item__mega .child-menu {
  display: grid;
  gap: 2rem;
}
.p-nav-pc .p-nav-pc__item__mega .child-menu__item {
  max-width: 27rem;
  width: 100%;
}
.p-nav-pc .p-nav-pc__item__mega .child-menu__item__link {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 1rem;
}
.p-nav-pc .p-nav-pc__item__mega .child-menu__item__link:hover {
  opacity: 1;
}
.p-nav-pc .p-nav-pc__item__mega .child-menu__item__link:hover .img {
  transform: scale(1.1);
}
.p-nav-pc .p-nav-pc__item__mega .child-menu__item__link:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 98, 185, 0.7);
  border-radius: 1rem;
  mix-blend-mode: multiply;
}
.p-nav-pc .p-nav-pc__item__mega .child-menu__item__link .img {
  aspect-ratio: 270/130;
  object-fit: cover;
  border-radius: 1rem;
  transition: all 0.5s;
}
.p-nav-pc .p-nav-pc__item__mega .child-menu__item__ttl {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 0.6rem;
  color: #fff;
  line-height: 1.5;
}
.p-nav-pc .p-nav-pc__item__mega .child-menu__item__ttl .en {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  letter-spacing: 0.03em;
}
.p-nav-pc .p-nav-pc__item__mega .child-menu__item__ttl .ja {
  font-size: 1.4rem;
  font-weight: 500;
}
.p-nav-pc .p-nav-pc__item__mega .child-menu__children {
  display: flex;
  flex-direction: column;
  gap: 0.5rem 0;
  margin-top: 2rem;
}
.p-nav-pc .p-nav-pc__item__mega .child-menu__children__item a {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0062b9;
}
.p-nav-pc .p-nav-pc__btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 15.4rem;
  height: 4.4rem;
  background-color: #0062b9;
  border-radius: 999.9rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

/* p-nav */
.p-nav--header {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-nav--header {
    position: fixed;
    top: 0;
    left: 0;
    transform: translateY(-100%);
    display: block;
    width: 100%;
    height: 100%;
    padding: 10.2rem 4rem 5rem;
    background-color: #0062b9;
    overflow-y: auto;
    transition: all 0.3s;
  }
}
.p-nav--header.is-active {
  transform: translateY(0);
}
.p-nav--header .p-nav__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 7rem;
}
@media screen and (max-width: 767px) {
  .p-nav--header .p-nav__list {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-nav--header .p-nav__list:first-child {
    border-top: 0.1rem solid #fff;
  }
}
.p-nav--header .p-nav__list:last-child {
  flex-direction: column;
  gap: 4.8rem 0;
}
@media screen and (max-width: 767px) {
  .p-nav--header .p-nav__list:last-child {
    gap: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-nav--header .p-nav__item {
    width: 100%;
    border-bottom: 0.1rem solid #fff;
    padding: 2rem 0;
  }
}
.p-nav--header .p-nav__item--hasChild {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-nav--header .p-nav__item--hasChild:before, .p-nav--header .p-nav__item--hasChild:after {
    content: "";
    position: absolute;
    top: 3.2rem;
    right: 0;
    width: 1.8rem;
    height: 0.2rem;
    background-color: #fff;
    transition: all 0.3s;
  }
  .p-nav--header .p-nav__item--hasChild:after {
    transform: rotate(90deg);
  }
  .p-nav--header .p-nav__item--hasChild.is-active:after {
    transform: rotate(0);
  }
}
@media screen and (max-width: 767px) {
  .p-nav--header .p-nav__item--hasChild .p-nav__item__link {
    display: inline-block;
  }
}
.p-nav--header .p-nav__item__link {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-nav--header .p-nav__item__link {
    font-size: 1.6rem;
  }
}
.p-nav--header .p-nav__childList {
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-nav--header .p-nav__childList {
    display: none;
    padding-left: 2rem;
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-nav--header .p-nav__childItem {
    margin-top: 2rem;
  }
}
.p-nav--header .p-nav__childItem__link {
  display: block;
  font-size: 1.4rem;
  line-height: 2.2;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-nav--header .p-nav__childItem__link {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}
@media screen and (max-width: 767px) {
  .p-nav--header .p-nav__gChildList {
    margin-top: 2rem;
    padding-left: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-nav--header .p-nav__gChildItem {
    margin-top: 2rem;
  }
}
.p-nav--header .p-nav__gChildItem__link {
  display: block;
  font-size: 1.3rem;
  line-height: 2.2;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-nav--header .p-nav__gChildItem__link {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}
.p-nav--footer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 7rem;
}
@media screen and (max-width: 767px) {
  .p-nav--footer {
    flex-direction: column;
    gap: 0;
    width: 100%;
    border-top: 0.1rem solid #2c4977;
  }
}
.p-nav--footer .p-nav__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 7rem;
}
@media screen and (max-width: 767px) {
  .p-nav--footer .p-nav__list {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
}
.p-nav--footer .p-nav__list:last-child {
  flex-direction: column;
  gap: 4.8rem 0;
}
@media screen and (max-width: 767px) {
  .p-nav--footer .p-nav__list:last-child {
    gap: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-nav--footer .p-nav__item {
    width: 100%;
    border-bottom: 0.1rem solid #2c4977;
    padding: 2rem 0;
  }
}
.p-nav--footer .p-nav__item--hasChild {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-nav--footer .p-nav__item--hasChild:before, .p-nav--footer .p-nav__item--hasChild:after {
    content: "";
    position: absolute;
    top: 3.2rem;
    right: 0;
    width: 1.8rem;
    height: 0.2rem;
    background-color: #fff;
    transition: all 0.3s;
  }
  .p-nav--footer .p-nav__item--hasChild:after {
    transform: rotate(90deg);
  }
  .p-nav--footer .p-nav__item--hasChild.is-active:after {
    transform: rotate(0);
  }
}
@media screen and (max-width: 767px) {
  .p-nav--footer .p-nav__item--hasChild .p-nav__item__link {
    display: inline-block;
  }
}
.p-nav--footer .p-nav__item__link {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-nav--footer .p-nav__item__link {
    font-size: 1.6rem;
  }
}
.p-nav--footer .p-nav__childList {
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-nav--footer .p-nav__childList {
    display: none;
    padding-left: 2rem;
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-nav--footer .p-nav__childItem {
    margin-top: 2rem;
  }
}
.p-nav--footer .p-nav__childItem--top {
  margin-top: 2rem;
}
.p-nav--footer .p-nav__childItem__link {
  display: block;
  font-size: 1.4rem;
  line-height: 2.2;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-nav--footer .p-nav__childItem__link {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}
@media screen and (max-width: 767px) {
  .p-nav--footer .p-nav__gChildList {
    margin-top: 2rem;
    padding-left: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-nav--footer .p-nav__gChildItem {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-nav--footer .p-nav__gChildItem:last-child {
    margin-top: 0;
  }
}
.p-nav--footer .p-nav__gChildItem__link {
  display: block;
  font-size: 1.3rem;
  line-height: 2.2;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-nav--footer .p-nav__gChildItem__link {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}

/* p-table */
.p-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.p-table {
  width: 100%;
  font-size: 1.4rem;
  border-collapse: separate;
  border-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-table {
    min-width: 70rem;
  }
}
.p-table tr:first-child th {
  border-top: 0.1rem solid #b2d0ea;
  border-radius: 1rem 0 0 0;
}
.p-table tr:first-child td {
  border-top: 0.1rem solid #b2d0ea;
  border-radius: 0 1rem 0 0;
}
.p-table tr:last-child th {
  border-radius: 0 0 0 1rem;
}
.p-table tr:last-child td {
  border-radius: 0 0 1rem 0;
}
.p-table tr.only th {
  border-radius: 1rem 0 0 1rem !important;
}
.p-table tr.only td {
  border-radius: 0 1rem 1rem 0 !important;
}
.p-table th,
.p-table td {
  padding: 1rem 3rem;
  border-right: 0.1rem solid #b2d0ea;
  border-bottom: 0.1rem solid #b2d0ea;
}
.p-table th {
  width: 30rem;
  background-color: #e5eff8;
  border-left: 0.1rem solid #b2d0ea;
  font-weight: 400;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-table th {
    width: 20rem;
  }
}

/* p-table02 */
.p-table02-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.p-table02 {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-table02 {
    min-width: 124rem;
  }
}
.p-table02 tr:last-child td:first-child {
  border-radius: 0 0 0 1rem;
}
.p-table02 tr:last-child td:last-child {
  border-radius: 0 0 1rem 0;
}
.p-table02 th {
  padding: 0.5rem 1rem;
  background-color: #0062b9;
  border-radius: 1rem 1rem 0 0;
  color: #fff;
  border-right: 0.3rem solid #fff;
}
.p-table02 th:first-child {
  width: 36.2rem;
}
.p-table02 th:nth-child(2) {
  width: 36.4rem;
}
.p-table02 th:nth-child(3) {
  width: 15.2rem;
}
.p-table02 th:last-child {
  border-right: none;
}
.p-table02 td {
  padding: 1rem;
  font-size: 1.4rem;
  text-align: center;
  border-right: 0.1rem solid #b2d0ea;
  border-bottom: 0.1rem solid #b2d0ea;
}
.p-table02 td:first-child {
  border-left: 0.1rem solid #b2d0ea;
}

/* p-form */
.p-form {
  padding: 6rem;
  background-color: #e5eff8;
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .p-form {
    padding: 2rem;
  }
}
.p-form__box {
  display: flex;
  flex-direction: column;
  gap: 5rem 0;
}
@media screen and (max-width: 767px) {
  .p-form__box {
    gap: 3rem 0;
  }
}
.p-form__group {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.6rem 6.3rem;
}
@media screen and (max-width: 767px) {
  .p-form__group {
    flex-direction: column;
  }
}
.p-form__head {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 1.4rem;
  width: 27.7rem;
  padding-top: 1.4rem;
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-form__head {
    width: 100%;
    padding-top: 0;
    font-size: 1.6rem;
  }
}
.p-form__head span {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 3.7rem;
  height: 2.2rem;
  border-radius: 999.9rem;
  border: 0.1rem solid #0062b9;
  font-size: 1.2rem;
  font-weight: 700;
  color: #0062b9;
}
.p-form__head span.required {
  background-color: #0062b9;
  color: #fff;
}
.p-form__body {
  flex: 1;
  width: 100%;
}
.p-form__hidden {
  display: none;
}
.p-form__agreement {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem 0;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-form__agreement {
    margin-top: 3rem;
  }
}
.p-form__agreement__txt {
  font-size: 1.4rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-form__agreement__txt {
    font-size: 1.3rem;
  }
}
.p-form__agreement a {
  text-decoration: underline;
}
.p-form .p-form__btns {
  display: flex;
  flex-direction: column;
  gap: 1rem 0;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-form .p-form__btns {
    margin-top: 3rem;
  }
}
.p-form .c-btn {
  margin: 0 auto !important;
}
.p-form .c-btn:hover {
  opacity: 0.7;
}
.p-form .c-btn input {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  color: #0062b9;
  cursor: pointer;
}
.p-form .c-btn--back input {
  color: #032441;
}

/* p-col */
.p-col {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3.2rem 0;
}
@media screen and (max-width: 767px) {
  .p-col {
    flex-direction: column;
  }
}
.p-col__content {
  width: 86rem;
}
@media screen and (max-width: 767px) {
  .p-col__content {
    width: 100%;
  }
}
.p-col__box {
  display: flex;
  flex-direction: column;
  padding: 4rem;
  background-color: #e5eff8;
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .p-col__box {
    padding: 2rem;
  }
}

/* p-sns */
.p-sns {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 2rem;
}
.p-sns__item__link {
  display: block;
  width: 2rem;
}
.p-sns__item__link img {
  width: 100%;
}

/* p-bnr */
.p-bnr {
  margin-bottom: -14.3rem;
  padding: 12rem 0 26.3rem;
  background-color: #e5eff8;
}
@media screen and (max-width: 767px) {
  .p-bnr {
    margin-bottom: -3rem;
    padding: 4rem 0 7.5rem;
  }
}
.p-bnr__inner {
  max-width: 91.8rem;
}
.p-bnr__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .p-bnr__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.2rem 0;
    padding: 0 2.2rem;
  }
}

/* p-cta */
.p-cta {
  border-radius: 8rem 8rem 0 0;
  margin-bottom: -14.5rem;
  padding: 9rem 0 23.5rem;
  background-color: #0062b9;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-cta {
    border-radius: 4rem 4rem 0 0;
    margin-bottom: -8.1rem;
    padding: 4rem 0 13.1rem;
  }
}
.p-cta__inner {
  display: flex;
  flex-direction: row;
  gap: 0 18rem;
}
@media screen and (max-width: 767px) {
  .p-cta__inner {
    flex-direction: column;
    gap: 1.2rem 0;
  }
}
.p-cta__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3.2rem 0;
}
@media screen and (max-width: 767px) {
  .p-cta__body {
    gap: 2rem 0;
  }
}
.p-cta__txt {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .p-cta__txt {
    font-size: 1.2rem;
    line-height: 1.5;
  }
}
.p-cta__tel {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 4.9rem;
}
@media screen and (max-width: 767px) {
  .p-cta__tel {
    gap: 0 2rem;
  }
}
.p-cta__tel__item {
  line-height: 1.5;
}
.p-cta__tel__item:first-child {
  padding-right: 4.7rem;
  border-right: 0.1rem solid #fff;
}
@media screen and (max-width: 767px) {
  .p-cta__tel__item:first-child {
    padding-right: 1.7rem;
  }
}
.p-cta__tel__item .department {
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-cta__tel__item .department {
    font-size: 1.2rem;
  }
}
.p-cta__tel__item .tel {
  font-family: "Outfit", sans-serif;
  font-size: 4.4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-cta__tel__item .tel {
    font-size: 2rem;
  }
}
.p-cta__tel__item .hours {
  font-size: 1.4rem;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-cta__tel__item .hours {
    font-size: 1rem;
    line-height: 1.5;
  }
}
.p-cta__btn {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  max-width: 74rem;
  width: 100%;
  height: 8.6rem;
  border: 0.1rem solid #fff;
  border-radius: 999.9rem;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-cta__btn {
    max-width: none;
    height: 6rem;
    padding-right: 1.8rem;
    font-size: 1.5rem;
  }
}
.p-cta__btn__arrow {
  position: absolute;
  top: 50%;
  right: 4rem;
  transform: translateY(-50%);
  width: 3rem;
}
@media screen and (max-width: 767px) {
  .p-cta__btn__arrow {
    right: 1.8rem;
    width: 2.4rem;
  }
}

/* p-media */
.p-media {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem 6rem;
}
@media screen and (max-width: 767px) {
  .p-media {
    flex-direction: column;
  }
}
.p-media__img {
  width: 70rem;
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .p-media__img {
    width: 100%;
  }
}
.p-media__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2.6rem 0;
  color: #0062b9;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-media__body {
    gap: 2rem 0;
  }
}
.p-media__num {
  position: relative;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 3rem;
  letter-spacing: 0.03em;
  color: #0062b9;
}
@media screen and (max-width: 767px) {
  .p-media__num {
    font-size: 2rem;
  }
}
.p-media__num::after {
  content: "";
  position: absolute;
  bottom: -1.2rem;
  left: 0;
  width: 1.4rem;
  height: 0.1rem;
  background-color: #0062b9;
}
@media screen and (max-width: 767px) {
  .p-media__num::after {
    bottom: -0.9rem;
  }
}
.p-media__ttl {
  display: flex;
  flex-direction: column;
  font-size: 3rem;
  color: #0062b9;
}
@media screen and (max-width: 767px) {
  .p-media__ttl {
    font-size: 2rem;
  }
}
.p-media__ttl__en {
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.03em;
}
.p-media__tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
}
.p-media__tag {
  width: fit-content;
  padding: 0.7rem 1.6rem;
  border: 0.1rem solid #0062b9;
  border-radius: 999.9rem;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-media__tag {
    padding: 0.6rem 1.6rem;
    font-size: 1.3rem;
  }
}
.p-media__txt {
  line-height: 2;
  color: #032441;
}
@media screen and (max-width: 767px) {
  .p-media__txt {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}
.p-media--start {
  align-items: flex-start;
}
.p-media--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-media--reverse {
    flex-direction: column;
  }
}
.p-media--sm {
  gap: 2rem 8rem;
}
.p-media--sm .p-media__img {
  width: 60rem;
}
@media screen and (max-width: 767px) {
  .p-media--sm .p-media__num {
    font-size: 1.8rem;
  }
}
.p-media--sm .p-media__ttl__ja {
  font-size: 2.6rem;
}
@media screen and (max-width: 767px) {
  .p-media--sm .p-media__ttl__ja {
    font-size: 1.8rem;
  }
}
.p-media--sm .p-media__tag {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-media--sm .p-media__tag {
    font-size: 1.3rem;
    line-height: 1.5;
  }
}

/* p-media-intro */
.p-media-intro {
  position: relative;
  margin-bottom: 17rem;
}
@media screen and (max-width: 767px) {
  .p-media-intro {
    margin-bottom: 4rem;
  }
}
.p-media-intro:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 124rem;
  height: calc(100% + 5rem);
  background-color: #e5eff8;
  border-radius: 3rem 0 0 3rem;
}
@media screen and (max-width: 767px) {
  .p-media-intro:before {
    width: 35rem;
    border-radius: 2rem 0 0 2rem;
    height: 95%;
  }
}
.p-media-intro__img {
  position: absolute;
  top: -7rem;
  left: 0;
  width: 70rem;
  border-radius: 0 1rem 1rem 0;
}
@media screen and (max-width: 767px) {
  .p-media-intro__img {
    position: relative;
    top: auto;
    width: 35rem;
  }
}
.p-media-intro__inner {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .p-media-intro__inner {
    margin-bottom: 3rem;
  }
}
.p-media-intro__box {
  width: 56rem;
}
@media screen and (max-width: 767px) {
  .p-media-intro__box {
    width: calc(100% - 2.6rem);
  }
}
.p-media-intro .c-ttl {
  margin: -2.4rem 0 4rem;
}
@media screen and (max-width: 767px) {
  .p-media-intro .c-ttl {
    margin: -1.2rem 0 2.4rem;
  }
}
.p-media-intro__copy {
  margin-bottom: 2.4rem;
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .p-media-intro__copy {
    margin-bottom: 1.6rem;
    font-size: 2rem;
  }
}
.p-media-intro__txt {
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .p-media-intro__txt {
    margin-bottom: 1.4rem;
    font-size: 1.4rem;
  }
}

/* p-col-head */
.p-col-head {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.6rem 7rem;
}
@media screen and (max-width: 767px) {
  .p-col-head {
    flex-direction: column;
  }
}
.p-col-head__lead {
  flex: 1;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-col-head__lead {
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 768px) {
  .p-col-head--sm .p-col-head__lead {
    font-size: 1.4rem;
  }
}

/* p-page-head */
.p-page-head {
  padding: 12.4rem 0 5rem;
}
@media screen and (max-width: 767px) {
  .p-page-head {
    padding: 5rem 0 2rem;
  }
}
.p-page-head__inner {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-page-head__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem 0;
  }
}
.p-page-head__tags {
  display: flex;
  flex-direction: row;
  flex: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-page-head__tags {
    margin-top: 1rem;
  }
}
.p-page-head__tag {
  width: fit-content;
  padding: 0.2rem 1.6rem;
  border: 0.1rem solid #0062b9;
  border-radius: 999.9rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: #0062b9;
}
@media screen and (max-width: 767px) {
  .p-page-head__tag {
    font-size: 1.4rem;
  }
}
.p-page-head .c-ttl__en {
  font-size: 6rem;
}
@media screen and (max-width: 767px) {
  .p-page-head .c-ttl__en {
    font-size: 3.6rem;
  }
}

/* p-product */
.p-product {
  padding-top: 10rem;
}
@media screen and (max-width: 767px) {
  .p-product {
    padding-top: 5rem;
  }
}
.p-product .c-ttl {
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .p-product .c-ttl {
    margin-bottom: 3rem;
  }
}

/* p-slider */
.p-slider {
  padding-top: 10rem;
}
@media screen and (max-width: 767px) {
  .p-slider {
    padding-top: 5rem;
  }
}
.p-slider .c-viewmore {
  margin-left: auto;
}
.p-slider__body {
  display: flex;
  flex-direction: row;
  flex-direction: row-reverse;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .p-slider__body {
    flex-direction: column;
    gap: 2rem 0;
    margin-bottom: 2rem;
    padding-left: 2.4rem;
  }
}
.p-slider__main {
  flex-basis: 75%;
  max-width: 75%;
}
@media screen and (max-width: 767px) {
  .p-slider__main {
    flex-basis: 100%;
    max-width: 100%;
  }
}
.p-slider .swiper-slide {
  width: 29rem;
}
@media screen and (max-width: 767px) {
  .p-slider .swiper-slide {
    width: 25rem;
  }
}
.p-slider__card {
  position: relative;
  display: block;
}
.p-slider__card__img {
  border-radius: 1rem;
  overflow: hidden;
}
.p-slider__card__img img {
  aspect-ratio: 290/380;
  object-fit: cover;
  transition: all 0.3s;
}
.p-slider__card:hover {
  opacity: 1;
}
.p-slider__card:hover .p-slider__card__img img {
  transform: scale(1.1);
}
.p-slider__card__num {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem 0 1rem 0;
  background-color: #0062b9;
  font-family: "Outfit", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  font-weight: 700;
  color: #fff;
}
.p-slider__card__ttl {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  height: 9.2rem;
  padding: 1.8rem 2rem;
  background-image: linear-gradient(to bottom, rgba(143, 143, 143, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
  border-radius: 0 0 1rem 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-slider__card__ttl {
    height: 7.4rem;
    padding: 1rem 2rem;
    font-size: 1.3rem;
  }
}
.p-slider__side {
  display: flex;
  flex-direction: column;
  gap: 0.4rem 0;
  margin-left: 10.1rem;
  flex-basis: 25%;
  max-width: 25%;
}
@media screen and (max-width: 767px) {
  .p-slider__side {
    flex-direction: row;
    align-items: center;
    gap: 0 2rem;
    margin-left: 0;
    flex-basis: 100%;
    max-width: 100%;
  }
}
.p-slider__side__num {
  font-family: "Outfit", sans-serif;
  font-size: 8rem;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #f7f7f7;
}
@media screen and (max-width: 767px) {
  .p-slider__side__num {
    font-size: 4.4rem;
  }
}
.p-slider__side__ttl {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .p-slider__side__ttl {
    font-size: 1.4rem;
  }
}
.p-slider__side__industry {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .p-slider__side__industry {
    font-size: 1.3rem;
  }
}
.p-slider__side__nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0 1.6rem;
}
.p-slider__side__nav--pc {
  display: flex;
  flex-direction: row;
  margin-top: auto;
}
@media screen and (max-width: 767px) {
  .p-slider__side__nav--pc {
    display: none;
  }
}
.p-slider__side__nav--sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-slider__side__nav--sp {
    display: flex;
    flex-direction: row;
  }
}
.p-slider__side__nav .arrow {
  width: 6rem;
}
@media screen and (max-width: 767px) {
  .p-slider__side__nav .arrow {
    width: 5rem;
  }
}
.p-slider__side__nav .arrow img {
  width: 100%;
}
.p-slider__side__nav .arrow--prev {
  transform: rotate(-180deg);
}

/* p-home */
.p-home__mv__ttl {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 4.5rem 0;
  color: #0062b9;
  margin-bottom: -24rem;
  max-width: 128rem;
}
@media screen and (max-width: 767px) {
  .p-home__mv__ttl {
    gap: 2rem 0;
    margin-bottom: -6rem;
    max-width: none;
  }
}
.p-home__mv__ttl .ja {
  font-size: 8rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-home__mv__ttl .ja {
    font-size: 3.6rem;
  }
}
.p-home__mv__ttl .en {
  font-family: "Outfit", sans-serif;
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: 0.14em;
}
@media screen and (max-width: 767px) {
  .p-home__mv__ttl .en {
    font-size: 1.8rem;
  }
}
.p-home__mv__video {
  aspect-ratio: 1440/740;
}
@media screen and (max-width: 767px) {
  .p-home__mv__video {
    aspect-ratio: 375/449;
  }
}
.p-home__mv__video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8rem;
}
@media screen and (max-width: 767px) {
  .p-home__mv__video video {
    border-radius: 4rem;
  }
}
.p-home__about {
  padding: 12rem 0 24.7rem;
  background-image: url("../img/home/bg_about.png");
  background-repeat: no-repeat;
  background-position: left calc(100% - 5rem);
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-home__about {
    padding: 5rem 0 7.9rem;
    background-image: url("../img/home/bg_about_sp.png");
    background-position: center bottom;
  }
}
.p-home__about__inner {
  display: flex;
  flex-direction: row;
  gap: 3.2rem 7.4rem;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-home__about__inner {
    flex-direction: column;
  }
}
.p-home__about .c-ttl {
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .p-home__about .c-ttl {
    margin-bottom: 2rem;
  }
}
.p-home__about__head {
  flex: 1;
  padding-top: 8rem;
}
@media screen and (max-width: 767px) {
  .p-home__about__head {
    padding-top: 0;
  }
}
.p-home__about__copy {
  margin-bottom: 3rem;
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .p-home__about__copy {
    margin-bottom: 2rem;
    font-size: 2rem;
    line-height: 1.5;
  }
}
.p-home__about__txt {
  margin-bottom: 5rem;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.5;
}
@media screen and (max-width: 767px) {
  .p-home__about__txt {
    margin-bottom: 2rem;
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
.p-home__about__img {
  position: relative;
  max-width: 60rem;
  width: 47%;
}
@media screen and (max-width: 767px) {
  .p-home__about__img {
    max-width: 27.2rem;
    width: 100%;
    margin-left: auto;
  }
}
.p-home__about__img img {
  width: 100%;
}
.p-home__business {
  padding: 10rem 0;
  border-radius: 8rem;
  background-color: #f7f7f7;
}
@media screen and (max-width: 767px) {
  .p-home__business {
    padding: 4rem 0;
    border-radius: 4rem;
  }
}
.p-home__business .p-col-head {
  margin-bottom: 4.6rem;
}
@media screen and (max-width: 767px) {
  .p-home__business .p-col-head {
    margin-bottom: 2rem;
  }
}
.p-home__business .c-slide-txt {
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .p-home__business .c-slide-txt {
    margin-bottom: 1.6rem;
  }
}
.p-home__business__product {
  padding: 10rem 0 14rem;
}
@media screen and (max-width: 767px) {
  .p-home__business__product {
    padding: 4rem 0 3rem;
  }
}
.p-home__business__product .p-product {
  padding-top: 0;
}
.p-home__business__product .p-product .c-ttl {
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .p-home__business__product .p-product .c-ttl {
    margin-bottom: 3rem;
  }
}
.p-home__business__product .p-product .c-ttl__en {
  font-size: 3rem;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .p-home__business__product .p-product .c-ttl__en {
    font-size: 2rem;
  }
}
.p-home__business__product .p-product .c-ttl__ja {
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .p-home__business__product .p-product .c-ttl__ja {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-home__business__nav {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
}
.p-home__business__askirf8 {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 4.7rem;
  max-width: 124rem;
  margin-top: 10rem;
  background-image: url("../img/home/bg_askirf-8.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  height: 38rem;
  border-radius: 3rem;
}
@media screen and (max-width: 767px) {
  .p-home__business__askirf8 {
    flex-direction: column-reverse;
    margin-top: 3rem;
    background-image: url("../img/home/bg_askirf-8_sp.png");
    border-radius: 2rem;
  }
}
.p-home__business__askirf8:hover {
  opacity: 0.7 !important;
}
.p-home__business__askirf8__img {
  width: 62rem;
  margin-left: 2.8rem;
}
@media screen and (max-width: 767px) {
  .p-home__business__askirf8__img {
    width: 100%;
    margin-top: -2rem;
    margin-left: 0;
  }
}
.p-home__business__askirf8__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem 0;
  width: 36rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-home__business__askirf8__body {
    gap: 0.6rem 0;
    width: 100%;
  }
}
.p-home__business__askirf8__body .ttl {
  display: flex;
  flex-direction: column;
}
.p-home__business__askirf8__body .ttl__en {
  display: flex;
  flex-direction: column;
  font-family: "Outfit", sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  color: #e897c6;
  line-height: 1.1;
}
@media screen and (max-width: 767px) {
  .p-home__business__askirf8__body .ttl__en {
    font-size: 2rem;
  }
}
.p-home__business__askirf8__body .ttl__en strong {
  font-size: 6rem;
}
@media screen and (max-width: 767px) {
  .p-home__business__askirf8__body .ttl__en strong {
    font-size: 2.6rem;
  }
}
.p-home__business__askirf8__body .ttl__ja {
  margin-top: 0.8rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-home__business__askirf8__body .ttl__ja {
    margin-top: 1rem;
    font-size: 1.3rem;
  }
}
.p-home__business__askirf8__body .txt {
  font-size: 1.3rem;
}
@media screen and (max-width: 767px) {
  .p-home__business__askirf8__body .txt {
    width: 25rem;
    font-size: 1rem;
    text-align: left;
  }
}
.p-home__business__askirf8__arrow {
  width: 6rem;
}
@media screen and (max-width: 767px) {
  .p-home__business__askirf8__arrow {
    position: absolute;
    bottom: 1.5rem;
    right: 3.9rem;
    width: 5rem;
  }
}
.p-home__project {
  padding: 12rem 0;
}
@media screen and (max-width: 767px) {
  .p-home__project {
    padding: 4rem 0;
  }
}
.p-home__project .p-col-head {
  margin-bottom: 7rem;
}
@media screen and (max-width: 767px) {
  .p-home__project .p-col-head {
    margin-bottom: 2rem;
  }
}
.p-home__project .l-project-list {
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .p-home__project .l-project-list {
    margin-bottom: 2rem;
  }
}
.p-home__project .c-viewmore {
  margin-left: auto;
}
.p-home__company {
  padding: 10rem 0;
  background-color: #e5eff8;
  border-radius: 8rem;
}
@media screen and (max-width: 767px) {
  .p-home__company {
    padding: 4rem 0;
    border-radius: 4rem;
  }
}
.p-home__company .p-col-head {
  margin-bottom: 7rem;
}
@media screen and (max-width: 767px) {
  .p-home__company .p-col-head {
    margin-bottom: 2rem;
  }
}
.p-home__company__box {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 3rem 9.9rem;
}
@media screen and (max-width: 767px) {
  .p-home__company__box {
    flex-direction: column;
  }
}
.p-home__company__img {
  width: 58rem;
}
@media screen and (max-width: 767px) {
  .p-home__company__img {
    width: 100%;
  }
}
.p-home__company__body {
  margin-top: 1.8rem;
}
@media screen and (max-width: 767px) {
  .p-home__company__body {
    margin-top: 0;
  }
}
.p-home__company__ttl {
  margin-bottom: 2rem;
  font-size: 3rem;
  line-height: 2.5;
}
@media screen and (max-width: 767px) {
  .p-home__company__ttl {
    font-size: 2rem;
    line-height: 1.5;
  }
}
.p-home__company__txt {
  margin-bottom: 20px;
  line-height: 2.5;
}
@media screen and (max-width: 767px) {
  .p-home__company__txt {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}
.p-home__company__list {
  margin-top: 9.7rem;
}
@media screen and (max-width: 767px) {
  .p-home__company__list {
    margin-top: 3rem;
  }
}
.p-home__company__item {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 2.8rem;
  padding: 3rem 0;
  border-bottom: 0.1rem solid #0062b9;
}
@media screen and (max-width: 767px) {
  .p-home__company__item {
    gap: 0 2rem;
    padding: 2rem 0;
  }
}
.p-home__company__item:first-child {
  border-top: 0.1rem solid #0062b9;
}
.p-home__company__item .img {
  width: 16rem;
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .p-home__company__item .img {
    width: 14.4rem;
  }
}
.p-home__company__item .txt {
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-home__company__item .txt {
    font-size: 1.6rem;
  }
}
.p-home__company__item .arrow {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 3rem;
}
@media screen and (max-width: 767px) {
  .p-home__company__item .arrow {
    width: 2.4rem;
  }
}
.p-home__news {
  padding: 12rem 0;
}
@media screen and (max-width: 767px) {
  .p-home__news {
    padding: 4rem 0;
  }
}
.p-home__news__inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 2rem 19.3rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .p-home__news__inner {
    flex-direction: column;
    margin-bottom: 2rem;
  }
}
.p-home__news__list {
  flex: 1;
}
.p-home__news .c-viewmore {
  margin-left: auto;
}
.p-home__recruit {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-home__recruit {
    padding-bottom: 34.8rem;
    background-color: #e5eff8;
  }
}
.p-home__recruit__gallery {
  display: flex;
  flex-direction: row;
  width: max-content;
  overflow: hidden;
  white-space: nowrap;
}
.p-home__recruit__gallery .recruit-gallery__imgs {
  display: flex;
  flex-direction: row;
}
.p-home__recruit__gallery .recruit-gallery__imgs img {
  width: 53rem;
}
@media screen and (max-width: 767px) {
  .p-home__recruit__gallery .recruit-gallery__imgs img {
    width: 17rem;
  }
}
.p-home__recruit__inner {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  height: 77.5rem;
}
@media screen and (max-width: 767px) {
  .p-home__recruit__inner {
    top: 16.6rem;
    height: auto;
  }
}
.p-home__recruit__box {
  padding: 6rem;
  background-color: #0062b9;
  border-radius: 3rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-home__recruit__box {
    padding: 3rem 2.4rem;
    border-radius: 2rem;
  }
}
.p-home__recruit__box .c-ttl {
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-home__recruit__box .c-ttl {
    margin-bottom: 2rem;
  }
}
.p-home__recruit__ttl {
  font-size: 3rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .p-home__recruit__ttl {
    margin-bottom: 2rem;
    font-size: 2rem;
    line-height: 1.5;
  }
}
.p-home__recruit__txt {
  margin-bottom: 3rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-home__recruit__txt {
    margin-bottom: 2rem;
    font-size: 1.3rem;
    line-height: 1.5;
  }
}

/* p-single */
.p-single__ttl {
  margin-bottom: 2rem;
  padding-bottom: 0.6rem;
  font-size: 3rem;
  border-bottom: 0.1rem solid #b2d0ea;
  color: #0062b9;
}
@media screen and (max-width: 767px) {
  .p-single__ttl {
    font-size: 2rem;
  }
}
.p-single__cats {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .p-single__cats {
    gap: 0.5rem;
  }
}
.p-single__cat {
  padding: 0.6rem 1.6rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: #0062b9;
  border: 0.1rem solid #0062b9;
  border-radius: 999.9rem;
}
@media screen and (max-width: 767px) {
  .p-single__cat {
    font-size: 1.2rem;
  }
}
.p-single__img {
  border-radius: 1rem;
  margin: 0 auto 3rem;
}
.p-single__content p {
  margin: 2rem 0;
}
@media screen and (max-width: 767px) {
  .p-single__content p {
    font-size: 1.5rem;
  }
}
.p-single__content h2 {
  margin: 8rem 0 3em;
  padding-bottom: 1rem;
  font-size: 2.6rem;
  border-bottom: 0.1rem solid #b2d0ea;
  color: #0062b9;
}
@media screen and (max-width: 767px) {
  .p-single__content h2 {
    margin: 4rem 0 2rem;
    font-size: 2rem;
  }
}
.p-single__content h3 {
  margin: 8rem 0 3rem;
  padding: 0.7rem 3rem;
  background-color: #e5eff8;
  border-radius: 0.4rem;
  font-size: 2rem;
  color: #0062b9;
}
@media screen and (max-width: 767px) {
  .p-single__content h3 {
    margin: 4rem 0 2rem;
    font-size: 1.8rem;
  }
}
.p-single__content h4 {
  font-size: 1.8rem;
  padding-left: 1.2rem;
  border-left: 0.6rem solid #0062b9;
}
@media screen and (max-width: 767px) {
  .p-single__content h4 {
    font-size: 1.6rem;
  }
}
.p-single__content ul {
  margin: 3rem 0 3rem 1em;
  list-style: disc;
  font-size: 1.5rem;
}
.p-single__content ol {
  margin: 3rem 0 3rem 1em;
  list-style: decimal;
  font-size: 1.5rem;
}
.p-single__content a {
  color: #0062b9;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-single__content a {
    font-size: 1.5rem;
  }
}
.p-single__content .wp-block-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .p-single__content .wp-block-group {
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-single__content .wp-block-group .wp-block-image {
  margin: 0;
}
.p-single__content .wp-block-quote {
  margin: 3rem 0 5rem;
  padding: 3rem;
  border: 0.1rem solid #b2d0ea;
  border-radius: 1rem;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-single__content .wp-block-quote {
    padding: 2rem;
  }
}
.p-single__content .wp-block-quote p {
  margin: 0;
}
.p-single__content .wp-block-buttons {
  margin: 20px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.p-single__content .wp-block-button__link {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 30rem;
  height: 6rem;
  line-height: 1;
  color: #0062b9;
  border: 0.1rem solid #0062b9;
  border-radius: 999.9rem;
  background-color: #fff;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-single__content .wp-block-button__link {
    width: 27rem;
    font-size: 1.5rem;
  }
}
.p-single__content .wp-block-button__link:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  background-image: url("../img/common/arrow_btn_blue.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.p-single__content .wp-block-button__link[target=_blank]:after {
  background-image: url("../img/common/i_blank.svg");
}
.p-single__content .wp-block-image {
  margin: 3rem auto;
}
.p-single__content .wp-block-image img {
  border-radius: 1rem;
}
.p-single__content .wp-block-columns {
  gap: 0 2rem;
  margin: 3rem 0;
}
.p-single__content .wp-block-table {
  border-radius: 1rem;
}
.p-single__content table {
  width: 100%;
  border-spacing: 0;
  border-collapse: separate;
}
.p-single__content table th,
.p-single__content table td {
  padding: 1rem 3rem;
  border: none;
  border-right: 0.1rem solid #b2d0ea;
  border-bottom: 0.1rem solid #b2d0ea;
  font-size: 1.4rem;
}
.p-single__content table th,
.p-single__content table td:first-child {
  background-color: #e5eff8;
  border-left: 0.1rem solid #b2d0ea;
}
.p-single__content table tr:first-child th,
.p-single__content table tr:first-child td:first-child {
  border-radius: 1rem 0 0 0;
  border-top: 0.1rem solid #b2d0ea;
}
.p-single__content table tr:first-child td {
  border-top: 0.1rem solid #b2d0ea;
}
.p-single__content table tr:first-child td:last-child {
  border-radius: 0 1rem 0 0;
}
.p-single__content table tr:last-child th,
.p-single__content table tr:last-child td:first-child {
  border-radius: 0 0 0 1rem;
}
.p-single__content table tr:last-child td:last-child {
  border-radius: 0 0 1rem 0;
}
.p-single__content iframe {
  width: 100%;
  margin: 5rem 0;
  border-radius: 1rem;
}
.p-single__content .epb-box {
  position: relative;
  margin: 3rem 0 5rem;
  padding: 0;
  border-radius: 1rem;
}
.p-single__content .epb-box__headline {
  text-align: left;
  background-color: #5e5e5e;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #ffffff;
  margin-bottom: 0;
  margin-top: 0;
  overflow-wrap: break-word;
  padding: 8px;
  position: absolute;
  left: 13px;
  top: 0;
  transform: translateY(-50%);
  z-index: 1;
  font-weight: 700;
}
.p-single__content .epb-box__body {
  padding: 16px;
  background-color: #ffffff;
  border-style: solid;
  border-color: #828990;
  border-width: 2px;
}
.p-single__content .epb-box p {
  margin: 0;
}
.p-single__content .epb-columns {
  border: none;
}
.p-single__content .epb-columns__inner {
  box-sizing: border-box;
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .p-single__content .epb-columns__inner {
    flex-wrap: wrap;
  }
}
.p-single__content .epb-faq__item {
  background-color: var(--epb-faq-background-color);
  border-color: var(--epb-faq-border-color);
  border-radius: var(--epb-faq-radius);
  border-width: var(--epb-faq-border-width-top) var(--epb-faq-border-width-right) var(--epb-faq-border-width-bottom) var(--epb-faq-border-width-left);
}
.p-single__content .epb-has-faq-shadow {
  box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.08);
}
.p-single__content .epb-faq__item.is-style-epb-dashed,
.p-single__content .epb-faq__item.is-style-epb-double,
.p-single__content .epb-faq__item.is-style-epb-solid,
.p-single__content .epb-has-faq-background-color,
.p-single__content .epb-has-faq-shadow {
  padding: 14px;
}
.p-single__content .epb-faq__item.is-style-epb-none {
  border-style: none;
}
.p-single__content .epb-faq__item.is-style-epb-solid {
  border-style: solid;
}
.p-single__content .epb-faq__item.is-style-epb-dashed {
  border-style: dashed;
}
.p-single__content .epb-faq__item.is-style-epb-double {
  border-style: double;
}
.p-single__content .epb-faq .epb-faq__item:not(:first-child) {
  margin-top: 32px;
}
.p-single__content .epb-faq__item__question {
  background-color: var(--epb-accordion-question-background-color);
  color: var(--epb-accordion-question-text-color);
  display: flex;
  font-size: 16px;
  gap: 16px;
  margin: 0;
}
.p-single__content .epb-has-mobile-faq-question-font-size .epb-faq__item__question {
  font-size: 16px;
}
@media screen and (min-width: 600px) {
  .p-single__content .epb-has-mobile-faq-question-font-size .epb-faq__item__question {
    font-size: 14px;
  }
}
@media screen and (min-width: 960px) {
  .p-single__content .epb-has-mobile-faq-question-font-size .epb-faq__item__question {
    font-size: 14px;
  }
}
.p-single__content .epb-has-faq-acordion .epb-faq__item__question {
  cursor: pointer;
}
.p-single__content .epb-faq__item.epb-has-faq-acordion .epb-faq__item__question {
  padding-right: 32px;
  position: relative;
}
.p-single__content .epb-faq__item.epb-has-faq-acordion .epb-faq__item__question:after {
  color: var(--epb-accordion-color);
  font-size: clamp(16px, 1em, 26px);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.p-single__content .epb-faq__item.epb-has-faq-acordion .epb-faq__item__question.is-active:after {
  color: var(--epb-accordion-active-color);
}
.p-single__content .epb-faq__item.epb-has-faq-acordion .epb-faq__item__question.epb-has-faq-background:after {
  right: 16px;
}
.p-single__content .epb-faq__item.epb-has-faq-acordion .epb-faq__item__question.icon-chevron-up-after:after {
  content: "\e943";
}
.p-single__content .epb-faq__item.epb-has-faq-acordion .epb-faq__item__question.icon-chevron-up-after.is-active:after {
  content: "\e942";
}
.p-single__content .epb-faq__item.epb-has-faq-acordion .epb-faq__item__question.icon-arrow-up-after:after {
  content: "\e947";
}
.p-single__content .epb-faq__item.epb-has-faq-acordion .epb-faq__item__question.icon-arrow-up-after.is-active:after {
  content: "\e946";
}
.p-single__content .epb-faq__item.epb-has-faq-acordion .epb-faq__item__question.icon-chevron-circle-up-after:after {
  content: "\e93e";
}
.p-single__content .epb-faq__item.epb-has-faq-acordion .epb-faq__item__question.icon-chevron-circle-up-after.is-active:after {
  content: "\e93d";
}
.p-single__content .epb-faq__item.epb-has-faq-acordion .epb-faq__item__question.icon-plus-after.is-active:after {
  content: "\e986";
}
.p-single__content .epb-faq__item__answer {
  background-color: var(--epb-accordion-answer-background-color);
  -moz-column-gap: 16px;
  column-gap: 16px;
  display: flex;
  margin-top: 24px;
  overflow: hidden;
  padding: var(--epb-faq-answer-padding-top) var(--epb-faq-answer-padding-right) var(--epb-faq-answer-padding-bottom) var(--epb-faq-answer-padding-left);
}
.p-single__content .epb-has-faq-acordion .js-epb-toggle__content.epb-faq__item__answer {
  height: auto;
  opacity: 1;
  transition: 0.25s;
}
.p-single__content .js-epb-toggle__content.epb-faq__item__answer.is-hidden {
  height: 0;
  margin-top: 0;
  opacity: 0;
  padding-bottom: 0;
  padding-top: 0;
  transition: 0.25s;
}
.p-single__content .epb-faq__item__answer.is-style-epb-faq-answer-normal {
  border-radius: var(--epb-faq-answer-radius);
}
.p-single__content .epb-faq__item__answer.is-style-epb-faq-answer-bottom {
  border-bottom-left-radius: var(--epb-faq-answer-radius);
  border-bottom-right-radius: var(--epb-faq-answer-radius);
}
.p-single__content .epb-faq__item__answer__label,
.p-single__content .epb-faq__item__question__label {
  font-family: Arial, sans-serif;
}
.p-single__content .epb-faq__item__answer__label[data-fontweight=normal],
.p-single__content .epb-faq__item__question__label[data-fontweight=normal] {
  font-weight: 400;
}
.p-single__content .epb-faq__item__answer__label[data-fontweight=bold],
.p-single__content .epb-faq__item__question__label[data-fontweight=bold] {
  font-weight: 700;
}
.p-single__content .epb-faq__item__question__body {
  align-items: center;
  display: flex;
  letter-spacing: var(--epb-faq-question-letter-spacing);
  line-height: var(--epb-faq-question-line-height);
  font-size: 14px;
  color: #032441;
}
.p-single__content .epb-faq__item__answer__body > * {
  margin-bottom: 0;
  margin-top: 0;
  font-size: 14px;
}
.p-single__content .epb-has-faq-answer-margin-item .epb-faq__item__answer__body > * {
  margin-bottom: 0;
  margin-top: var(--epb-faq-answer-margin-item);
}
.p-single__content .epb-faq__item__answer__body > :first-child {
  margin-top: 0;
}
.p-single__content .epb-faq__item__answer__body,
.p-single__content .epb-faq__item__question__body {
  flex-basis: min-content;
  flex-grow: 1;
  overflow-wrap: break-word;
}
.p-single__content .epb-faq__item__question__body[data-fontweight=normal] {
  font-weight: 400;
}
.p-single__content .epb-faq__item__question__body[data-fontweight=bold] {
  font-weight: 700;
}
.p-single__content .epb-faq__item__answer__label,
.p-single__content .epb-faq__item__question__label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 16px;
}
.p-single__content [class*=is-style-epb-label-]:not(.is-style-epb-label-normal) .epb-faq__item__answer__label,
.p-single__content [class*=is-style-epb-label-]:not(.is-style-epb-label-normal) .epb-faq__item__question__label {
  border-style: solid;
  border-width: max(1px, 0.0625em);
}
.p-single__content .is-style-epb-label-circle .epb-faq__item__answer__label,
.p-single__content .is-style-epb-label-circle .epb-faq__item__question__label {
  border-radius: 50%;
}
.p-single__content .is-style-epb-label-square .epb-faq__item__answer__label,
.p-single__content .is-style-epb-label-square .epb-faq__item__question__label {
  padding: 2px;
}
.p-single__content .is-style-epb-label-rounded .epb-faq__item__answer__label,
.p-single__content .is-style-epb-label-rounded .epb-faq__item__question__label {
  border-radius: 3px;
  padding: 2px;
}
.p-single__content .is-style-epb-label-balloon .epb-faq__item__answer__label,
.p-single__content .is-style-epb-label-balloon .epb-faq__item__question__label {
  border-radius: 10px 10px 0 10px;
  padding: 2px;
}
.p-single__content .is-style-epb-margin-top .epb-faq__item__answer {
  margin-top: 0;
}
.p-single__content .is-style-epb-border-bottom .epb-faq__item__answer {
  border-top: 1px solid var(--epb-faq-style-color, #b8bcc0);
  margin-top: 16px;
  padding-top: 16px;
}
.p-single__content .is-style-epb-border-bottom-dashed .epb-faq__item__answer {
  border-top: 1px dashed var(--epb-faq-style-color, #b8bcc0);
  margin-top: 16px;
  padding-top: 16px;
}

/* p-single-nav */
.p-single-nav {
  margin-top: 12rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-single-nav {
    flex-wrap: wrap;
    margin-top: 4rem;
  }
}
.p-single-nav__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0 1.6rem;
  min-width: 17rem;
  height: 6rem;
  padding: 0 2rem;
  border: 0.1rem solid #0062b9;
  border-radius: 999.9rem;
  font-weight: 700;
  color: #0062b9;
}
@media screen and (max-width: 767px) {
  .p-single-nav__item {
    gap: 0 1.2rem;
    min-width: auto;
    max-width: 15.8rem;
    width: 100%;
    font-size: 1.5rem;
  }
}
.p-single-nav__item__arrow {
  width: 3rem;
}
@media screen and (max-width: 767px) {
  .p-single-nav__item__arrow {
    width: 2.4rem;
  }
}
.p-single-nav__item--prev .p-single-nav__item__arrow {
  transform: rotate(-180deg);
}
@media screen and (max-width: 767px) {
  .p-single-nav__item--list {
    max-width: none;
    width: 100%;
    order: 3;
  }
}
.p-single-nav__item.is-disabled {
  visibility: hidden;
}

/* p-guide */
.p-guide__content {
  display: flex;
  flex-direction: column;
  gap: 3rem 0;
  border-top: 0.1rem solid #b2d0ea;
  padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-guide__content {
    padding-top: 3.2rem;
  }
}
.p-guide__content h3 {
  margin-bottom: 0.6rem;
  font-size: 1.6rem;
  color: #0062b9;
}
.p-guide__content ul {
  margin-top: 2rem;
}
.p-guide__content a {
  color: #0062b9;
  font-weight: 700;
}
.p-guide__logo {
  width: 20rem;
}
.p-guide__box {
  gap: 3rem 0;
}
.p-guide__box h3 {
  font-size: 1.5rem;
  color: #032441;
}
.p-guide__box p {
  font-size: 1.5rem;
}
.p-guide__box ul li {
  font-size: 1.5rem;
}
.p-guide__box small {
  display: block;
  margin-top: 2rem;
  font-size: 1.3rem;
}

/* p-about */
.p-about__strengths {
  display: flex;
  flex-direction: column;
  gap: 5rem 0;
  padding-bottom: 12rem;
}
@media screen and (max-width: 767px) {
  .p-about__strengths {
    gap: 3rem 0;
    padding-bottom: 4rem;
  }
}
.p-about__philosophy {
  padding: 6rem 0;
  background-color: #e5eff8;
  border-radius: 8rem;
}
@media screen and (max-width: 767px) {
  .p-about__philosophy {
    padding: 4rem 0;
    border-radius: 4rem;
  }
}
.p-about__philosophy__inner {
  display: flex;
  flex-direction: column;
  gap: 5rem 0;
}
@media screen and (max-width: 767px) {
  .p-about__philosophy__inner {
    gap: 3rem;
  }
}
.p-about__philosophy__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.4rem 13rem;
  padding: 3rem 0;
  border-bottom: 0.1rem solid #b2d0ea;
}
@media screen and (max-width: 767px) {
  .p-about__philosophy__item {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.4rem 0;
  }
}
.p-about__philosophy__item--start {
  align-items: flex-start;
}
.p-about__philosophy__item:first-child {
  padding-top: 0;
}
.p-about__philosophy__item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.p-about__philosophy__item .c-ttl {
  width: 22rem;
}
@media screen and (max-width: 767px) {
  .p-about__philosophy__item .c-ttl {
    width: 100%;
  }
}
.p-about__philosophy__item .c-ttl__en {
  color: #e5eff8;
}
.p-about__philosophy__item .body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3.8rem 0;
}
@media screen and (max-width: 767px) {
  .p-about__philosophy__item .body {
    gap: 1.4rem 0;
  }
}
.p-about__philosophy__item .txt {
  font-size: 2.6rem;
  font-weight: 700;
  color: #0062b9;
}
@media screen and (max-width: 767px) {
  .p-about__philosophy__item .txt {
    font-size: 1.6rem;
  }
}
.p-about__philosophy__item .txt__description {
  display: block;
  margin-top: 0.6rem;
  font-size: 1.6rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-about__philosophy__item .txt__description {
    margin-top: 0.4rem;
    font-size: 1.3rem;
  }
}
.p-about__gallery {
  display: flex;
  flex-direction: row;
  width: max-content;
  padding-top: 6.7rem;
  overflow: hidden;
  white-space: nowrap;
}
.p-about__gallery__imgs {
  display: flex;
  flex-direction: row;
}
.p-about__gallery__imgs img {
  width: 60rem;
}
@media screen and (max-width: 767px) {
  .p-about__gallery__imgs img {
    width: 27rem;
  }
}
.p-about__create {
  display: flex;
  flex-direction: column;
  gap: 5rem 0;
  padding-top: 9rem;
}
@media screen and (max-width: 767px) {
  .p-about__create {
    gap: 3rem 0;
    padding-top: 4rem;
  }
}
.p-about__create__feature {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  position: relative;
  margin-bottom: 12rem;
}
@media screen and (max-width: 767px) {
  .p-about__create__feature {
    flex-direction: column;
    justify-content: flex-start;
    margin: 0 -0.6rem 2rem;
  }
}
.p-about__create__feature .create-feature__copy {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 73.6rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-about__create__feature .create-feature__copy {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    margin-bottom: -4.5rem;
  }
}
.p-about__create__feature .create-feature__copy__en {
  font-family: "Outfit", sans-serif;
  font-size: 18rem;
  font-weight: 800;
  color: #e5eff8;
  line-height: 1;
  opacity: 0.5;
}
@media screen and (max-width: 767px) {
  .p-about__create__feature .create-feature__copy__en {
    font-size: 8.3rem;
  }
}
.p-about__create__feature .create-feature__copy__ja {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  font-weight: 700;
  color: #0062b9;
}
@media screen and (max-width: 767px) {
  .p-about__create__feature .create-feature__copy__ja {
    font-size: 1.8rem;
  }
}
.p-about__create__feature .create-feature__list {
  position: relative;
  width: 69.6rem;
  height: 64.4rem;
}
@media screen and (max-width: 767px) {
  .p-about__create__feature .create-feature__list {
    width: 34rem;
    height: 31.5rem;
  }
}
.p-about__create__feature .create-feature__list .create-feature__item {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 1rem 0;
  align-items: center;
  padding-top: 5.7rem;
  color: #fff;
  text-align: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-about__create__feature .create-feature__list .create-feature__item {
    gap: 0.3rem 0;
    padding-top: 1.8rem;
  }
}
.p-about__create__feature .create-feature__list .create-feature__item__num {
  font-family: "Outfit", sans-serif;
  font-size: 8rem;
  font-weight: 800;
  line-height: 1;
  -webkit-text-stroke-color: #fff;
  text-stroke-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-about__create__feature .create-feature__list .create-feature__item__num {
    font-size: 3.4rem;
  }
}
.p-about__create__feature .create-feature__list .create-feature__item__ttl {
  font-size: 2.6rem;
}
@media screen and (max-width: 767px) {
  .p-about__create__feature .create-feature__list .create-feature__item__ttl {
    font-size: 1.5rem;
  }
}
.p-about__create__feature .create-feature__list .create-feature__item__txt {
  font-size: 1.4rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-about__create__feature .create-feature__list .create-feature__item__txt {
    font-size: 1.1rem;
    line-height: 1.5;
    letter-spacing: 0;
  }
}
.p-about__create__feature .create-feature__list .create-feature__item--01 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 35.9rem;
  height: 35.9rem;
  padding-top: 4.7rem;
  background-image: url("../img/company/about/bg_create_01.svg");
}
@media screen and (max-width: 767px) {
  .p-about__create__feature .create-feature__list .create-feature__item--01 {
    width: 17.5rem;
    height: 17.6rem;
    padding-top: 1.8rem;
  }
}
.p-about__create__feature .create-feature__list .create-feature__item--01 .create-feature__item__num {
  color: #3ba1fb;
}
.p-about__create__feature .create-feature__list .create-feature__item--02 {
  left: 0;
  bottom: 0;
  width: 34.2rem;
  height: 35.8rem;
  background-image: url("../img/company/about/bg_create_02.svg");
}
@media screen and (max-width: 767px) {
  .p-about__create__feature .create-feature__list .create-feature__item--02 {
    width: 16.7rem;
    height: 17.5rem;
  }
}
.p-about__create__feature .create-feature__list .create-feature__item--02 .create-feature__item__num {
  color: #0062b9;
}
.p-about__create__feature .create-feature__list .create-feature__item--03 {
  right: 0;
  bottom: 0;
  width: 35.8rem;
  height: 35.8rem;
  background-image: url("../img/company/about/bg_create_03.svg");
}
@media screen and (max-width: 767px) {
  .p-about__create__feature .create-feature__list .create-feature__item--03 {
    width: 17.5rem;
    height: 17.5rem;
  }
}
.p-about__create__feature .create-feature__list .create-feature__item--03 .create-feature__item__num {
  color: #2784d8;
}
.p-about__create__policy {
  margin-top: -5rem;
  display: flex;
  flex-direction: column;
  gap: 6rem 0;
}
@media screen and (max-width: 767px) {
  .p-about__create__policy {
    margin-top: 0;
    gap: 4rem 0;
  }
}
.p-about__create__policy .create-policy__item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-about__create__policy .create-policy__item {
    flex-direction: column;
    gap: 2rem 0;
  }
}
.p-about__create__policy .create-policy__item:last-child {
  margin-bottom: 0;
}
.p-about__create__policy .create-policy__item__head {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem 4.9rem;
}
@media screen and (max-width: 767px) {
  .p-about__create__policy .create-policy__item__head {
    flex-direction: column;
    align-items: flex-start;
  }
}
.p-about__create__policy .create-policy__item__num {
  font-size: 8rem;
  font-weight: 800;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .p-about__create__policy .create-policy__item__num {
    font-size: 6rem;
  }
}
.p-about__create__policy .create-policy__item__ttl {
  margin-bottom: 2rem;
  font-size: 2.6rem;
  font-weight: 700;
  color: #0062b9;
}
@media screen and (max-width: 767px) {
  .p-about__create__policy .create-policy__item__ttl {
    margin-bottom: 1.2rem;
    font-size: 2rem;
  }
}
.p-about__create__policy .create-policy__item__txt {
  width: 56rem;
}
@media screen and (max-width: 767px) {
  .p-about__create__policy .create-policy__item__txt {
    width: 100%;
    font-size: 1.4rem;
  }
}
.p-about__logo {
  display: flex;
  flex-direction: column;
  gap: 5rem 0;
  padding-top: 12rem;
}
@media screen and (max-width: 767px) {
  .p-about__logo {
    gap: 1.4rem 0;
    padding-top: 4rem;
  }
}

/* p-overview */
.p-overview__col {
  display: flex;
  flex-direction: row;
  gap: 3.2rem 9rem;
}
@media screen and (max-width: 767px) {
  .p-overview__col {
    flex-direction: column;
  }
}
.p-overview .c-ttl {
  flex: 1;
}
.p-overview__content {
  width: 86rem;
}
@media screen and (max-width: 767px) {
  .p-overview__content {
    width: 100%;
  }
}
.p-overview__table {
  border-collapse: collapse;
  text-align: left;
}
.p-overview__table tr:first-child th,
.p-overview__table tr:first-child td {
  border-top: 0.1rem solid #b2d0ea;
}
@media screen and (max-width: 767px) {
  .p-overview__table tr:first-child td {
    border-top: none;
  }
}
.p-overview__table th,
.p-overview__table td {
  padding: 3rem 0;
  border-bottom: 0.1rem solid #b2d0ea;
}
@media screen and (max-width: 767px) {
  .p-overview__table th,
  .p-overview__table td {
    display: block;
  }
}
.p-overview__table th {
  vertical-align: top;
  color: #0062b9;
  padding-right: 5rem;
}
@media screen and (max-width: 767px) {
  .p-overview__table th {
    border-bottom: none;
    padding-bottom: 1rem;
    padding-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-overview__table td {
    padding-top: 0;
  }
}
.p-overview__note {
  margin-top: 1.8rem;
  font-size: 1.2rem;
}
.p-overview__gallery {
  display: flex;
  flex-direction: row;
  width: max-content;
  overflow: hidden;
  white-space: nowrap;
  padding-top: 6rem;
}
@media screen and (max-width: 767px) {
  .p-overview__gallery {
    padding-top: 4rem;
  }
}
.p-overview__gallery__imgs {
  display: flex;
  flex-direction: row;
}
.p-overview__gallery__imgs img {
  width: 60rem;
}
@media screen and (max-width: 767px) {
  .p-overview__gallery__imgs img {
    width: 27rem;
  }
}
.p-overview__history {
  padding-top: 12rem;
}
@media screen and (max-width: 767px) {
  .p-overview__history {
    padding-top: 4rem;
  }
}
.p-overview__history__list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5.4rem 0;
}
@media screen and (max-width: 767px) {
  .p-overview__history__list {
    gap: 3.2rem 0;
  }
}
.p-overview__history__list:before {
  content: "";
  position: absolute;
  top: 0.8rem;
  left: 10.9rem;
  width: 0.1rem;
  height: 98%;
  background-color: #0062b9;
}
@media screen and (max-width: 767px) {
  .p-overview__history__list:before {
    left: 7rem;
  }
}
.p-overview__history__item {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0 12.4rem;
}
@media screen and (max-width: 767px) {
  .p-overview__history__item {
    gap: 0 6.2rem;
  }
}
.p-overview__history__item:before {
  content: "";
  position: absolute;
  top: 0.8rem;
  left: 10.1rem;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 999.9rem;
  background-color: #0062b9;
}
@media screen and (max-width: 767px) {
  .p-overview__history__item:before {
    top: 0.6rem;
    left: 6.3rem;
    width: 1.4rem;
    height: 1.4rem;
  }
}
.p-overview__history__item .ttl {
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #0062b9;
}
@media screen and (max-width: 767px) {
  .p-overview__history__item .ttl {
    font-size: 1.6rem;
  }
}
.p-overview__history__item .txt {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-overview__history__item .txt {
    font-size: 1.4rem;
  }
}

/* p-access */
.p-access__item {
  display: flex;
  flex-direction: row;
  gap: 3.2rem 7rem;
  padding: 5rem 0;
  border-bottom: 0.1rem solid #b2d0ea;
}
@media screen and (max-width: 767px) {
  .p-access__item {
    padding: 3.2rem 0;
    flex-direction: column;
  }
}
.p-access__item:first-of-type {
  padding-top: 0;
}
.p-access__item:last-of-type {
  padding-bottom: 0;
  border-bottom: none;
}
.p-access__item__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5rem 0;
}
@media screen and (max-width: 767px) {
  .p-access__item__body {
    gap: 3rem;
  }
}
.p-access__item__info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem 0;
}
@media screen and (max-width: 767px) {
  .p-access__item__info {
    gap: 1.6rem 0;
  }
}
.p-access__item__info .item__ttl {
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-access__item__info .item__txt {
    font-size: 1.4rem;
  }
}
.p-access__item__info .item__txt ul {
  list-style: disc;
  margin-left: 1.5em;
}
.p-access__item__info .item__txt ul li {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0062b9;
}
@media screen and (max-width: 767px) {
  .p-access__item__info .item__txt ul li {
    font-size: 1.6rem;
  }
}
.p-access__item__info .item--feature .item__ttl {
  color: #0062b9;
}
.p-access__item__media {
  display: flex;
  flex-direction: column;
  gap: 2rem 0;
  width: 60rem;
}
@media screen and (max-width: 767px) {
  .p-access__item__media {
    width: 100%;
  }
}
.p-access__item__media .img {
  border-radius: 1rem;
}
.p-access__item__media .map {
  position: relative;
  aspect-ratio: 600/400;
}
.p-access__item__media .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
}

/* p-product-single */
.p-product-single__content {
  display: flex;
  flex-direction: column;
  gap: 3rem 0;
}
.p-product-single__item {
  display: flex;
  flex-direction: column;
  gap: 1.4rem 0;
}
.p-product-single__item__ttl {
  font-size: 2rem;
  color: #0062b9;
}
@media screen and (max-width: 767px) {
  .p-product-single__item__ttl {
    font-size: 1.8rem;
  }
}
.p-product-single__item--img {
  gap: 2rem 0;
  margin-top: 2rem;
}
.p-product-single__item--img .img {
  border-radius: 1rem;
}

/* p-facility */
.p-facility .p-col-head {
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .p-facility .p-col-head {
    margin-bottom: 3rem;
  }
}
.p-facility__list {
  display: flex;
  flex-direction: column;
  gap: 8rem 0;
}
@media screen and (max-width: 767px) {
  .p-facility__list {
    gap: 5rem;
  }
}
.p-facility__item {
  display: flex;
  flex-direction: column;
  gap: 5rem 0;
}
.p-facility__item__info {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 3.2rem 4rem;
}
@media screen and (max-width: 767px) {
  .p-facility__item__info {
    flex-direction: column;
  }
}
.p-facility__item__info .head {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5rem 0;
}
@media screen and (max-width: 767px) {
  .p-facility__item__info .head {
    gap: 2rem;
  }
}
.p-facility__item__info .head__ttl {
  padding-bottom: 0.6rem;
  border-bottom: 0.1rem solid #b2d0ea;
  font-size: 3rem;
  color: #0062b9;
}
@media screen and (max-width: 767px) {
  .p-facility__item__info .head__ttl {
    font-size: 2rem;
  }
}
.p-facility__item__info .head__txt {
  font-size: 1.4rem;
}
.p-facility__item__info .img {
  width: 40rem;
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .p-facility__item__info .img {
    width: 100%;
  }
}
.p-facility__item__detail {
  display: flex;
  flex-direction: column;
  gap: 2rem 0;
}
.p-facility__item__detail .ttl {
  font-size: 2rem;
}

/* p-project-single */
.p-project-single__head {
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .p-project-single__head {
    margin-bottom: 3rem;
  }
}
.p-project-single__ttl {
  display: flex;
  flex-direction: column;
  font-size: 4.8rem;
  color: #0062b9;
}
@media screen and (max-width: 767px) {
  .p-project-single__ttl {
    font-size: 2.2rem;
  }
}
.p-project-single__sub-ttl {
  margin-bottom: 2.3rem;
  font-size: 2.4rem;
  font-weight: 500;
  color: #0062b9;
}
@media screen and (max-width: 767px) {
  .p-project-single__sub-ttl {
    margin-bottom: 1.6rem;
    font-size: 1.7rem;
  }
}
.p-project-single__overview .p-media {
  margin-bottom: 9.5rem;
  gap: 2rem 4rem;
}
@media screen and (max-width: 767px) {
  .p-project-single__overview .p-media {
    margin-bottom: 4.5rem;
  }
}
.p-project-single__overview .p-media__txt {
  line-height: 1.8;
}
.p-project-single__overview .p-media__img {
  width: 64rem;
}
.p-project-single__overview__imgs {
  margin-left: auto;
  width: 120.4rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-project-single__overview__imgs {
    flex-direction: column-reverse;
    gap: 3.2rem 0;
    width: calc(100% - 2.4rem);
  }
}
.p-project-single__overview__img01 {
  width: 54.4rem;
  height: 100%;
  margin-top: 4.6rem;
  border-radius: 1rem;
  aspect-ratio: 544/388;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-project-single__overview__img01 {
    margin-top: 0;
    width: 29.3rem;
  }
}
.p-project-single__overview__img02 {
  width: 41.9rem;
  height: 100%;
  border-radius: 1rem 0 0 1rem;
  aspect-ratio: 419/315;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-project-single__overview__img02 {
    width: 22.6rem;
    margin-left: auto;
  }
}
.p-project-single__feature {
  display: flex;
  flex-direction: column;
  gap: 10.2rem 0;
  padding-top: 11.6rem;
}
@media screen and (max-width: 767px) {
  .p-project-single__feature {
    gap: 3rem 0;
    padding-top: 5rem;
  }
}
.p-project-single__feature .p-media {
  gap: 2rem 10rem;
}
@media screen and (max-width: 767px) {
  .p-project-single__feature .p-media {
    flex-direction: column-reverse;
  }
}
.p-project-single__feature .p-media__ttl {
  font-size: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-project-single__feature .p-media__ttl {
    font-size: 2rem;
  }
}
.p-project-single__feature .p-media__img {
  width: 48rem;
  height: 100%;
  aspect-ratio: 480/600;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-project-single__feature .p-media__img {
    width: 100%;
  }
}
.p-project-single__feature__imgs {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 4.8rem;
}
@media screen and (max-width: 767px) {
  .p-project-single__feature__imgs {
    display: none;
    flex-direction: column;
    gap: 3.2rem 0;
    width: calc(100% - 2.4rem);
    margin-top: 2.4rem;
  }
}
.p-project-single__feature img {
  height: 100%;
  object-fit: cover;
}
.p-project-single__feature__img01 {
  width: 44rem;
  margin-top: 15.5rem;
  aspect-ratio: 440/350;
  border-radius: 0 1rem 1rem 0;
}
@media screen and (max-width: 767px) {
  .p-project-single__feature__img01 {
    width: 22.6rem;
    margin-top: 0;
  }
}
.p-project-single__feature__img02 {
  width: 33.5rem;
  aspect-ratio: 335/263;
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .p-project-single__feature__img02 {
    width: 29.3rem;
    margin-left: auto;
  }
}
.p-project-single__feature__img03 {
  width: 51rem;
  margin-top: 7.8rem;
  aspect-ratio: 510/583;
  border-radius: 1rem 0 0 1rem;
}
@media screen and (max-width: 767px) {
  .p-project-single__feature__img03 {
    display: none;
  }
}
.p-project-single__story {
  padding-top: 9rem;
}
@media screen and (max-width: 767px) {
  .p-project-single__story {
    padding-top: 5rem;
  }
}
.p-project-single__story__head {
  margin-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .p-project-single__story__head {
    margin-bottom: 3rem;
  }
}
.p-project-single__story__ttl {
  margin-bottom: 1rem;
  font-size: 3.2rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #0062b9;
}
@media screen and (max-width: 767px) {
  .p-project-single__story__ttl {
    font-size: 2rem;
  }
}
.p-project-single__story__lead {
  line-height: 1.8;
  color: #0062b9;
}
@media screen and (max-width: 767px) {
  .p-project-single__story__lead {
    font-size: 1.4rem;
  }
}
.p-project-single__story__list {
  display: flex;
  flex-direction: column;
  gap: 12rem 0;
}
@media screen and (max-width: 767px) {
  .p-project-single__story__list {
    gap: 3rem 0;
  }
}
.p-project-single__story .p-media {
  position: relative;
}
.p-project-single__story .p-media__img {
  width: 71rem;
  border-radius: 0 1rem 1rem 0;
}
@media screen and (max-width: 767px) {
  .p-project-single__story .p-media__img {
    width: 94%;
    margin-right: auto;
  }
}
.p-project-single__story .p-media__inner {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-project-single__story .p-media__inner {
    position: relative;
    top: auto;
    transform: none;
  }
}
.p-project-single__story .p-media__body {
  position: relative;
  left: 9rem;
  margin-left: auto;
  width: 56rem;
}
@media screen and (max-width: 767px) {
  .p-project-single__story .p-media__body {
    left: auto;
    width: 100%;
  }
}
.p-project-single__story .p-media--reverse .p-media__img {
  border-radius: 1rem 0 0 1rem;
}
@media screen and (max-width: 767px) {
  .p-project-single__story .p-media--reverse .p-media__img {
    margin-right: 0;
    margin-left: auto;
  }
}
.p-project-single__story .p-media--reverse .p-media__body {
  margin-left: 0;
}
.p-project-single__summary {
  padding-top: 17rem;
}
@media screen and (max-width: 767px) {
  .p-project-single__summary {
    padding-top: 8.5rem;
  }
}
.p-project-single__summary__img {
  margin-bottom: 8rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-project-single__summary__img {
    margin-bottom: 4rem;
  }
}
.p-project-single__summary__ttl {
  margin-bottom: 2rem;
  font-size: 3.2rem;
  color: #0062b9;
}
@media screen and (max-width: 767px) {
  .p-project-single__summary__ttl {
    margin-bottom: 1.2rem;
    font-size: 2rem;
  }
}
.p-project-single__summary__txt {
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-project-single__summary__txt {
    font-size: 1.4rem;
  }
}
.p-project-single__contact {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 71.8rem;
  height: 9rem;
  margin: 12.1rem auto 0;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  background-color: #0062b9;
  border-radius: 999.9rem;
}
@media screen and (max-width: 767px) {
  .p-project-single__contact {
    width: 34.3rem;
    height: 6rem;
    margin-top: 6rem;
    font-size: 1.5rem;
  }
}
.p-project-single__contact:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 3rem;
  width: 3rem;
  height: 3rem;
  background-image: url("../img/common/arrow_btn_outline-white.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-project-single__contact:after {
    width: 2.4rem;
    height: 2.4rem;
    right: 2.4rem;
  }
}

/* p-dx */
.p-dx__logo {
  width: 30rem;
}
@media screen and (max-width: 767px) {
  .p-dx__logo {
    width: 24rem;
  }
}
.p-dx__sec {
  display: flex;
  flex-direction: column;
  gap: 5rem 0;
}
@media screen and (max-width: 767px) {
  .p-dx__sec {
    gap: 3.2rem 0;
  }
}
.p-dx__policy {
  display: flex;
  flex-direction: row;
}
@media screen and (max-width: 767px) {
  .p-dx__policy {
    flex-direction: column;
  }
}
.p-dx__policy__img img {
  height: 22.9rem;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-dx__policy__img img {
    width: 100%;
    height: auto;
  }
}
.p-dx__policy__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #e5eff8;
  color: #0062b9;
  width: 56.9rem;
  height: 22.9rem;
  padding: 3.5rem 3.6rem 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-dx__policy__item {
    width: 100%;
    height: auto;
    padding: 2rem;
  }
}
.p-dx__policy__item .policy-item__ttl {
  margin-bottom: 3.6rem;
  font-family: "Outfit", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-dx__policy__item .policy-item__ttl {
    margin-bottom: 2rem;
  }
}
.p-dx__policy__item .policy-item__txt {
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-dx__policy__item .policy-item__txt {
    font-size: 1.4rem;
  }
}
.p-dx__policy__item .policy-item__list {
  list-style: disc;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-dx__policy__item .policy-item__list {
    margin-left: 1.6rem;
    font-size: 1.4rem;
  }
}
.p-dx__policy__item:first-child {
  border-radius: 1rem 0 0 1rem;
}
@media screen and (max-width: 767px) {
  .p-dx__policy__item:first-child {
    border-radius: 1rem 1rem 0 0;
  }
}
.p-dx__policy__item:last-child {
  background-color: #0062b9;
  border-radius: 0 1rem 1rem 0;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-dx__policy__item:last-child {
    position: relative;
    top: -0.1rem;
    border-radius: 0 0 1rem 1rem;
    padding-top: 0;
  }
}
.p-dx__policy__item:last-child .policy-item__ttl {
  margin-bottom: 0.7rem;
}
.p-dx__maintenance {
  padding-top: 12rem;
}
@media screen and (max-width: 767px) {
  .p-dx__maintenance {
    padding-top: 4rem;
  }
}
.p-dx__maintenance__kpi {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .p-dx__maintenance__kpi {
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-dx__maintenance__kpi .kpi-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 25rem;
  padding: 2rem 1.6rem;
  background-color: #0062b9;
  border-radius: 1rem;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-dx__maintenance__kpi .kpi-item {
    height: auto;
  }
}
.p-dx__maintenance__kpi .kpi-item__img {
  width: 10rem;
}
.p-dx__maintenance__kpi .kpi-item__ttl {
  margin-bottom: 1.1rem;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .p-dx__maintenance__kpi .kpi-item__ttl {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-dx__maintenance__kpi .kpi-item__txt {
    font-size: 1.4rem;
  }
}
.p-dx__maintenance__kpi-detail {
  display: flex;
  flex-direction: column;
  gap: 5rem 0;
}
.p-dx__maintenance__kpi-detail .kpi-detail__item {
  gap: 2.4rem 0;
}
.p-dx__maintenance__kpi-detail .kpi-detail__item__head {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2.6rem 0;
}
.p-dx__maintenance__kpi-detail .kpi-detail__item__head .p-media__ttl {
  font-size: 2.6rem;
}
@media screen and (max-width: 767px) {
  .p-dx__maintenance__kpi-detail .kpi-detail__item__head .p-media__ttl {
    font-size: 2rem;
  }
}
.p-dx__maintenance__kpi-detail .kpi-detail__item .p-col__box {
  display: flex;
  flex-direction: column;
  gap: 3.2rem 0;
}
.p-dx__maintenance__kpi-detail .kpi-detail__item__info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem 0;
}
.p-dx__maintenance__kpi-detail .kpi-detail__item__info .info-ttl {
  width: fit-content;
  padding: 0.15rem 1.6rem;
  border: 0.1rem solid #0062b9;
  border-radius: 999.9rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0062b9;
}
.p-dx__maintenance__kpi-detail .kpi-detail__item__info .info-txt {
  font-size: 1.5rem;
}
.p-dx__maintenance__kpi-detail .kpi-detail__item__info .c-list {
  display: flex;
  flex-direction: column;
  gap: 1rem 0;
}
.p-dx__maintenance__kpi-detail .kpi-detail__item__info .c-list li strong {
  display: block;
  color: #0062b9;
}
.p-dx__maintenance__kpi-detail .kpi-detail__item__result {
  position: relative;
  padding: 4.9rem 3rem 3rem;
  background-color: #fff;
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .p-dx__maintenance__kpi-detail .kpi-detail__item__result {
    padding: 4.9rem 2rem 3rem;
  }
}
.p-dx__maintenance__kpi-detail .kpi-detail__item__result .result-ttl {
  position: absolute;
  top: 0;
  left: 0;
  width: fit-content;
  padding: 0.15rem 1.6rem;
  background-color: #0062b9;
  border-radius: 1rem 0 1rem 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
.p-dx__maintenance__kpi-detail .kpi-detail__item__result .result-list {
  display: flex;
  flex-direction: column;
  gap: 1rem 0;
}
.p-dx__maintenance__kpi-detail .kpi-detail__item__result .result-list li {
  padding-left: 4rem;
  background-image: url("../img/company/dx/i_check.svg");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 3rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0062b9;
}
.p-dx__formation {
  padding-top: 16.7rem;
}
@media screen and (max-width: 767px) {
  .p-dx__formation {
    padding-top: 8.3rem;
  }
}
.p-dx__formation .c-sec-sub-ttl {
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .p-dx__formation .c-sec-sub-ttl {
    margin-bottom: 2.4rem;
  }
}
.p-dx__formation__fig {
  margin-bottom: 7rem;
}
@media screen and (max-width: 767px) {
  .p-dx__formation__fig {
    margin-bottom: 2rem;
  }
}
.p-dx__formation__fig .formation-fig__position {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 22.9rem;
  height: 5.1rem;
  border-radius: 1rem;
  border: 0.1rem solid #0062b9;
  background-color: #0062b9;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-dx__formation__fig .formation-fig__position {
    font-size: 1.8rem;
  }
}
.p-dx__formation__fig .formation-fig__position--president {
  position: relative;
  margin: 0 auto 7rem;
  background-color: #fff;
  color: #0062b9;
}
.p-dx__formation__fig .formation-fig__position--president:after {
  content: "";
  position: absolute;
  bottom: -4.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0.1rem;
  height: 4.5rem;
  background-color: #0062b9;
}
.p-dx__formation__fig .formation-fig__box {
  position: relative;
  max-width: 86rem;
  width: 100%;
  margin: 0 auto;
  padding: 3.4rem 2.4rem 5.8rem;
  background-image: linear-gradient(to bottom right, #0062b9 0%, #7ec2ff 100%);
  border-radius: 1rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-dx__formation__fig .formation-fig__box {
    padding: 3.4rem 2.4rem 4rem;
  }
}
.p-dx__formation__fig .formation-fig__box .formation-fig__position {
  position: absolute;
  top: -2.6rem;
  left: 50%;
  transform: translateX(-50%);
}
.p-dx__formation__fig .formation-fig__box .formation-fig__ttl {
  margin-bottom: 1.5rem;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}
.p-dx__formation__fig .formation-fig__box .formation-fig__department {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  width: 70rem;
  margin: 0 auto 3.6rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-dx__formation__fig .formation-fig__box .formation-fig__department {
    gap: 1rem;
    width: 100%;
    margin-bottom: 2.4rem;
  }
}
.p-dx__formation__fig .formation-fig__box .formation-fig__department__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem 0;
  padding: 1.6rem 1.2rem 1.1rem;
  background-color: #fff;
  border-radius: 1rem;
  border: 0.1rem solid #0062b9;
  color: #0062b9;
}
.p-dx__formation__fig .formation-fig__box .formation-fig__department__item .department-item__ttl {
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-dx__formation__fig .formation-fig__box .formation-fig__department__item .department-item__ttl {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-dx__formation__fig .formation-fig__box .formation-fig__department__item .department-item__txt {
    font-size: 1.2rem;
  }
}
.p-dx__formation__fig .formation-fig__box .formation-fig__process {
  width: 69rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-dx__formation__fig .formation-fig__box .formation-fig__process {
    width: 100%;
  }
}
.p-dx__formation__fig .formation-fig__box .formation-fig__process li {
  font-size: 2rem;
  font-weight: 700;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-dx__formation__fig .formation-fig__box .formation-fig__process li {
    font-size: 1.6rem;
  }
}
.p-dx__formation__fig .formation-fig__box .formation-fig__process__line {
  width: 21.8rem;
  height: 0.1rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-dx__formation__fig .formation-fig__box .formation-fig__process__line {
    width: 8rem;
  }
}
.p-dx__formation__role__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .p-dx__formation__role__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-dx__formation__col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.2rem 4rem;
}
@media screen and (max-width: 767px) {
  .p-dx__formation__col {
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-dx__formation__col p {
  font-size: 1.5rem;
}
.p-dx__security {
  padding-top: 9.3rem;
}
@media screen and (max-width: 767px) {
  .p-dx__security {
    padding-top: 4.6rem;
  }
}
.p-dx__challenge {
  padding-top: 12rem;
}
@media screen and (max-width: 767px) {
  .p-dx__challenge {
    padding-top: 4rem;
  }
}

/* p-fa */
.p-fa__strengths {
  display: flex;
  flex-direction: column;
  gap: 5rem 0;
}
@media screen and (max-width: 767px) {
  .p-fa__strengths {
    gap: 3rem 0;
  }
}
.p-fa__strengths__result {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 3rem;
  margin: 5rem 0 10rem;
}
@media screen and (max-width: 767px) {
  .p-fa__strengths__result {
    grid-template-columns: repeat(1, 1fr);
    margin: 3rem 0 5rem;
  }
}
.p-fa__strengths__result__item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 25rem;
  padding-left: 7rem;
  background-color: #0062b9;
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .p-fa__strengths__result__item {
    height: 15rem;
    padding-left: 2rem;
  }
}
.p-fa__strengths__result__item .box {
  display: flex;
  flex-direction: column;
  gap: 0.5rem 0;
  width: fit-content;
  text-align: center;
  color: #fff;
}
.p-fa__strengths__result__item .ttl {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .p-fa__strengths__result__item .ttl {
    font-size: 1.5rem;
  }
}
.p-fa__strengths__result__item .amount {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-fa__strengths__result__item .amount {
    font-size: 1.6rem;
  }
}
.p-fa__strengths__result__item .amount .c-edge-txt {
  font-family: "Outfit", sans-serif;
  font-size: 8rem;
  font-weight: 800;
  color: #0062b9;
  -webkit-text-stroke-color: #fff;
  text-stroke-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-fa__strengths__result__item .amount .c-edge-txt {
    font-size: 4rem;
  }
}
.p-fa__strengths__result__item .time {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .p-fa__strengths__result__item .time {
    font-size: 1.2rem;
  }
}
.p-fa__strengths__result__item .img {
  position: absolute;
  top: 0;
  right: 0;
  width: 28.4rem;
}
@media screen and (max-width: 767px) {
  .p-fa__strengths__result__item .img {
    width: 17rem;
  }
}
.p-fa__strengths__result__item .img:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/business/fa/bg_filter.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  mix-blend-mode: multiply;
}
.p-fa__strengths__result__item .img img {
  width: 100%;
  aspect-ratio: 284/250;
  mix-blend-mode: multiply;
}
.p-fa__box {
  padding: 6rem 0;
  background-color: #f7f7f7;
  border-radius: 8rem;
}
@media screen and (max-width: 767px) {
  .p-fa__box {
    padding: 4rem 0;
    border-radius: 4rem;
  }
}
.p-fa__custom-made {
  display: flex;
  flex-direction: column;
  gap: 5rem 0;
}
@media screen and (max-width: 767px) {
  .p-fa__custom-made {
    gap: 3rem 0;
  }
}
.p-fa__formation {
  display: flex;
  flex-direction: column;
  gap: 5rem 0;
  padding-top: 3.4rem;
}
@media screen and (max-width: 767px) {
  .p-fa__formation {
    gap: 3rem 0;
  }
}
.p-fa__menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 3rem;
  padding-top: 6rem;
}
@media screen and (max-width: 767px) {
  .p-fa__menu {
    grid-template-columns: repeat(1, 1fr);
    padding-top: 4rem;
  }
}

/* p-tech */
.p-tech__flow {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2.4rem;
  padding: 5rem;
  background-image: linear-gradient(to bottom right, #0062b9 0%, #7ec2ff 100%);
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .p-tech__flow {
    grid-template-columns: repeat(1, 1fr);
    gap: 3.6rem 0;
    padding: 2.4rem;
  }
}
.p-tech__flow__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 17rem;
  height: 33.1rem;
  padding: 3rem 1.6rem 2rem;
  border: 0.1rem solid #0062b9;
  background-color: #fff;
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .p-tech__flow__item {
    width: 100%;
    height: auto;
    padding: 2rem;
  }
}
.p-tech__flow__item:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -3rem;
  width: 2.6rem;
  height: 2rem;
  background-image: url("../img/business/fa/technique/arrow_flow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-tech__flow__item:after {
    top: auto;
    bottom: -2.8rem;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }
}
.p-tech__flow__item:last-child::after {
  display: none;
}
.p-tech__flow__item .flow-item__ttl {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 6.6rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
  color: #0062b9;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-tech__flow__item .flow-item__ttl {
    height: 5rem;
    font-size: 1.8rem;
  }
}
.p-tech__flow__item .flow-item__img {
  width: 8rem;
  margin: 0 auto;
}
.p-tech__flow__item .flow-item__list {
  font-size: 1.4rem;
}
.p-tech__strengths {
  padding-top: 12rem;
  display: flex;
  flex-direction: column;
  gap: 5rem 0;
}
@media screen and (max-width: 767px) {
  .p-tech__strengths {
    padding-top: 4rem;
    gap: 3rem 0;
  }
}
.p-tech__strengths__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .p-tech__strengths__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-tech__formation {
  padding-top: 12rem;
  display: flex;
  flex-direction: column;
  gap: 5rem 0;
}
@media screen and (max-width: 767px) {
  .p-tech__formation {
    padding-top: 4rem;
    gap: 3rem 0;
  }
}
.p-tech__formation__item .head {
  display: flex;
  flex-direction: column;
  gap: 2.6rem 0;
}
.p-tech__formation__item .p-col__box {
  gap: 2rem 0;
}
.p-tech__formation__item .imgs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.2rem;
}
@media screen and (max-width: 767px) {
  .p-tech__formation__item .imgs {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.2rem;
  }
}
.p-tech__formation__item .imgs img {
  border-radius: 1rem;
}
.p-tech__reasons {
  margin-top: 12rem;
  padding: 8.8rem 0 17.1rem;
  background-color: #e5eff8;
  border-radius: 8rem;
}
@media screen and (max-width: 767px) {
  .p-tech__reasons {
    padding: 4.4rem 0 8.6rem;
    margin-top: 4rem;
    border-radius: 4rem;
  }
}
.p-tech__reasons__inner {
  display: flex;
  flex-direction: column;
  gap: 5rem 0;
}
@media screen and (max-width: 767px) {
  .p-tech__reasons__inner {
    gap: 3rem 0;
  }
}
.p-tech__reasons__list {
  display: flex;
  flex-direction: column;
  gap: 8.8rem 0;
}
@media screen and (max-width: 767px) {
  .p-tech__reasons__list {
    gap: 4rem 0;
  }
}
.p-tech__reasons__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-tech__reasons__item {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1.6rem 0;
  }
}
.p-tech__reasons__item .reasons-item__head {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 6.1rem;
}
@media screen and (max-width: 767px) {
  .p-tech__reasons__item .reasons-item__head {
    gap: 0 2rem;
  }
}
.p-tech__reasons__item .reasons-item__num {
  font-size: 8rem;
  font-weight: 800;
  color: #e5eff8;
}
@media screen and (max-width: 767px) {
  .p-tech__reasons__item .reasons-item__num {
    font-size: 4rem;
  }
}
.p-tech__reasons__item .reasons-item__ttl {
  font-size: 2.6rem;
  color: #0062b9;
}
@media screen and (max-width: 767px) {
  .p-tech__reasons__item .reasons-item__ttl {
    font-size: 1.8rem;
  }
}
.p-tech__reasons__item .reasons-item__txt {
  width: 56rem;
}
@media screen and (max-width: 767px) {
  .p-tech__reasons__item .reasons-item__txt {
    width: 100%;
    font-size: 1.5rem;
  }
}

/* p-check */
.p-check__ttl {
  margin-bottom: 3rem;
  font-size: 2rem;
  color: #0062b9;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-check__ttl {
    font-size: 1.8rem;
  }
}
.p-check__txt {
  margin-bottom: 4.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-check__txt {
    font-size: 1.4rem;
  }
}
.p-check__confirm {
  padding: 4rem;
  background-color: #e5eff8;
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .p-check__confirm {
    padding: 2rem;
  }
}
.p-check__confirm__ttl {
  margin-bottom: 3rem;
  font-size: 2rem;
  font-weight: 700;
  color: #0062b9;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-check__confirm__ttl {
    font-size: 1.8rem;
  }
}
.p-check__confirm__btns {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem 2rem;
}
@media screen and (max-width: 767px) {
  .p-check__confirm__btns {
    flex-direction: column;
  }
}
.p-check__confirm__btns a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 17rem;
  height: 6rem;
  border: 0.1rem solid #0062b9;
  border-radius: 999.9rem;
  font-weight: 700;
  color: #0062b9;
}
@media screen and (max-width: 767px) {
  .p-check__confirm__btns a {
    width: 26rem;
  }
}

/* p-me */
.p-me__cancer-care {
  display: flex;
  flex-direction: column;
  gap: 5rem 0;
}
@media screen and (max-width: 767px) {
  .p-me__cancer-care {
    gap: 3rem 0;
  }
}
.p-me__strengths {
  padding-top: 12rem;
  display: flex;
  flex-direction: column;
  gap: 5rem 0;
}
@media screen and (max-width: 767px) {
  .p-me__strengths {
    gap: 3rem 0;
    padding-top: 4rem;
  }
}
.p-me__joint {
  margin-top: 12rem;
}
@media screen and (max-width: 767px) {
  .p-me__joint {
    margin-top: 4rem;
  }
}
.p-me__joint__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem 3rem;
  padding: 6rem;
  border-radius: 1rem;
  background-image: url("../img/business/me/bg_askirf-8.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .p-me__joint__inner {
    flex-direction: column;
    padding: 2rem;
    background-image: url("../img/home/bg_askirf-8_sp.png");
    background-size: cover;
  }
}
.p-me__joint__img {
  width: 48rem;
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .p-me__joint__img {
    width: 100%;
  }
}
.p-me__joint__box {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.2rem 0;
  padding: 3.6rem;
  background-color: #fff;
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .p-me__joint__box {
    padding: 2rem;
  }
}
.p-me__joint__copy {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  color: #0062b9;
}
@media screen and (max-width: 767px) {
  .p-me__joint__copy {
    font-size: 1.6rem;
  }
}
.p-me__joint__ttl {
  font-size: 2.6rem;
}
@media screen and (max-width: 767px) {
  .p-me__joint__ttl {
    font-size: 2rem;
  }
}
.p-me__joint__txt {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .p-me__joint__txt {
    font-size: 1.3rem;
  }
}
.p-me__box {
  margin-top: 12rem;
  padding: 6rem 0;
  background-color: #f7f7f7;
  border-radius: 8rem;
}
@media screen and (max-width: 767px) {
  .p-me__box {
    margin-top: 4rem;
    padding: 4rem 0;
    border-radius: 4rem;
  }
}
.p-me__intro {
  display: flex;
  flex-direction: column;
  gap: 5rem 0;
}
@media screen and (max-width: 767px) {
  .p-me__intro {
    gap: 3rem 0;
  }
}
.p-me__intro__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .p-me__intro__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-me__intro__item {
  display: flex;
  flex-direction: column;
  gap: 1.4rem 0;
}
.p-me__intro__item .intro-item__img {
  border-radius: 1rem;
}
.p-me__intro__item .intro-item__img img {
  border-radius: 1rem;
}
.p-me__intro__item .intro-item__txt {
  font-size: 1.4rem;
}
.p-me__intro__item:first-child .intro-item__img {
  background-image: linear-gradient(to right, rgba(217, 216, 219, 0.2) 0%, rgba(217, 216, 219, 0.2) 100%);
}
.p-me__case-study .c-ttl {
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .p-me__case-study .c-ttl {
    margin-bottom: 3rem;
  }
}
.p-me__case-study__related {
  width: 84rem;
  margin: 5rem auto 0;
  padding: 3rem;
  background-color: #fff;
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .p-me__case-study__related {
    width: calc(100% - 4.8rem);
  }
}
.p-me__case-study__related .ttl {
  margin-bottom: 1.4rem;
  font-size: 1.8rem;
  color: #0062b9;
  text-align: center;
}
.p-me__case-study__related .box {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 2rem 3rem;
}
@media screen and (max-width: 767px) {
  .p-me__case-study__related .box {
    flex-direction: column;
  }
}
.p-me__case-study__related .box__img {
  width: 28rem;
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .p-me__case-study__related .box__img {
    width: 100%;
  }
}
.p-me__case-study__related .box__head {
  flex: 1;
  padding-top: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-me__case-study__related .box__head {
    padding-top: 0;
  }
}
.p-me__case-study__related .box__head .link {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 0.5rem;
  margin-bottom: 1.3rem;
  font-size: 1.5rem;
  font-weight: 700;
}
.p-me__case-study__related .box__head .link img {
  width: 2rem;
}
.p-me__case-study__related .box__head .txt {
  font-size: 1.4rem;
}
.p-me__menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 3rem;
  padding-top: 6rem;
}
@media screen and (max-width: 767px) {
  .p-me__menu {
    grid-template-columns: repeat(1, 1fr);
    padding-top: 4rem;
  }
}

/* p-me-fee */
.p-me-fee__content {
  display: flex;
  flex-direction: column;
  gap: 3rem 0;
}
.p-me-fee__content section {
  display: flex;
  flex-direction: column;
  gap: 1.6rem 0;
}
.p-me-fee__content h3 {
  font-size: 1.6rem;
  color: #0062b9;
}
.p-me-fee__content ul {
  counter-reset: item;
  margin-left: 2.8rem;
}
.p-me-fee__content ul li {
  text-indent: -2.8rem;
}
.p-me-fee__content ul li:before {
  counter-increment: item;
  content: "(" counter(item) ") ";
}

/* p-case-study */
.p-case-study__box {
  display: flex;
  flex-direction: column;
  gap: 5rem 0;
}
@media screen and (max-width: 767px) {
  .p-case-study__box {
    gap: 3rem 0;
  }
}
.p-case-study__item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0 8rem;
  padding: 5rem 0;
  border-bottom: 0.1rem solid #b2d0ea;
}
@media screen and (max-width: 767px) {
  .p-case-study__item {
    flex-direction: column;
    padding: 3rem 0;
    gap: 2rem 0;
  }
}
.p-case-study__item:first-child {
  padding-top: 0;
}
.p-case-study__item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.p-case-study__item__img {
  width: 60rem;
  border-radius: 1rem;
}
.p-case-study__item__body {
  flex: 1;
}
.p-case-study__item__body .case-study-item__logo {
  margin-bottom: 3rem;
}
.p-case-study__item__body .case-study-item__info {
  display: flex;
  flex-direction: column;
  gap: 2rem 0;
  margin-bottom: 2rem;
}
.p-case-study__item__body .case-study-item__info__item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0 1rem;
}
.p-case-study__item__body .case-study-item__info__item .info-item__ttl {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 8rem;
  height: 3rem;
  border: 0.1rem solid #0062b9;
  border-radius: 999.9rem;
  font-weight: 700;
  color: #0062b9;
}
.p-case-study__item__body .case-study-item__info__item .info-item__txt {
  flex: 1;
}
.p-case-study__item__body .case-study-item__link {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 0.4rem;
}
.p-case-study__item__body .case-study-item__link__txt {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0062b9;
  text-decoration: underline;
}
.p-case-study__item__body .case-study-item__link__img {
  width: 2rem;
}

/* p-recruit */
.p-recruit__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 2rem;
}
@media screen and (max-width: 767px) {
  .p-recruit__list {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* p-askirf-8 */
.p-askirf-8__features .c-ttl {
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .p-askirf-8__features .c-ttl {
    margin-bottom: 3rem;
  }
}
.p-askirf-8__features__sec {
  padding-top: 8rem;
  display: flex;
  flex-direction: column;
  gap: 5rem 0;
}
@media screen and (max-width: 767px) {
  .p-askirf-8__features__sec {
    padding-top: 4rem;
    gap: 3rem 0;
  }
}
.p-askirf-8__features__sec:first-of-type {
  padding-top: 0;
}
.p-askirf-8__features__supply {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 2.4rem 5rem;
  margin-top: -2rem;
  padding: 5rem;
  background-color: #f7f7f7;
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .p-askirf-8__features__supply {
    flex-direction: column;
    margin-top: 0;
    padding: 2rem;
  }
}
.p-askirf-8__features__supply--center {
  align-items: center;
}
.p-askirf-8__features__supply .supply-body {
  flex: 1;
}
.p-askirf-8__features__supply .supply-ttl {
  margin-bottom: 1rem;
  font-size: 2rem;
  color: #0062b9;
}
@media screen and (max-width: 767px) {
  .p-askirf-8__features__supply .supply-ttl {
    font-size: 1.6rem;
  }
}
.p-askirf-8__features__supply .supply-txt {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .p-askirf-8__features__supply .supply-txt {
    font-size: 1.3rem;
  }
}
.p-askirf-8__features__supply .supply-note {
  margin-top: 2rem;
  font-size: 1.2rem;
  line-height: 1.5;
}
.p-askirf-8__features__supply .supply-img {
  width: 54rem;
  border-radius: 1rem;
}
.p-askirf-8__features__slider {
  margin-top: -2rem;
  padding: 5rem;
  background-color: #f7f7f7;
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .p-askirf-8__features__slider {
    margin-top: 0;
    padding: 2rem;
  }
}
.p-askirf-8__features__slider .slider-ttl {
  margin-bottom: 2rem;
  font-size: 2rem;
  color: #0062b9;
}
@media screen and (max-width: 767px) {
  .p-askirf-8__features__slider .slider-ttl {
    font-size: 1.6rem;
  }
}
.p-askirf-8__features__slider .slider-slide {
  width: 55rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-askirf-8__features__slider .slider-slide {
    width: 100%;
  }
}
.p-askirf-8__features__slider .slider-slide__img {
  border-radius: 1rem;
  width: 100%;
}
.p-askirf-8__features__slider .slider-slide__caption {
  margin-top: 1rem;
  font-size: 1.4rem;
  color: #0062b9;
}
@media screen and (max-width: 767px) {
  .p-askirf-8__features__slider .slider-slide__caption {
    font-size: 1.3rem;
  }
}
.p-askirf-8__features__slider .swiper-pagination {
  position: absolute;
  top: auto;
  left: auto;
  bottom: 0;
  right: 0;
  width: fit-content;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-askirf-8__features__slider .swiper-pagination {
    position: relative;
    bottom: auto;
    right: auto;
    margin: 0 auto;
  }
}
.p-askirf-8__features__slider .swiper-pagination .swiper-pagination-bullet {
  background-color: #d9d9d9;
  opacity: 1;
}
.p-askirf-8__features__slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #0062b9;
}
.p-askirf-8__features__design {
  margin-top: -2rem;
  padding: 5rem;
  background-color: #f7f7f7;
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .p-askirf-8__features__design {
    margin-top: 0;
    padding: 2rem;
  }
}
.p-askirf-8__features__design .design-ttl {
  margin-bottom: 2rem;
  font-size: 2rem;
  color: #0062b9;
}
@media screen and (max-width: 767px) {
  .p-askirf-8__features__design .design-ttl {
    font-size: 1.6rem;
  }
}
.p-askirf-8__features__design .design-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem 4.2rem;
}
@media screen and (max-width: 767px) {
  .p-askirf-8__features__design .design-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-askirf-8__features__design .design-item__img {
  width: 100%;
  border-radius: 1rem;
}
.p-askirf-8__features__design .design-item__caption {
  margin: 1rem 0 0.4rem;
  font-size: 1.2rem;
  color: #0062b9;
  text-align: center;
}
.p-askirf-8__features__design .design-item__ttl {
  margin: 0 0 1rem;
  font-size: 1.6rem;
  color: #0062b9;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-askirf-8__features__design .design-item__ttl {
    font-size: 1.5rem;
  }
}
.p-askirf-8__features__design .design-item__txt {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .p-askirf-8__features__design .design-item__txt {
    font-size: 1.3rem;
  }
}
.p-askirf-8__menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 3rem;
  padding-top: 6rem;
}
@media screen and (max-width: 767px) {
  .p-askirf-8__menu {
    padding-top: 4rem;
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-askirf-8__specs {
  padding-top: 12rem;
}
@media screen and (max-width: 767px) {
  .p-askirf-8__specs {
    padding-top: 4rem;
  }
}
.p-askirf-8__specs .c-ttl {
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .p-askirf-8__specs .c-ttl {
    margin-bottom: 3rem;
  }
}
.p-askirf-8__specs__tables {
  display: flex;
  flex-direction: column;
  gap: 3rem 0;
}
.p-askirf-8__specs__table {
  display: flex;
  flex-direction: column;
  gap: 1.4rem 0;
}
.p-askirf-8__specs__table .sec-ttl {
  font-size: 2rem;
  color: #0062b9;
}
@media screen and (max-width: 767px) {
  .p-askirf-8__specs__table .sec-ttl {
    font-size: 1.8rem;
  }
}
.p-askirf-8__specs__table .p-table th {
  width: 43rem;
}
@media screen and (max-width: 767px) {
  .p-askirf-8__specs__table .p-table th {
    width: 30rem;
  }
}
.p-askirf-8__specs__size {
  display: flex;
  flex-direction: column;
  gap: 5rem 0;
  padding-top: 8rem;
}
@media screen and (max-width: 767px) {
  .p-askirf-8__specs__size {
    gap: 3rem 0;
    padding-top: 4rem;
  }
}
.p-askirf-8__specs__size .p-table02 th {
  width: 24.5rem;
}
.p-askirf-8__specs__size .size-img {
  width: 86rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-askirf-8__specs__size .size-img {
    width: 100%;
  }
}
.p-askirf-8__specs__fig {
  display: flex;
  flex-direction: column;
  gap: 5rem 0;
  padding-top: 8rem;
}
@media screen and (max-width: 767px) {
  .p-askirf-8__specs__fig {
    gap: 3rem 0;
    padding-top: 4rem;
  }
}
.p-askirf-8__specs__fig .fig-img {
  width: 62.5rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-askirf-8__specs__fig .fig-img {
    width: 100%;
  }
}

/* p-contacts */
@media screen and (max-width: 767px) {
  .p-contacts__txt {
    font-size: 1.4rem;
  }
}
.p-contacts__tel {
  display: flex;
  flex-direction: column;
  gap: 5rem 0;
  padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-contacts__tel {
    gap: 3rem 0;
  }
}
.p-contacts__tel__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .p-contacts__tel__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-contacts__tel__item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem 0;
  padding: 3rem;
  background-color: #e5eff8;
  border-radius: 1rem;
  text-align: center;
  color: #0062b9;
}
.p-contacts__tel__item .item-txt {
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-contacts__tel__item .item-txt {
    font-size: 1.6rem;
  }
}
.p-contacts__tel__item .item-num {
  font-family: "Outfit", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #0062b9;
}
@media screen and (max-width: 767px) {
  .p-contacts__tel__item .item-num {
    font-size: 2.4rem;
  }
}
.p-contacts__tel__item .item-note {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .p-contacts__tel__item .item-note {
    font-size: 1.3rem;
  }
}
.p-contacts__form {
  display: flex;
  flex-direction: column;
  gap: 5rem 0;
  padding-top: 8rem;
}
@media screen and (max-width: 767px) {
  .p-contacts__form {
    gap: 3rem 0;
    padding-top: 4rem;
  }
}

.p-contacts-confirms .p-form__head {
  padding-top: 0;
}

.p-contacts-completes__ttl {
  margin-bottom: 3rem;
  font-size: 2rem;
  color: #0062b9;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contacts-completes__ttl {
    font-size: 1.8rem;
  }
}
.p-contacts-completes__txt {
  text-align: center;
}
.p-contacts-completes .c-btn {
  margin-top: 6.1rem !important;
}
@media screen and (max-width: 767px) {
  .p-contacts-completes .c-btn {
    margin-top: 4rem !important;
  }
}

/* adjust */
.p-emanon {
  font-size: 16px;
  color: #333;
}
.p-emanon .l-inner {
  max-width: 1240px;
  padding: 0 16px;
}
.p-emanon .has-normal-font-size {
  font-size: 16px;
}
.p-emanon .epb-box__headline {
  margin-bottom: 0;
  margin-top: 0;
  overflow-wrap: break-word;
  padding: 8px;
  position: relative;
}
.p-emanon .article-body {
  margin-top: 40px;
}
.p-emanon .article-body img {
  display: inline;
}
.p-emanon .article-body > *:not([class*=epb-spacer]):not([class*=epb-container-box]):not(:first-child):not(.product) {
  margin-top: 40px;
}
.p-emanon .wp-block-heading {
  margin-bottom: 20px;
}
.p-emanon .wp-block-table {
  overflow-x: auto;
}
.p-emanon .wp-block-table thead {
  border-bottom: 3px solid;
}
.p-emanon .wp-block-table tfoot {
  border-top: 3px solid;
}
.p-emanon .wp-block-table .has-fixed-layout td,
.p-emanon .wp-block-table .has-fixed-layout th {
  word-break: break-word;
}
.p-emanon .wp-block-table td,
.p-emanon .wp-block-table th,
.p-emanon .wp-block-table tr {
  border-color: #b8bcc0;
}
.p-emanon .wp-block-table td,
.p-emanon .wp-block-table th {
  border: 1px solid;
  padding: 0.5em;
}
.p-emanon table thead th {
  padding: 8px 12px;
  background-color: #fafafa;
  font-weight: bold;
}
.p-emanon .wp-block-table .has-fixed-layout {
  table-layout: fixed;
  width: 100%;
}
.p-emanon .article-body table {
  width: 100%;
}
.p-emanon .wp-block-table table {
  border-collapse: collapse;
  width: 100%;
}
.p-emanon table {
  border-collapse: collapse;
  border-spacing: 0;
}
.p-emanon .wp-block-image figcaption,
.p-emanon .wp-block-video figcaption,
.p-emanon .wp-block-table figcaption {
  margin-top: 4px;
  margin-bottom: 8px;
  text-align: center;
  font-size: 12px;
  color: #484848;
}
.p-emanon .epb-l-content__main {
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.p-emanon .epb-l-content__main > :first-child {
  margin-top: 0;
}
.p-emanon .epb-l-content__main > * {
  margin-top: 40px;
}
.p-emanon .epb-l-content__main:after {
  clear: both;
  content: "";
  display: block;
}
.p-emanon .epb-background {
  position: relative;
}
@media screen and (max-width: 599px) {
  .p-emanon .epb-background {
    overflow-x: hidden;
  }
}
.p-emanon .epb-background:not(.alignwide):not(.alignfull) {
  margin-left: auto;
  margin-right: auto;
  width: var(--epb-block-width-sp);
}
@media screen and (min-width: 600px) {
  .p-emanon .epb-background:not(.alignwide):not(.alignfull) {
    width: var(--epb-block-width-tablet);
  }
}
@media screen and (min-width: 960px) {
  .p-emanon .epb-background:not(.alignwide):not(.alignfull) {
    width: var(--epb-block-width-pc);
  }
}
.p-emanon .epb-background__wrapper {
  margin: calc(var(--epb-content-margin-top) * -1) calc(var(--epb-content-margin-right) * -1) calc(var(--epb-content-margin-bottom) * -1) calc(var(--epb-content-margin-left) * -1);
  position: relative;
}
.p-emanon .epb-background__wrapper.is-style-epb-fixed-radius__0.is-style-epb-fixed-radius__up-bottom {
  border-radius: 0;
}
.p-emanon .epb-background__wrapper.is-style-epb-fixed-radius__3.is-style-epb-fixed-radius__up-bottom {
  border-radius: 3px;
}
.p-emanon .epb-background__wrapper.is-style-epb-fixed-radius__10.is-style-epb-fixed-radius__up-bottom {
  border-radius: 10px;
}
.p-emanon .epb-background__wrapper.is-style-epb-fixed-radius__25.is-style-epb-fixed-radius__up-bottom {
  border-radius: 25px;
}
.p-emanon .epb-background__wrapper.is-style-epb-fixed-radius__30.is-style-epb-fixed-radius__up-bottom {
  border-radius: 30px;
}
.p-emanon .epb-background__wrapper.is-style-epb-fixed-radius__40.is-style-epb-fixed-radius__up-bottom {
  border-radius: 40px;
}
.p-emanon .epb-background__wrapper.is-style-epb-fixed-radius__50.is-style-epb-fixed-radius__up-bottom {
  border-radius: 50px;
}
.p-emanon .epb-background__wrapper.is-style-epb-fixed-radius__60.is-style-epb-fixed-radius__up-bottom {
  border-radius: 60px;
}
.p-emanon .epb-background__wrapper.is-style-epb-fixed-radius__3.is-style-epb-fixed-radius__up {
  border-radius: 3px 3px 0 0;
}
.p-emanon .epb-background__wrapper.is-style-epb-fixed-radius__10.is-style-epb-fixed-radius__up {
  border-radius: 10px 10px 0 0;
}
.p-emanon .epb-background__wrapper.is-style-epb-fixed-radius__25.is-style-epb-fixed-radius__up {
  border-radius: 25px 25px 0 0;
}
.p-emanon .epb-background__wrapper.is-style-epb-fixed-radius__30.is-style-epb-fixed-radius__up {
  border-radius: 30px 30px 0 0;
}
.p-emanon .epb-background__wrapper.is-style-epb-fixed-radius__40.is-style-epb-fixed-radius__up {
  border-radius: 40px 40px 0 0;
}
.p-emanon .epb-background__wrapper.is-style-epb-fixed-radius__50.is-style-epb-fixed-radius__up {
  border-radius: 50px 50px 0 0;
}
.p-emanon .epb-background__wrapper.is-style-epb-fixed-radius__60.is-style-epb-fixed-radius__up {
  border-radius: 60px 60px 0 0;
}
.p-emanon .epb-background__wrapper.is-style-epb-fixed-radius__3.is-style-epb-fixed-radius__bottom {
  border-radius: 0 0 3px 3px;
}
.p-emanon .epb-background__wrapper.is-style-epb-fixed-radius__10.is-style-epb-fixed-radius__bottom {
  border-radius: 0 0 10px 10px;
}
.p-emanon .epb-background__wrapper.is-style-epb-fixed-radius__25.is-style-epb-fixed-radius__bottom {
  border-radius: 0 0 25px 25px;
}
.p-emanon .epb-background__wrapper.is-style-epb-fixed-radius__30.is-style-epb-fixed-radius__bottom {
  border-radius: 0 0 30px 30px;
}
.p-emanon .epb-background__wrapper.is-style-epb-fixed-radius__40.is-style-epb-fixed-radius__bottom {
  border-radius: 0 0 40px 40px;
}
.p-emanon .epb-background__wrapper.is-style-epb-fixed-radius__50.is-style-epb-fixed-radius__bottom {
  border-radius: 0 0 50px 50px;
}
.p-emanon .epb-background__wrapper.is-style-epb-fixed-radius__60.is-style-epb-fixed-radius__bottom {
  border-radius: 0 0 60px 60px;
}
.p-emanon .epb-background__wrapper.is-style-epb-fixed-radius__0.is-style-epb-fixed-radius__up-bottom .epb-background__image img {
  border-radius: 0;
}
.p-emanon .epb-background__wrapper.is-style-epb-fixed-radius__3.is-style-epb-fixed-radius__up-bottom .epb-background__image img {
  border-radius: 3px;
}
.p-emanon .epb-background__wrapper.is-style-epb-fixed-radius__10.is-style-epb-fixed-radius__up-bottom .epb-background__image img {
  border-radius: 10px;
}
.p-emanon .epb-background__wrapper.is-style-epb-fixed-radius__25.is-style-epb-fixed-radius__up-bottom .epb-background__image img {
  border-radius: 25px;
}
.p-emanon .epb-background__wrapper.is-style-epb-fixed-radius__30.is-style-epb-fixed-radius__up-bottom .epb-background__image img {
  border-radius: 30px;
}
.p-emanon .epb-background__wrapper.is-style-epb-fixed-radius__40.is-style-epb-fixed-radius__up-bottom .epb-background__image img {
  border-radius: 40px;
}
.p-emanon .epb-background__wrapper.is-style-epb-fixed-radius__50.is-style-epb-fixed-radius__up-bottom .epb-background__image img {
  border-radius: 50px;
}
.p-emanon .epb-background__wrapper.is-style-epb-fixed-radius__60.is-style-epb-fixed-radius__up-bottom .epb-background__image img {
  border-radius: 60px;
}
.p-emanon .epb-background__wrapper.is-style-epb-fixed-radius__3.is-style-epb-fixed-radius__up .epb-background__image img {
  border-radius: 3px 3px 0 0;
}
.p-emanon .epb-background__wrapper.is-style-epb-fixed-radius__10.is-style-epb-fixed-radius__up .epb-background__image img {
  border-radius: 10px 10px 0 0;
}
.p-emanon .epb-background__wrapper.is-style-epb-fixed-radius__25.is-style-epb-fixed-radius__up .epb-background__image img {
  border-radius: 25px 25px 0 0;
}
.p-emanon .epb-background__wrapper.is-style-epb-fixed-radius__30.is-style-epb-fixed-radius__up .epb-background__image img {
  border-radius: 30px 30px 0 0;
}
.p-emanon .epb-background__wrapper.is-style-epb-fixed-radius__40.is-style-epb-fixed-radius__up .epb-background__image img {
  border-radius: 40px 40px 0 0;
}
.p-emanon .epb-background__wrapper.is-style-epb-fixed-radius__50.is-style-epb-fixed-radius__up .epb-background__image img {
  border-radius: 50px 50px 0 0;
}
.p-emanon .epb-background__wrapper.is-style-epb-fixed-radius__60.is-style-epb-fixed-radius__up .epb-background__image img {
  border-radius: 60px 60px 0 0;
}
.p-emanon .epb-background__wrapper.is-style-epb-fixed-radius__3.is-style-epb-fixed-radius__bottom .epb-background__image img {
  border-radius: 0 0 3px 3px;
}
.p-emanon .epb-background__wrapper.is-style-epb-fixed-radius__10.is-style-epb-fixed-radius__bottom .epb-background__image img {
  border-radius: 0 0 10px 10px;
}
.p-emanon .epb-background__wrapper.is-style-epb-fixed-radius__25.is-style-epb-fixed-radius__bottom .epb-background__image img {
  border-radius: 0 0 25px 25px;
}
.p-emanon .epb-background__wrapper.is-style-epb-fixed-radius__30.is-style-epb-fixed-radius__bottom .epb-background__image img {
  border-radius: 0 0 30px 30px;
}
.p-emanon .epb-background__wrapper.is-style-epb-fixed-radius__40.is-style-epb-fixed-radius__bottom .epb-background__image img {
  border-radius: 0 0 40px 40px;
}
.p-emanon .epb-background__wrapper.is-style-epb-fixed-radius__50.is-style-epb-fixed-radius__bottom .epb-background__image img {
  border-radius: 0 0 50px 50px;
}
.p-emanon .epb-background__wrapper.is-style-epb-fixed-radius__60.is-style-epb-fixed-radius__bottom .epb-background__image img {
  border-radius: 0 0 60px 60px;
}
.p-emanon .epb-background__section.is-style-epb-flow-radius__0.is-style-epb-flow-radius__up-bottom {
  border-radius: 0;
}
.p-emanon .epb-background__section.is-style-epb-flow-radius__3.is-style-epb-flow-radius__up-bottom {
  border-radius: 3px;
}
.p-emanon .epb-background__section.is-style-epb-flow-radius__10.is-style-epb-flow-radius__up-bottom {
  border-radius: 10px;
}
.p-emanon .epb-background__section.is-style-epb-flow-radius__25.is-style-epb-flow-radius__up-bottom {
  border-radius: 25px;
}
.p-emanon .epb-background__section.is-style-epb-flow-radius__30.is-style-epb-flow-radius__up-bottom {
  border-radius: 30px;
}
.p-emanon .epb-background__section.is-style-epb-flow-radius__40.is-style-epb-flow-radius__up-bottom {
  border-radius: 40px;
}
.p-emanon .epb-background__section.is-style-epb-flow-radius__50.is-style-epb-flow-radius__up-bottom {
  border-radius: 50px;
}
.p-emanon .epb-background__section.is-style-epb-flow-radius__60.is-style-epb-flow-radius__up-bottom {
  border-radius: 60px;
}
.p-emanon .epb-background__section.is-style-epb-flow-radius__3.is-style-epb-flow-radius__up {
  border-radius: 3px 3px 0 0;
}
.p-emanon .epb-background__section.is-style-epb-flow-radius__10.is-style-epb-flow-radius__up {
  border-radius: 10px 10px 0 0;
}
.p-emanon .epb-background__section.is-style-epb-flow-radius__25.is-style-epb-flow-radius__up {
  border-radius: 25px 25px 0 0;
}
.p-emanon .epb-background__section.is-style-epb-flow-radius__30.is-style-epb-flow-radius__up {
  border-radius: 30px 30px 0 0;
}
.p-emanon .epb-background__section.is-style-epb-flow-radius__40.is-style-epb-flow-radius__up {
  border-radius: 40px 40px 0 0;
}
.p-emanon .epb-background__section.is-style-epb-flow-radius__50.is-style-epb-flow-radius__up {
  border-radius: 50px 50px 0 0;
}
.p-emanon .epb-background__section.is-style-epb-flow-radius__60.is-style-epb-flow-radius__up {
  border-radius: 60px 60px 0 0;
}
.p-emanon .epb-background__section.is-style-epb-flow-radius__3.is-style-epb-flow-radius__bottom {
  border-radius: 0 0 3px 3px;
}
.p-emanon .epb-background__section.is-style-epb-flow-radius__10.is-style-epb-flow-radius__bottom {
  border-radius: 0 0 10px 10px;
}
.p-emanon .epb-background__section.is-style-epb-flow-radius__25.is-style-epb-flow-radius__bottom {
  border-radius: 0 0 25px 25px;
}
.p-emanon .epb-background__section.is-style-epb-flow-radius__30.is-style-epb-flow-radius__bottom {
  border-radius: 0 0 30px 30px;
}
.p-emanon .epb-background__section.is-style-epb-flow-radius__40.is-style-epb-flow-radius__bottom {
  border-radius: 0 0 40px 40px;
}
.p-emanon .epb-background__section.is-style-epb-flow-radius__50.is-style-epb-flow-radius__bottom {
  border-radius: 0 0 50px 50px;
}
.p-emanon .epb-background__section.is-style-epb-flow-radius__60.is-style-epb-flow-radius__bottom {
  border-radius: 0 0 60px 60px;
}
.p-emanon .epb-background__section {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(var(--epb-flow-horizontal), var(--epb-flow-vertical));
}
.p-emanon .epb-background__section.is-style-epb-flow-zindex-1 {
  z-index: 1;
}
.p-emanon .epb-background.is-style-epb-custom-content .epb-l-content__main {
  max-width: 100%;
  position: relative;
  width: var(--epb-content-width, 1180px);
  z-index: 1;
}
@media screen and (min-width: 960px) {
  .p-emanon .home.page .one-col .epb-background:not(.is-style-epb-custom-content) .epb-l-content__main,
  .p-emanon .home.page .widget_block .epb-background:not(.is-style-epb-custom-content) .epb-l-content__main {
    max-width: var(--ep-one-col-content-width-front-page, 1180px);
  }
  .p-emanon .page .one-col .epb-background:not(.is-style-epb-custom-content) .epb-l-content__main {
    max-width: var(--ep-one-col-content-width, 1180px);
  }
  .p-emanon .single .one-col .epb-background:not(.is-style-epb-custom-content) .epb-l-content__main {
    max-width: var(--ep-one-col-content-width-post, 1180px);
  }
  .p-emanon .single-sales .one-col .epb-background:not(.is-style-epb-custom-content) .epb-l-content__main {
    max-width: var(--ep-one-col-content-width-sales, 1180px);
  }
  .p-emanon .archive .one-col .epb-background:not(.is-style-epb-custom-content) .epb-l-content__main {
    max-width: var(--ep-one-col-content-width-archive, 1180px);
  }
}
.p-emanon .epb-padding-top-sp__0 {
  padding-top: 0;
}
.p-emanon .epb-padding-top-sp__8 {
  padding-top: 8px;
}
.p-emanon .epb-padding-top-sp__16 {
  padding-top: 16px;
}
.p-emanon .epb-padding-top-sp__32 {
  padding-top: 32px;
}
.p-emanon .epb-padding-top-sp__48 {
  padding-top: 48px;
}
.p-emanon .epb-padding-top-sp__64 {
  padding-top: 64px;
}
.p-emanon .epb-padding-bottom-sp__0 {
  padding-bottom: 0;
}
.p-emanon .epb-padding-bottom-sp__8 {
  padding-bottom: 8px;
}
.p-emanon .epb-padding-bottom-sp__16 {
  padding-bottom: 16px;
}
.p-emanon .epb-padding-bottom-sp__32 {
  padding-bottom: 32px;
}
.p-emanon .epb-padding-bottom-sp__48 {
  padding-bottom: 48px;
}
.p-emanon .epb-padding-bottom-sp__64 {
  padding-bottom: 64px;
}
.p-emanon .epb-padding-left-sp__0 {
  padding-left: 0;
}
.p-emanon .epb-padding-left-sp__8 {
  padding-left: 8px;
}
.p-emanon .epb-padding-left-sp__16 {
  padding-left: 16px;
}
.p-emanon .epb-padding-left-sp__32 {
  padding-left: 32px;
}
.p-emanon .epb-padding-left-sp__48 {
  padding-left: 48px;
}
.p-emanon .epb-padding-left-sp__64 {
  padding-left: 64px;
}
.p-emanon .epb-padding-right-sp__0 {
  padding-right: 0;
}
.p-emanon .epb-padding-right-sp__8 {
  padding-right: 8px;
}
.p-emanon .epb-padding-right-sp__16 {
  padding-right: 16px;
}
.p-emanon .epb-padding-right-sp__32 {
  padding-right: 32px;
}
.p-emanon .epb-padding-right-sp__48 {
  padding-right: 48px;
}
.p-emanon .epb-padding-right-sp__64 {
  padding-right: 64px;
}
@media screen and (min-width: 600px) {
  .p-emanon .epb-padding-top-pc__0 {
    padding-top: 0;
  }
  .p-emanon .epb-padding-top-pc__8 {
    padding-top: 8px;
  }
  .p-emanon .epb-padding-top-pc__16 {
    padding-top: 16px;
  }
  .p-emanon .epb-padding-top-pc__32 {
    padding-top: 32px;
  }
  .p-emanon .epb-padding-top-pc__48 {
    padding-top: 48px;
  }
  .p-emanon .epb-padding-top-pc__64 {
    padding-top: 64px;
  }
  .p-emanon .epb-padding-bottom-pc__0 {
    padding-bottom: 0;
  }
  .p-emanon .epb-padding-bottom-pc__8 {
    padding-bottom: 8px;
  }
  .p-emanon .epb-padding-bottom-pc__16 {
    padding-bottom: 16px;
  }
  .p-emanon .epb-padding-bottom-pc__32 {
    padding-bottom: 32px;
  }
  .p-emanon .epb-padding-bottom-pc__48 {
    padding-bottom: 48px;
  }
  .p-emanon .epb-padding-bottom-pc__64 {
    padding-bottom: 64px;
  }
  .p-emanon .epb-padding-left-pc__0 {
    padding-left: 0;
  }
  .p-emanon .epb-padding-left-pc__8 {
    padding-left: 8px;
  }
  .p-emanon .epb-padding-left-pc__16 {
    padding-left: 16px;
  }
  .p-emanon .epb-padding-left-pc__32 {
    padding-left: 32px;
  }
  .p-emanon .epb-padding-left-pc__48 {
    padding-left: 48px;
  }
  .p-emanon .epb-padding-left-pc__64 {
    padding-left: 64px;
  }
  .p-emanon .epb-padding-right-pc__0 {
    padding-right: 0;
  }
  .p-emanon .epb-padding-right-pc__8 {
    padding-right: 8px;
  }
  .p-emanon .epb-padding-right-pc__16 {
    padding-right: 16px;
  }
  .p-emanon .epb-padding-right-pc__32 {
    padding-right: 32px;
  }
  .p-emanon .epb-padding-right-pc__48 {
    padding-right: 48px;
  }
  .p-emanon .epb-padding-right-pc__64 {
    padding-right: 64px;
  }
}
.p-emanon .epb-background__image {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.p-emanon .epb-background__image img {
  height: 100%;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
  width: 100%;
}
.p-emanon .epb-inner-setting-advanced .epb-background__inner {
  padding: var(--epb-padding-top-sp) var(--epb-padding-r-sp) var(--epb-padding-bottom-sp) var(--epb-padding-l-sp);
}
@media screen and (min-width: 600px) {
  .p-emanon .epb-inner-setting-advanced .epb-background__inner {
    padding: var(--epb-padding-top-tablet) var(--epb-padding-r-tablet) var(--epb-padding-bottom-tablet) var(--epb-padding-l-tablet);
  }
}
@media screen and (min-width: 960px) {
  .p-emanon .epb-inner-setting-advanced .epb-background__inner {
    padding: var(--epb-padding-top-pc) var(--epb-padding-r-pc) var(--epb-padding-bottom-pc) var(--epb-padding-l-pc);
  }
}
.p-emanon .epb-buttons {
  align-items: center;
  -moz-column-gap: 24px;
  column-gap: 24px;
  display: flex;
  flex-wrap: wrap;
  row-gap: 24px;
}
.p-emanon .epb-buttons.epb-alignment-left {
  justify-content: flex-start;
}
.p-emanon .epb-buttons.epb-alignment-center {
  justify-content: center;
}
.p-emanon .epb-buttons.epb-alignment-right {
  justify-content: flex-end;
}
.p-emanon .epb-buttons.is-style-epb-vertical {
  flex-direction: column;
}
.p-emanon .epb-buttons.epb-alignment-left.is-style-epb-vertical {
  align-items: flex-start;
}
.p-emanon .epb-buttons.epb-alignment-center.is-style-epb-vertical {
  align-items: center;
}
.p-emanon .epb-buttons.epb-alignment-right.is-style-epb-vertical {
  align-items: flex-end;
}
.p-emanon .epb-buttons > .epb-button {
  flex: 0 1 auto;
}
.p-emanon .epb-buttons > .epb-button[data-button-size=full] {
  flex: 1 1 auto;
}
.p-emanon .epb-button {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
}
.p-emanon .epb-button.epb-alignment-right {
  justify-content: flex-end;
}
.p-emanon .epb-button.epb-alignment-center {
  justify-content: center;
}
.p-emanon .epb-button.epb-alignment-left {
  justify-content: flex-start;
}
.p-emanon .epb-button .epb-btn-text[data-fontweight=normal],
.p-emanon .epb-button .epb-microcopy-bottom[data-fontweight=normal],
.p-emanon .epb-button .epb-microcopy-top[data-fontweight=normal] {
  font-weight: 400;
}
.p-emanon .epb-button .epb-btn-text[data-fontweight=bold],
.p-emanon .epb-button .epb-microcopy-bottom[data-fontweight=bold],
.p-emanon .epb-button .epb-microcopy-top[data-fontweight=bold] {
  font-weight: 700;
}
.p-emanon .epb-button .epb-btn-text {
  overflow-wrap: break-word;
}
.p-emanon .epb-button .epb-microcopy-bottom,
.p-emanon .epb-button .epb-microcopy-top {
  display: block;
  overflow-wrap: break-word;
  text-align: center;
}
.p-emanon .epb-button .epb-microcopy-top {
  font-size: var(--epb-microcopy-top-font-pc);
}
.p-emanon .epb-button .epb-microcopy-bottom {
  font-size: var(--epb-microcopy-bottom-font-pc);
}
.p-emanon .epb-button .epb-has-microcopy-top-mobile-font .epb-microcopy-top {
  font-size: var(--epb-microcopy-top-font-sp);
}
.p-emanon .epb-button .epb-has-microcopy-bottom-mobile-font .epb-microcopy-bottom {
  font-size: var(--epb-microcopy-bottom-font-sp);
}
@media screen and (min-width: 600px) {
  .p-emanon .epb-button .epb-has-microcopy-top-mobile-font .epb-microcopy-top {
    font-size: var(--epb-microcopy-top-font-tablet);
  }
  .p-emanon .epb-button .epb-has-microcopy-bottom-mobile-font .epb-microcopy-bottom {
    font-size: var(--epb-microcopy-bottom-font-tablet);
  }
}
@media screen and (min-width: 960px) {
  .p-emanon .epb-button .epb-has-microcopy-top-mobile-font .epb-microcopy-top {
    font-size: var(--epb-microcopy-top-font-pc);
  }
  .p-emanon .epb-button .epb-has-microcopy-bottom-mobile-font .epb-microcopy-bottom {
    font-size: var(--epb-microcopy-bottom-font-pc);
  }
}
.p-emanon .epb-button .epb-microcopy-top {
  margin-bottom: 4px;
}
.p-emanon .epb-button .epb-microcopy-bottom {
  margin-top: 4px;
}
.p-emanon .epb-btn {
  background-color: var(--epb-button-bg-color);
  border-color: var(--epb-button-border-color);
  color: var(--epb-button-text-color);
  cursor: pointer;
  display: inline-block;
  line-height: 1.5;
  max-width: 100%;
  padding-bottom: 6px;
  padding-top: 6px;
  position: relative;
  text-align: center;
  text-decoration: none !important;
  transition: all 0.3s ease;
  vertical-align: bottom;
}
.p-emanon .epb-btn-text {
  font-size: var(--epb-button-text-font-pc);
}
.p-emanon .epb-btn-text a {
  color: var(--epb-button-text-color);
}
.p-emanon .epb-has-button-text-mobile-font .epb-btn-text {
  font-size: var(--epb-button-text-font-sp);
}
@media screen and (min-width: 600px) {
  .p-emanon .epb-has-button-text-mobile-font .epb-btn-text {
    font-size: var(--epb-button-text-font-tablet);
  }
}
@media screen and (min-width: 960px) {
  .p-emanon .epb-has-button-text-mobile-font .epb-btn-text {
    font-size: var(--epb-button-text-font-pc);
  }
}
.p-emanon .epb-btn:hover {
  color: var(--epb-button-text-color);
  text-decoration: none !important;
}
.p-emanon .epb-has-hover-color .epb-btn:hover {
  background-color: var(--epb-button-bg-hover-color);
  border-color: var(--epb-button-border-hover-color);
  text-decoration: none !important;
}
.p-emanon .epb-has-hover-color .epb-btn:hover,
.p-emanon .epb-has-hover-color .epb-btn:hover .epb-btn-text a {
  color: var(--epb-button-text-hover-color);
}
.p-emanon .epb-button .epb-btn-size__full {
  width: 100%;
}
.p-emanon .epb-btn-size__full .epb-btn {
  padding-left: 32px;
  padding-right: 32px;
  width: 100%;
}
@media screen and (max-width: 599px) {
  .p-emanon .epb-btn-size__xlg .epb-btn {
    padding-left: 84px;
    padding-right: 84px;
  }
  .p-emanon .epb-btn-size__lg .epb-btn {
    padding-left: 52px;
    padding-right: 52px;
  }
  .p-emanon .epb-btn-size__m .epb-btn {
    padding-left: 32px;
    padding-right: 32px;
  }
  .p-emanon .epb-btn-size__sm .epb-btn {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (min-width: 600px) {
  .p-emanon .epb-btn-size__xlg .epb-btn {
    padding-left: 136px;
    padding-right: 136px;
  }
  .p-emanon .epb-btn-size__lg .epb-btn {
    padding-left: 84px;
    padding-right: 84px;
  }
  .p-emanon .epb-btn-size__m .epb-btn {
    padding-left: 52px;
    padding-right: 52px;
  }
  .p-emanon .epb-btn-size__sm .epb-btn {
    padding-left: 32px;
    padding-left: 20px;
    padding-right: 32px;
    padding-right: 20px;
  }
}
.p-emanon .epb-button-slanted {
  transform: skewX(-12deg);
}
.p-emanon .epb-btn [class*=icon-]:before,
.p-emanon .epb-btn [class^=icon-]:before {
  margin-right: 6px;
}
.p-emanon .epb-btn [class*=icon-]:after,
.p-emanon .epb-btn [class^=icon-]:after {
  margin-left: 6px;
}
.p-emanon .epb-btn .icon-read-arrow-left:before {
  display: inline-block;
  transition: all 0.2s ease;
}
.p-emanon .epb-btn:hover .icon-read-arrow-left:before {
  transform: translateX(-8px);
}
.p-emanon .epb-btn .icon-read-arrow-right-after:after {
  display: inline-block;
  transition: all 0.2s ease;
}
.p-emanon .epb-btn:hover .icon-read-arrow-right-after:after {
  transform: translateX(8px);
}
.p-emanon .epb-btn__outline {
  border-style: solid;
  border-width: var(--epb-button-border-size);
}
@keyframes epb-lustre {
  to {
    left: 60%;
  }
}
@keyframes epb-ripple {
  0% {
    opacity: 0.3;
  }
  30% {
    opacity: 0;
  }
  70% {
    opacity: 0;
  }
  to {
    opacity: 0.3;
  }
}
.p-emanon .epb-btn.is-style-epb-radius__0 {
  border-radius: 0;
}
.p-emanon .epb-btn.is-style-epb-radius__3 {
  border-radius: 3px;
}
.p-emanon .epb-btn.is-style-epb-radius__10 {
  border-radius: 10px;
}
.p-emanon .epb-btn.is-style-epb-radius__25 {
  border-radius: 25px;
}
.p-emanon .epb-btn.is-style-epb-hover__opacity:hover {
  opacity: 0.8;
}
.p-emanon .epb-btn.is-style-epb-hover__radius:hover {
  border-radius: 25px;
}
.p-emanon .epb-btn.is-style-epb-hover__shadow:hover {
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
}
.p-emanon .epb-btn.is-style-epb-hover__floating {
  backface-visibility: hidden;
}
.p-emanon .epb-btn.is-style-epb-hover__floating:hover {
  box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}
.p-emanon .epb-btn.is-style-epb-hover__falldown {
  backface-visibility: hidden;
}
.p-emanon .epb-btn.is-style-epb-hover__falldown:hover {
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(4px);
}
.p-emanon .epb-btn.is-style-epb-hover__lustre:hover:before {
  animation: epb-lustre 0.7s forwards;
}
.p-emanon .epb-btn.is-style-epb-hover__lustre {
  overflow: hidden;
}
.p-emanon .epb-btn.is-style-epb-hover__lustre:before {
  background-color: hsla(0, 0%, 98%, 0.2);
  content: "";
  height: 200%;
  left: -180%;
  position: absolute;
  top: -10%;
  transform: rotate(-45deg);
  width: 200%;
}
.p-emanon .epb-btn.is-style-epb-hover__lustre-infinite {
  overflow: hidden;
}
.p-emanon .epb-btn.is-style-epb-hover__lustre-infinite:before {
  animation: epb-lustre 0.9s infinite forwards;
  background-color: hsla(0, 0%, 98%, 0.2);
  content: "";
  height: 200%;
  left: -180%;
  position: absolute;
  top: -10%;
  transform: rotate(-45deg);
  width: 200%;
}
.p-emanon .epb-btn.is-style-epb-hover__enlarge:hover {
  transform: scale(1.06);
}
.p-emanon .epb-btn.is-style-epb-hover__reduce:hover {
  transform: scale(0.94);
}
.p-emanon .epb-btn.is-style-epb-hover__ripple-infinite .epb-btn-text {
  position: relative;
  z-index: 1;
}
.p-emanon .epb-btn.is-style-epb-hover__ripple-infinite:before {
  animation: epb-ripple 2s linear infinite;
  background-color: var(--epb-button-bg-color);
  bottom: -20%;
  content: "";
  height: 140%;
  left: -5%;
  position: absolute;
  width: 110%;
}
.p-emanon .epb-btn.is-style-epb-radius__0.is-style-epb-hover__ripple-infinite:before {
  border-radius: 0;
}
.p-emanon .epb-btn.is-style-epb-radius__3.is-style-epb-hover__ripple-infinite:before {
  border-radius: 3px;
}
.p-emanon .epb-btn.is-style-epb-radius__10.is-style-epb-hover__ripple-infinite:before {
  border-radius: 15px;
}
.p-emanon .epb-btn.is-style-epb-radius__25.is-style-epb-hover__ripple-infinite:before {
  border-radius: 50px;
}
.p-emanon .epb-btn.epb-btn__outline.is-style-epb-button__broken-background-lower-left,
.p-emanon .epb-btn.epb-btn__outline.is-style-epb-button__broken-background-right-upper {
  background-color: initial;
}
.p-emanon .epb-btn.is-style-epb-button__broken-background-right-upper:before {
  background-color: var(--epb-button-bg-color);
  content: "";
  height: calc(100% + 2px);
  position: absolute;
  right: -6px;
  top: -7px;
  transition: all 0.2s ease;
  width: calc(100% + 2px);
  z-index: -1;
}
.p-emanon .epb-btn.is-style-epb-button__broken-background-right-upper:hover:before {
  right: -1px;
  top: -1px;
}
.p-emanon .epb-has-hover-color .epb-btn.is-style-epb-button__broken-background-right-upper:hover:before {
  background-color: var(--epb-button-bg-hover-color);
}
.p-emanon .epb-btn.is-style-epb-button__broken-background-lower-left:before {
  background-color: var(--epb-button-bg-color);
  bottom: -7px;
  content: "";
  height: calc(100% + 2px);
  position: absolute;
  right: -6px;
  transition: all 0.2s ease;
  width: calc(100% + 2px);
  z-index: -1;
}
.p-emanon .epb-btn.is-style-epb-button__broken-background-lower-left:hover:before {
  bottom: -1px;
  right: -1px;
}
.p-emanon .epb-has-hover-color .epb-btn.is-style-epb-button__broken-background-lower-left:hover:before {
  background-color: var(--epb-button-bg-hover-color);
}
.p-emanon .epb-btn.epb-btn__outline.is-style-epb-button__broken-border-lower-left,
.p-emanon .epb-btn.epb-btn__outline.is-style-epb-button__broken-border-right-upper {
  border-width: 0;
}
.p-emanon .epb-btn.is-style-epb-button__broken-border-right-upper:before {
  border-color: var(--epb-button-border-color);
  border-style: solid;
  border-width: var(--epb-button-border-size);
  content: "";
  height: calc(100% + 2px);
  position: absolute;
  right: -6px;
  top: -6px;
  transition: all 0.2s ease;
  width: calc(100% + 2px);
}
.p-emanon .epb-btn.is-style-epb-button__broken-border-right-upper:hover:before {
  right: -1px;
  top: -1px;
}
.p-emanon .epb-has-hover-color .epb-btn.is-style-epb-button__broken-border-right-upper:hover:before {
  border-color: var(--epb-button-border-hover-color);
}
.p-emanon .epb-btn.is-style-epb-button__broken-border-lower-left:before {
  border-color: var(--epb-button-border-color);
  border-style: solid;
  border-width: var(--epb-button-border-size);
  bottom: -6px;
  content: "";
  height: calc(100% + 2px);
  position: absolute;
  right: -6px;
  transition: all 0.2s ease;
  width: calc(100% + 2px);
}
.p-emanon .epb-btn.is-style-epb-button__broken-border-lower-left:hover:before {
  bottom: -1px;
  right: -1px;
}
.p-emanon .epb-has-hover-color .epb-btn.is-style-epb-button__broken-border-lower-left:hover:before {
  border-color: var(--epb-button-border-hover-color);
}
.p-emanon .epb-btn.is-style-epb-radius__0.is-style-epb-button__broken-background-lower-left:before,
.p-emanon .epb-btn.is-style-epb-radius__0.is-style-epb-button__broken-background-right-upper:before,
.p-emanon .epb-btn.is-style-epb-radius__0.is-style-epb-button__broken-border-lower-left:before,
.p-emanon .epb-btn.is-style-epb-radius__0.is-style-epb-button__broken-border-right-upper:before {
  border-radius: 0;
}
.p-emanon .epb-btn.is-style-epb-radius__3.is-style-epb-button__broken-background-lower-left:before,
.p-emanon .epb-btn.is-style-epb-radius__3.is-style-epb-button__broken-background-right-upper:before,
.p-emanon .epb-btn.is-style-epb-radius__3.is-style-epb-button__broken-border-lower-left:before,
.p-emanon .epb-btn.is-style-epb-radius__3.is-style-epb-button__broken-border-right-upper:before {
  border-radius: 3px;
}
.p-emanon .epb-btn.is-style-epb-radius__10.is-style-epb-button__broken-background-lower-left:before,
.p-emanon .epb-btn.is-style-epb-radius__10.is-style-epb-button__broken-background-right-upper:before,
.p-emanon .epb-btn.is-style-epb-radius__10.is-style-epb-button__broken-border-lower-left:before,
.p-emanon .epb-btn.is-style-epb-radius__10.is-style-epb-button__broken-border-right-upper:before {
  border-radius: 10px;
}
@media screen and (max-width: 599px) {
  .p-emanon .wp-block-columns.is-not-stacked-on-mobile.epb-column-sp-6 {
    flex-wrap: wrap;
  }
  .p-emanon .wp-block-columns.is-not-stacked-on-mobile.epb-column-sp-6 > .wp-block-column:not(:first-child) {
    margin-left: 0;
  }
  .p-emanon .wp-block-columns.epb-column-sp-6 {
    width: 100%;
  }
  .p-emanon .wp-block-columns.epb-column-sp-6 > .wp-block-column {
    flex-basis: calc(50% - var(--wp--style--block-gap, 2em) / 2) !important;
  }
  .p-emanon .wp-block-columns.epb-column-sp-6 > .wp-block-column:nth-child(2) {
    margin-top: 0;
  }
  .p-emanon .wp-block-columns.is-epb-scroll,
  .p-emanon .wp-block-columns.is-epb-scrollï¼¿tablet {
    flex-wrap: nowrap !important;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
  }
  .p-emanon .wp-block-columns.is-epb-scroll .wp-block-column,
  .p-emanon .wp-block-columns.is-epb-scrollï¼¿tablet .wp-block-column {
    margin-bottom: 1px;
    margin-right: 16px;
    margin-top: 1px;
    max-width: 320px;
    min-width: 260px;
    scroll-snap-align: center;
  }
}
@media (min-width: 600px) and (max-width: 959px) {
  .p-emanon .wp-block-columns.is-epb-scrollï¼¿tablet,
  .p-emanon .wp-block-columns.is-epb-scrollï¼¿tablet-only {
    flex-wrap: nowrap !important;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
  }
  .p-emanon .wp-block-columns.is-epb-scrollï¼¿tablet .wp-block-column,
  .p-emanon .wp-block-columns.is-epb-scrollï¼¿tablet-only .wp-block-column {
    margin-bottom: 1px;
    margin-left: 24px;
    margin-top: 1px;
    max-width: 360px;
    min-width: 300px;
    scroll-snap-align: center;
  }
}
.p-emanon .is-style-list__margin li {
  padding-bottom: 3px;
}
.p-emanon .is-style-list__border-bottom li {
  border-bottom: 1px solid #e5e7e8;
}
.p-emanon .is-style-list__dashed-bottom li {
  border-bottom: 1px dashed #e5e7e8;
}
.p-emanon .is-style-list__white-bottom li {
  border-bottom: 1px solid #fff;
}
.p-emanon .is-style-list__flex,
.p-emanon .is-style-list__flex-center {
  -moz-column-gap: 1em;
  column-gap: 1em;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  row-gap: 1em;
}
.p-emanon .is-style-list__flex-center {
  justify-content: center;
}
.p-emanon .is-style-list__flex-right {
  -moz-column-gap: 1em;
  column-gap: 1em;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  row-gap: 1em;
}
.p-emanon [class*=is-style-list__flex] li {
  margin: 0;
}
.p-emanon p[class*=is-style-paragraph__] {
  box-sizing: border-box;
}
.p-emanon p.has-background:not([class*=is-style-paragraph__]) {
  box-sizing: border-box;
  padding: 0.5em 1.25em;
}
.p-emanon [class*=is-style-paragraph__]:not(.is-style-paragraph__lines-left):not(.is-style-paragraph__lines-left__dotted):not(.is-style-paragraph__lines-right):not(.is-style-paragraph__lines-right__dotted) {
  background-color: #fff;
  border: 2px solid;
  border-radius: 3px;
  padding: 0.5em 1.25em;
  position: relative;
}
.p-emanon [class*=is-style-paragraph__].has-background {
  border: none;
}
.p-emanon .is-style-paragraph__border-radius {
  border-radius: 3px;
}
.p-emanon .is-style-paragraph__border-radius.has-background,
.p-emanon .is-style-paragraph__lines-left.has-background,
.p-emanon .is-style-paragraph__lines-left__dotted.has-background,
.p-emanon .is-style-paragraph__lines-right.has-background,
.p-emanon .is-style-paragraph__lines-right__dotted.has-background {
  border: none;
  border-radius: 3px;
  padding: 0.5em 1.25em;
  position: relative;
}
.p-emanon [class*=is-style-paragraph__speech] {
  line-height: 1.4;
}
.p-emanon .is-style-paragraph__speech-bubble:after {
  background: inherit;
  border-bottom: 2px solid;
  border-right: 2px solid;
  bottom: -9px !important;
  content: "";
  height: 14px;
  left: 24px !important;
  position: absolute;
  right: inherit !important;
  top: inherit !important;
  transform: rotate(45deg);
  visibility: visible;
  width: 14px;
}
.p-emanon .has-background.is-style-paragraph__speech-bubble:after {
  border-bottom: none;
  border-right: none;
  bottom: -6px !important;
}
.p-emanon .is-style-paragraph__speech-bubble-center-fit {
  width: -moz-fit-content;
  width: fit-content;
}
.p-emanon .has-text-align-center.is-style-paragraph__speech-bubble-center-fit {
  margin-left: auto;
  margin-right: auto;
}
.p-emanon .has-text-align-right.is-style-paragraph__speech-bubble-center-fit {
  margin-left: auto;
}
.p-emanon .is-style-paragraph__speech-bubble-center-fit:after,
.p-emanon .is-style-paragraph__speech-bubble-center:after {
  background: inherit;
  border-bottom: 2px solid;
  border-right: 2px solid;
  bottom: -9px !important;
  content: "";
  height: 14px;
  left: 50% !important;
  position: absolute;
  right: inherit !important;
  top: inherit !important;
  transform: translateX(-50%) rotate(45deg);
  visibility: visible;
  width: 14px;
}
.p-emanon .is-style-paragraph__speech-bubble-center-fit.has-background:after,
.p-emanon .is-style-paragraph__speech-bubble-center.has-background:after {
  border-bottom: none;
  border-right: none;
  bottom: -7px !important;
}
.p-emanon .has-background.is-style-paragraph__speech-bubble-center:after {
  border-bottom: none;
  border-right: none;
  bottom: -6px !important;
}
.p-emanon .is-style-paragraph__speech-bubble-left {
  padding-left: 12px !important;
}
.p-emanon .is-style-paragraph__speech-bubble-left:before {
  background: inherit;
  border-bottom: 2px solid;
  border-left: 2px solid;
  content: "";
  height: 14px;
  left: -9px !important;
  position: absolute;
  top: calc(50% - 7px);
  transform: rotate(45deg);
  visibility: visible;
  width: 14px;
}
.p-emanon .has-background.is-style-paragraph__speech-bubble-left:before {
  border-bottom: none;
  border-left: none;
  left: -6px !important;
}
.p-emanon .is-style-paragraph__checkmark:before {
  content: "î¨";
  font-family: icomoon;
  padding-right: 4px;
}
.p-emanon .is-style-paragraph__circle:before {
  content: "î¥Ž";
  font-family: icomoon;
  padding-right: 4px;
}
.p-emanon .is-style-paragraph__cross:before {
  content: "î¥";
  font-family: icomoon;
  padding-right: 4px;
}
.p-emanon .is-style-paragraph__alert:before {
  content: "î¥·";
  font-family: icomoon;
  padding-right: 4px;
}
.p-emanon .is-style-paragraph__question:before {
  content: "î¦˜";
  font-family: icomoon;
  padding-right: 4px;
}
.p-emanon .is-style-paragraph__notice:before {
  content: "î¥¦";
  font-family: icomoon;
  padding-right: 4px;
}
.p-emanon .is-style-paragraph__point:before {
  content: "î¦‡";
  font-family: icomoon;
  padding-right: 4px;
}
.p-emanon .is-style-paragraph__memo:before {
  content: "î¥©";
  font-family: icomoon;
  padding-right: 4px;
}
.p-emanon .is-style-paragraph__bubble:before {
  content: "î¥¨";
  font-family: icomoon;
  padding-right: 4px;
}
.p-emanon .is-style-paragraph__crown:before {
  content: "î¦‰";
  font-family: icomoon;
  padding-right: 4px;
}
.p-emanon .is-style-paragraph__star:before {
  content: "î§™";
  font-family: icomoon;
  padding-right: 4px;
}
.p-emanon .is-style-paragraph__download:before {
  content: "î¥œ";
  font-family: icomoon;
  padding-right: 4px;
}
.p-emanon .is-style-paragraph__lines-left {
  align-items: center;
  display: flex;
}
.p-emanon .is-style-paragraph__lines-left:before {
  border-top: 1px solid;
  content: "";
  margin: 0 12px 0 0;
  opacity: 0.6;
  width: 32px;
}
.p-emanon .is-style-paragraph__lines-left__dotted {
  align-items: center;
  display: flex;
}
.p-emanon .is-style-paragraph__lines-left__dotted:before {
  border-top: 1px dotted;
  content: "";
  margin: 0 12px 0 0;
  opacity: 0.6;
  width: 32px;
}
.p-emanon .is-style-paragraph__lines-right {
  align-items: center;
  display: flex;
}
.p-emanon .is-style-paragraph__lines-right:after {
  border-bottom: 1px solid;
  content: "";
  flex-grow: 1;
  margin: 0 0 0 12px;
}
.p-emanon .is-style-paragraph__lines-right__dotted {
  align-items: center;
  display: flex;
}
.p-emanon .is-style-paragraph__lines-right__dotted:after {
  border-bottom: 1px dotted;
  content: "";
  flex-grow: 1;
  margin: 0 0 0 12px;
}
.p-emanon .has-epb-text-align-center-right {
  margin: 0 auto;
  text-align: left;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 599px) {
  .p-emanon .has-epb-sp-text-align-left {
    text-align: left;
  }
  .p-emanon .has-epb-sp-text-align-center {
    text-align: center;
  }
  .p-emanon .has-epb-sp-text-align-right {
    text-align: right;
  }
}
.p-emanon .wp-block-quote.is-style-border-left:before {
  border-left: 2px solid #828990;
  content: "";
  display: block;
  height: calc(100% - 48px);
  left: 20px;
  position: absolute;
  top: 24px;
}
.p-emanon .wp-block-quote.is-style-border-left-width {
  border: 2px solid #828990;
  border-left-width: 40px;
  padding-left: 16px;
  padding-right: 16px;
}
.p-emanon .wp-block-quote.is-style-border-left-width:before {
  color: #fff;
  content: "î¦£";
  font-family: icomoon;
  font-size: 16px;
  left: -28px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.p-emanon .wp-block-quote.is-style-speech-bubble-left {
  border-radius: 30px 30px 30px 0;
  padding-bottom: 24px;
  padding-left: 48px;
  padding-top: 24px;
}
.p-emanon .wp-block-quote.is-style-speech-bubble-left:before {
  left: 32px;
  top: 8px;
}
.p-emanon .wp-block-quote.is-style-speech-bubble-right {
  border-radius: 30px 30px 0 30px;
  padding-bottom: 24px;
  padding-left: 48px;
  padding-top: 24px;
}
.p-emanon .wp-block-quote.is-style-speech-bubble-right:before {
  left: 32px;
  top: 8px;
}
.p-emanon ol li,
.p-emanon ul li {
  position: relative;
}
.p-emanon ol.has-background,
.p-emanon ul.has-background {
  border-radius: 3px;
  margin-left: 0;
  padding: 8px 16px;
}
.p-emanon [data-type="core/list"] li + li {
  margin-top: 0.5em;
  position: relative;
}
.p-emanon .is-style-item__checkmark > li {
  list-style-type: none;
  padding-left: 1.5em;
}
.p-emanon .is-style-item__checkmark > li:before {
  bottom: 0;
  content: "î¨";
  font-family: icomoon;
  font-size: 1em;
  left: 0;
  margin-bottom: auto;
  margin-top: auto;
  position: absolute;
  top: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.p-emanon .is-style-item__checkmark--square > li {
  list-style-type: none;
  padding-left: 1.5em;
}
.p-emanon .is-style-item__checkmark--square > li:before {
  bottom: 0;
  content: "î¤º";
  font-family: icomoon;
  font-size: 1em;
  left: 0;
  margin-bottom: auto;
  margin-top: auto;
  position: absolute;
  top: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.p-emanon .is-style-item__alert > li {
  list-style-type: none;
  padding-left: 1.5em;
}
.p-emanon .is-style-item__alert > li:before {
  bottom: 0;
  content: "î¥·";
  font-family: icomoon;
  font-size: 1em;
  left: 0;
  position: absolute;
  top: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.p-emanon .is-style-item__alert--circle > li {
  list-style-type: none;
  padding-left: 1.5em;
}
.p-emanon .is-style-item__alert--circle > li:before {
  bottom: 0;
  content: "î¥¸";
  font-family: icomoon;
  font-size: 1em;
  left: 0;
  position: absolute;
  top: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.p-emanon .is-style-item__question--circle > li {
  list-style-type: none;
  padding-left: 1.5em;
}
.p-emanon .is-style-item__question--circle > li:before {
  bottom: 0;
  content: "î¦™";
  font-family: icomoon;
  font-size: 1em;
  left: 0;
  position: absolute;
  top: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.p-emanon .is-style-item__arrow > li {
  list-style-type: none;
  padding-left: 1.5em;
}
.p-emanon .is-style-item__arrow > li:before {
  bottom: 0;
  content: "î¥";
  font-family: icomoon;
  font-size: 1em;
  left: 0;
  position: absolute;
  top: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.p-emanon .is-style-item__arrow--circle > li {
  list-style-type: none;
  padding-left: 1.5em;
}
.p-emanon .is-style-item__arrow--circle > li:before {
  bottom: 0;
  content: "î¥“";
  font-family: icomoon;
  font-size: 1em;
  left: 0;
  position: absolute;
  top: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.p-emanon .is-style-item__arrow--square > li {
  list-style-type: none;
  padding-left: 1.5em;
}
.p-emanon .is-style-item__arrow--square > li:before {
  bottom: 0;
  content: "î§¤";
  font-family: icomoon;
  font-size: 1em;
  left: 0;
  position: absolute;
  top: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.p-emanon .is-style-item__notes > li {
  list-style-type: none;
  padding-left: 0.8em;
}
.p-emanon .is-style-item__notes > li:before {
  bottom: 0;
  content: "â€»";
  font-size: 0.9em;
  left: 0;
  opacity: 0.8;
  position: absolute;
  top: 0;
}
.p-emanon .is-style-item__good > li {
  list-style-type: none;
  padding-left: 1.2em;
}
.p-emanon .is-style-item__good > li:before {
  bottom: 0;
  content: "â—‹";
  font-size: 1em;
  left: 0;
  position: absolute;
  top: 0;
}
.p-emanon .is-style-item__bad > li {
  list-style-type: none;
  padding-left: 1.2em;
}
.p-emanon .is-style-item__bad > li:before {
  bottom: 0;
  content: "Ã—";
  font-size: 1.2em;
  left: 0;
  margin-top: -0.3em;
  position: absolute;
  top: 0;
}
.p-emanon .is-style-item__vertical-line > li {
  list-style-type: none;
}
.p-emanon .is-style-item__vertical-line > li:not(:last-child):after {
  content: "|";
  display: inline-block;
  margin-left: 8px;
  margin-right: 8px;
  position: absolute;
}
.p-emanon .is-style-item__diagonal-line > li {
  list-style-type: none;
}
.p-emanon .is-style-item__diagonal-line > li:not(:last-child):after {
  content: "/";
  display: inline-block;
  margin-left: 8px;
  margin-right: 8px;
  position: absolute;
}
.p-emanon .is-style-item__border > li {
  list-style-type: none;
  padding: 2px 16px;
}
.p-emanon .is-style-item__border li + li {
  margin-top: 0.5em;
  position: relative;
}
.p-emanon .is-style-item__border > li a,
.p-emanon .is-style-item__border > li a:hover {
  text-decoration: none !important;
}
.p-emanon ol.is-style-item__notes,
.p-emanon ol.is-style-item__notes ol {
  counter-reset: li;
}
.p-emanon ol.is-style-item__notes > li {
  padding-left: 1.5em;
}
.p-emanon ol.is-style-item__notes > li:before {
  content: "â€»" counter(li);
  counter-increment: li;
  letter-spacing: 2px;
}
.p-emanon ol.is-style-item__num--circle {
  counter-reset: number;
}
.p-emanon ol.is-style-item__num--circle > li {
  list-style-type: none;
  padding-left: 1.5em;
  position: relative;
}
.p-emanon ol.is-style-item__num--circle > li:before {
  border-radius: 50%;
  content: counter(number);
  counter-increment: number;
  font-size: 0.75em;
  height: 1.65em;
  left: 0;
  line-height: 1.65em;
  position: absolute;
  text-align: center;
  top: 0.3em;
  width: 1.65em;
}
.p-emanon ol.is-style-item__num--square {
  counter-reset: number;
}
.p-emanon ol.is-style-item__num--square > li {
  list-style-type: none;
  padding-left: 1.5em;
  position: relative;
}
.p-emanon ol.is-style-item__num--square > li:before {
  content: counter(number);
  counter-increment: number;
  font-size: 0.75em;
  height: 1.65em;
  left: 0;
  line-height: 1.65em;
  position: absolute;
  text-align: center;
  top: 0.2em;
  width: 1.65em;
}
.p-emanon ol.is-style-item__num--zero > li {
  counter-increment: section;
  list-style-type: none;
  padding-left: 1.5em;
  position: relative;
}
.p-emanon ol.is-style-item__num--zero > li:before {
  content: counter(section, decimal-leading-zero);
  left: 0;
  margin-bottom: auto;
  margin-top: auto;
  position: absolute;
  top: 0;
}
.p-emanon ol.is-style-item__num--border {
  counter-reset: number;
}
.p-emanon ol.is-style-item__num--border > li {
  counter-increment: section;
  list-style-type: none;
  padding: 2px 16px 2px 2.5em;
  position: relative;
}
.p-emanon ol.is-style-item__num--border > li:before {
  align-items: center;
  color: #fff;
  content: counter(number);
  counter-increment: number;
  display: flex;
  font-size: 1em;
  height: 100%;
  justify-content: center;
  left: 0;
  position: absolute;
  top: 0;
  width: 2em;
}
.p-emanon ol.is-style-item__num--border li + li {
  margin-top: 0.5em;
  position: relative;
}
.p-emanon ol.is-style-item__num--border > li a,
.p-emanon ol.is-style-item__num--border > li a:hover {
  text-decoration: none !important;
}
.p-emanon ol.is-style-item__none li,
.p-emanon ul.is-style-item__none li {
  list-style-type: none;
}
.p-emanon .wp-block-image {
  text-align: center !important;
}
.p-emanon .wp-block-image:after {
  clear: both;
  content: "";
  display: block;
}
.p-emanon .wp-block-image.is-style-rounded img {
  border-radius: 6px !important;
}
.p-emanon .wp-block-image.is-style-image__shadow img {
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.3);
}
.p-emanon .wp-block-image.is-style-image__shadow--rounded img {
  border-radius: 6px;
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.3);
}
.p-emanon .wp-block-image.is-style-image__border img {
  border: 1px solid #e5e7e8;
  padding: 2px;
}
.p-emanon .wp-block-image.is-style-image__border--rounded img {
  border: 1px solid #e5e7e8;
  border-radius: 6px;
  padding: 2px;
}
.p-emanon .wp-block-image.is-style-image__slanted img {
  transform: skewX(-12deg);
}
.p-emanon .wp-block-image.is-style-image__slanted--shadow img {
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.3);
  transform: skewX(-12deg);
}
.p-emanon .wp-block-image.is-style-image__circle img {
  -webkit-mask-image: var(--emp-mask-circle);
  mask-image: var(--emp-mask-circle);
}
.p-emanon .wp-block-image.is-style-image__balloon img,
.p-emanon .wp-block-image.is-style-image__circle img {
  -webkit-mask-position: 50% 50%;
  mask-position: 50% 50%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.p-emanon .wp-block-image.is-style-image__balloon img {
  -webkit-mask-image: var(--emp-mask-balloon);
  mask-image: var(--emp-mask-balloon);
}
.p-emanon .wp-block-image.is-style-image__fluid--01 img {
  -webkit-mask-image: var(--emp-mask-fluid01);
  mask-image: var(--emp-mask-fluid01);
}
.p-emanon .wp-block-image.is-style-image__fluid--01 img,
.p-emanon .wp-block-image.is-style-image__fluid--02 img {
  -webkit-mask-position: 50% 50%;
  mask-position: 50% 50%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.p-emanon .wp-block-image.is-style-image__fluid--02 img {
  -webkit-mask-image: var(--emp-mask-fluid02);
  mask-image: var(--emp-mask-fluid02);
}
.p-emanon .wp-block-image.is-style-image__fluid--03 img {
  -webkit-mask-image: var(--emp-mask-fluid03);
  mask-image: var(--emp-mask-fluid03);
}
.p-emanon .wp-block-image.is-style-image__fluid--03 img,
.p-emanon .wp-block-image.is-style-image__fluid--04 img {
  -webkit-mask-position: 50% 50%;
  mask-position: 50% 50%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.p-emanon .wp-block-image.is-style-image__fluid--04 img {
  -webkit-mask-image: var(--emp-mask-fluid04);
  mask-image: var(--emp-mask-fluid04);
}
.p-emanon .wp-block-image.is-style-image__fluid--05 img {
  -webkit-mask-image: var(--emp-mask-fluid05);
  mask-image: var(--emp-mask-fluid05);
}
.p-emanon .wp-block-image.is-style-image__fluid--05 img,
.p-emanon .wp-block-image.is-style-image__fluid--06 img {
  -webkit-mask-position: 50% 50%;
  mask-position: 50% 50%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.p-emanon .wp-block-image.is-style-image__fluid--06 img {
  -webkit-mask-image: var(--emp-mask-fluid06);
  mask-image: var(--emp-mask-fluid06);
}
.p-emanon .wp-block-image.is-style-image__fluid--07 img {
  -webkit-mask-image: var(--emp-mask-fluid07);
  mask-image: var(--emp-mask-fluid07);
}
.p-emanon .wp-block-image.is-style-image__fluid--07 img,
.p-emanon .wp-block-image.is-style-image__fluid--08 img {
  -webkit-mask-position: 50% 50%;
  mask-position: 50% 50%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.p-emanon .wp-block-image.is-style-image__fluid--08 img {
  -webkit-mask-image: var(--emp-mask-fluid08);
  mask-image: var(--emp-mask-fluid08);
}
.p-emanon .wp-block-table.is-style-table__scroll-side tr td,
.p-emanon .wp-block-table.is-style-table__side tr td {
  background-color: #fafafa;
}
.p-emanon .wp-block-table.is-style-table__scroll-side td + td,
.p-emanon .wp-block-table.is-style-table__side td + td {
  background-color: inherit;
}
.p-emanon .wp-block-table.is-style-table__border-bottom table,
.p-emanon .wp-block-table.is-style-table__border-bottom td,
.p-emanon .wp-block-table.is-style-table__border-bottom-left-right table,
.p-emanon .wp-block-table.is-style-table__border-bottom-left-right td {
  border-left-style: none !important;
  border-right-style: none !important;
  border-top-style: none !important;
}
.p-emanon .wp-block-table[class*=is-style-table__border-bottom] td {
  padding: 24px 12px;
}
.p-emanon .wp-block-table.is-style-table__border-bottom-left-right tbody td {
  position: relative;
}
.p-emanon .wp-block-table.is-style-table__border-bottom-left-right tbody td:first-child:after {
  background-color: var(--ep-primary-color, #828990);
  bottom: -1px;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  width: 100%;
}
.p-emanon .wp-block-table.is-style-table__schedule table[class^=has-],
.p-emanon .wp-block-table.is-style-table__schedule table[class^=has-] tfoot,
.p-emanon .wp-block-table.is-style-table__schedule table[class^=has-] thead,
.p-emanon .wp-block-table.is-style-table__schedule table[style*=border-],
.p-emanon .wp-block-table.is-style-table__schedule table[style*=border-] tfoot,
.p-emanon .wp-block-table.is-style-table__schedule table[style*=border-] thead {
  border-bottom-style: none !important;
  border-left-style: none !important;
  border-top-style: none !important;
}
.p-emanon .wp-block-table.is-style-table__schedule td,
.p-emanon .wp-block-table.is-style-table__schedule th {
  border-bottom-style: none;
  border-left-style: none;
  border-top-style: none;
  padding: 0.1em;
  text-align: center;
}
.p-emanon .wp-block-table.is-style-table__schedule tr > td:first-child {
  padding-left: 0;
}
@media screen and (max-width: 599px) {
  .p-emanon .wp-block-table.is-style-table__schedule td,
  .p-emanon .wp-block-table.is-style-table__schedule th {
    font-size: 12px;
  }
}
@media screen and (min-width: 600px) {
  .p-emanon .wp-block-table.is-style-table__schedule td,
  .p-emanon .wp-block-table.is-style-table__schedule th {
    padding: 0.25em;
  }
}
@media screen and (min-width: 960px) {
  .p-emanon .wp-block-table.is-style-table___schedule td,
  .p-emanon .wp-block-table.is-style-table__schedule th {
    padding: 10px;
  }
}
@media screen and (max-width: 599px) {
  .p-emanon .wp-block-table.is-style-table__scroll,
  .p-emanon .wp-block-table.is-style-table__scroll-side {
    display: block;
    overflow-x: scroll;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
  }
  .p-emanon .wp-block-table.is-style-table__scroll-side.aligncenter,
  .p-emanon .wp-block-table.is-style-table__scroll-side.alignleft,
  .p-emanon .wp-block-table.is-style-table__scroll-side.alignright,
  .p-emanon .wp-block-table.is-style-table__scroll.aligncenter,
  .p-emanon .wp-block-table.is-style-table__scroll.alignleft,
  .p-emanon .wp-block-table.is-style-table__scroll.alignright {
    display: block;
  }
  .p-emanon .wp-block-table.is-style-table__scroll-side > table,
  .p-emanon .wp-block-table.is-style-table__scroll > table {
    max-width: 780px;
    width: 780px;
  }
  .p-emanon .wp-block-table td {
    overflow: hidden;
  }
}
.p-emanon .wp-block-table.is-style-table__responsive tr td {
  background-color: #fafafa;
}
.p-emanon .wp-block-table.is-style-table__responsive td + td {
  background-color: inherit;
}
@media screen and (max-width: 599px) {
  .p-emanon .wp-block-table.is-style-table__responsive td {
    border-bottom: none;
    display: block;
    width: 100%;
  }
  .p-emanon .wp-block-table.is-style-table__responsive td:last-child {
    border-bottom: 1px solid #b8bcc0;
  }
  .p-emanon .wp-block-table.is-style-table__responsive tr {
    display: block;
    margin-bottom: 4px;
  }
  .p-emanon .wp-block-table.is-style-table__responsive tr:last-child {
    margin-bottom: 0;
  }
}
.p-emanon .wp-block-table.is-style-table__vertical-line table[class^=has-],
.p-emanon .wp-block-table.is-style-table__vertical-line table[class^=has-] tfoot,
.p-emanon .wp-block-table.is-style-table__vertical-line table[class^=has-] thead,
.p-emanon .wp-block-table.is-style-table__vertical-line table[style*=border-],
.p-emanon .wp-block-table.is-style-table__vertical-line table[style*=border-] tfoot,
.p-emanon .wp-block-table.is-style-table__vertical-line table[style*=border-] thead {
  border-style: none !important;
}
.p-emanon .wp-block-table.is-style-table__vertical-line td,
.p-emanon .wp-block-table.is-style-table__vertical-line th {
  border-style: none solid none none !important;
  border-width: 1px !important;
  padding: 0.666666667em 1em;
}
.p-emanon .wp-block-table.is-style-table__vertical-line td:last-child,
.p-emanon .wp-block-table.is-style-table__vertical-line th:last-child {
  border-right-style: none !important;
  border-width: initial !important;
}
.p-emanon .wp-block-table.is-style-table__vertical-backgrounde table[class^=has-],
.p-emanon .wp-block-table.is-style-table__vertical-backgrounde table[class^=has-] tfoot,
.p-emanon .wp-block-table.is-style-table__vertical-backgrounde table[class^=has-] thead,
.p-emanon .wp-block-table.is-style-table__vertical-backgrounde table[style*=border-],
.p-emanon .wp-block-table.is-style-table__vertical-backgrounde table[style*=border-] tfoot,
.p-emanon .wp-block-table.is-style-table__vertical-backgrounde table[style*=border-] thead {
  border-style: none !important;
}
.p-emanon .wp-block-table.is-style-table__vertical-backgrounde table {
  border-collapse: separate !important;
  border-spacing: 16px 0;
  margin-inline: -16px;
  width: calc(100% + 32px) !important;
}
.p-emanon .wp-block-table.is-style-table__vertical-backgrounde tr > * {
  background-color: #e5e7e8;
  border-style: none !important;
  padding: 0.666666667em 1em;
}
.p-emanon .wp-block-group {
  position: relative;
}
.p-emanon .wp-block-group[class*=is-style-group] {
  border: 2px solid #eeeff0;
  border-radius: 3px;
  padding: 32px 24px;
}
.p-emanon .wp-block-group.has-background,
.p-emanon .wp-block-group.is-style-group__border {
  border-radius: 3px;
  padding: 16px 24px;
}
.p-emanon .wp-block-group[class*=is-style-group__brackets],
.p-emanon .wp-block-group[class*=is-style-group__brackets]:where([style*=border-width]) {
  border-style: none;
  padding-bottom: 24px;
  padding-top: 24px;
}
.p-emanon .wp-block-group.is-style-group__brackets:after,
.p-emanon .wp-block-group.is-style-group__brackets:before {
  border: 2px solid;
  border-color: inherit;
  content: "";
  display: inline-block;
  height: 2.25em;
  position: absolute;
  width: 1.5em;
}
.p-emanon .wp-block-group.is-style-group__brackets:before {
  border-bottom-style: none;
  border-right-style: none;
  left: 0;
  top: 0;
}
.p-emanon .wp-block-group.is-style-group__brackets:after {
  border-left-style: none;
  border-top-style: none;
  bottom: 0;
  right: 0;
}
.p-emanon .wp-block-group.is-style-group__brackets-square:after,
.p-emanon .wp-block-group.is-style-group__brackets-square:before {
  border: 2px solid;
  border-color: inherit;
  content: "";
  display: inline-block;
  height: 100%;
  position: absolute;
  width: 1em;
}
.p-emanon .wp-block-group.is-style-group__brackets-square:before {
  border-right-style: none;
  bottom: 0;
  left: 0;
  top: 0;
}
.p-emanon .wp-block-group.is-style-group__brackets-square:after {
  border-left-style: none;
  bottom: 0;
  right: 0;
  top: 0;
}
.p-emanon .wp-block-group.is-style-group__shadow {
  box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.08);
  padding-bottom: 16px;
  padding-top: 16px;
}
.p-emanon .wp-block-group.is-style-group__stripe {
  background: repeating-linear-gradient(-45deg, hsla(0, 0%, 78%, 0.15), hsla(0, 0%, 78%, 0.15) 3px, #fff 0, #fff 7px);
  padding-bottom: 16px;
  padding-top: 16px;
}
.p-emanon .wp-block-group.is-style-group__grid {
  background-image: linear-gradient(transparent calc(100% - 1px), #e5e7e8 50%, hsla(0, 0%, 78%, 0.15)), linear-gradient(90deg, transparent calc(100% - 1px), #e5e7e8 50%, hsla(0, 0%, 78%, 0.15));
  background-position: 50%;
  background-repeat: repeat;
  background-size: 20px 20px;
  padding-bottom: 14px;
  padding-top: 14px;
}
.p-emanon .wp-block-group.is-style-group__sticky-note {
  background-color: hsla(0, 0%, 78%, 0.15);
  border-style: none;
  padding-bottom: 16px;
  padding-top: 16px;
}
.p-emanon .wp-block-group.is-style-group__sticky-note:after {
  border-color: #e5e7e8 #fff;
  border-style: solid;
  border-width: 0 16px 16px 0;
  box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.08);
  content: "";
  position: absolute;
  right: 0;
  top: 0;
}
.p-emanon .wp-block-group.is-style-group__point:before {
  color: #007bff;
  content: "POINT";
}
.p-emanon .wp-block-group.is-style-group__check:before,
.p-emanon .wp-block-group.is-style-group__point:before {
  background: #fff;
  border-radius: 3px;
  font-weight: 700;
  left: 16px;
  letter-spacing: 0.05em;
  padding-left: 8px;
  padding-right: 8px;
  position: absolute;
  top: -12px;
}
.p-emanon .wp-block-group.is-style-group__check:before {
  color: #dc3545;
  content: "CHECK";
}
.p-emanon .wp-block-group[class*=is-style-group-center__]:before {
  left: calc(50% - 18px);
}
.p-emanon .wp-block-group[class*=is-style-group-center__]:before,
.p-emanon .wp-block-group[class*=is-style-group-left__]:before {
  align-items: center;
  border-radius: 50%;
  color: #fff;
  display: flex;
  font-size: 18px;
  height: 2em;
  justify-content: center;
  padding-left: 1px;
  position: absolute;
  top: -18px;
  width: 2em;
}
.p-emanon .wp-block-group[class*=is-style-group-left__]:before {
  left: 18px;
}
.p-emanon .wp-block-group.is-style-group-center__circle,
.p-emanon .wp-block-group.is-style-group-left__circle {
  border-color: #007bff;
}
.p-emanon .wp-block-group.is-style-group-center__circle:before,
.p-emanon .wp-block-group.is-style-group-left__circle:before {
  background-color: #007bff;
  content: "î¥Ž";
  font-family: icomoon;
}
.p-emanon .wp-block-group.is-style-group-center__cross,
.p-emanon .wp-block-group.is-style-group-left__cross {
  border: 2px solid #dc3545;
}
.p-emanon .wp-block-group.is-style-group-center__cross:before,
.p-emanon .wp-block-group.is-style-group-left__cross:before {
  background-color: #dc3545;
  content: "î¥";
  font-family: icomoon;
}
.p-emanon .wp-block-group.is-style-group-center__alert,
.p-emanon .wp-block-group.is-style-group-left__alert {
  border-color: #f0ad4e;
}
.p-emanon .wp-block-group.is-style-group-center__alert:before,
.p-emanon .wp-block-group.is-style-group-left__alert:before {
  background-color: #f0ad4e;
  content: "î¥·";
  font-family: icomoon;
}
.p-emanon .wp-block-group.is-style-group-center__checkmark,
.p-emanon .wp-block-group.is-style-group-left__checkmark {
  border-color: #5cb85c;
}
.p-emanon .wp-block-group.is-style-group-center__checkmark:before,
.p-emanon .wp-block-group.is-style-group-left__checkmark:before {
  background-color: #5cb85c;
  content: "î¨";
  font-family: icomoon;
}
.p-emanon .wp-block-group.is-style-group-center__phone:before,
.p-emanon .wp-block-group.is-style-group-left__phone:before {
  background-color: #333;
  content: "î¥³";
  font-family: icomoon;
}
.p-emanon .wp-block-group.is-style-group-center__mail:before,
.p-emanon .wp-block-group.is-style-group-left__mail:before {
  background-color: #333;
  content: "î¥²";
  font-family: icomoon;
}
.p-emanon .wp-block-spacer.is-style-display-sp {
  display: block;
}
.p-emanon .wp-block-spacer.is-style-display-pc {
  display: none;
}
@media screen and (min-width: 600px) {
  .p-emanon .wp-block-spacer.is-style-display-sp {
    display: none;
  }
  .p-emanon .wp-block-spacer.is-style-display-pc {
    display: block;
  }
}
.p-emanon .wp-block-separator.is-style-narrow {
  width: 100px;
}
.p-emanon .wp-block-separator.is-style-dots:before {
  font-size: 24px;
  letter-spacing: 1.5em;
}
.p-emanon .wp-block-separator.is-style-mesh {
  width: 100%;
}
.p-emanon .wp-block-separator.is-style-mesh,
.p-emanon .wp-block-separator.is-style-mesh-narrow {
  background-color: inherit !important;
  background-image: repeating-linear-gradient(45deg, currentColor, currentColor 1px, transparent 0, transparent 50%), repeating-linear-gradient(135deg, currentColor, currentColor 1px, transparent 0, transparent 50%);
  background-size: 6px 6px;
  border-top: none;
  height: 6px !important;
  opacity: 0.6;
}
.p-emanon .wp-block-separator.is-style-mesh-narrow {
  width: 103px;
}
.p-emanon .epb-delay-200ms.is-epb-active {
  animation-delay: 0.2s;
}
.p-emanon .epb-delay-500ms.is-epb-active {
  animation-delay: 0.5s;
}
.p-emanon .epb-delay-800ms.is-epb-active {
  animation-delay: 0.8s;
}
.p-emanon .epb-delay-1000ms.is-epb-active {
  animation-delay: 1s;
}
.p-emanon .epb-delay-2000ms.is-epb-active {
  animation-delay: 2s;
}
.p-emanon .epb-delay-3000ms.is-epb-active {
  animation-delay: 3s;
}
.p-emanon .epb-delay-4000ms.is-epb-active {
  animation-delay: 4s;
}
.p-emanon .epb-delay-5000ms.is-epb-active {
  animation-delay: 5s;
}
.p-emanon .epb-duration-200ms.is-epb-active {
  animation-duration: 0.2s;
}
.p-emanon .epb-duration-500ms.is-epb-active {
  animation-duration: 0.5s;
}
.p-emanon .epb-duration-800ms.is-epb-active {
  animation-duration: 0.8s;
}
.p-emanon .epb-duration-1000ms.is-epb-active {
  animation-duration: 1s;
}
.p-emanon .epb-duration-2000ms.is-epb-active {
  animation-duration: 2s;
}
.p-emanon .epb-duration-3000ms.is-epb-active {
  animation-duration: 3s;
}
.p-emanon .epb-duration-4000ms.is-epb-active {
  animation-duration: 4s;
}
.p-emanon .epb-duration-5000ms.is-epb-active {
  animation-duration: 5s;
}
.p-emanon .epb-iteration-infinite.is-epb-active {
  animation-iteration-count: infinite;
}
@keyframes epb-fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.p-emanon .epb-animation-fadeIn {
  opacity: 0;
}
.p-emanon .epb-animation-fadeIn.is-epb-active {
  animation-name: epb-fadeIn;
  animation-timing-function: cubic-bezier(0, 0, 0, 1);
  opacity: 0;
  will-change: animation;
}
.p-emanon .epb-animation-fadeIn.is-epb-animationend {
  opacity: 1;
}
@keyframes epb-fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.p-emanon .epb-animation-fadeInUp {
  opacity: 0;
}
.p-emanon .epb-animation-fadeInUp.is-epb-active {
  animation-name: epb-fadeInUp;
  opacity: 0;
  will-change: animation;
}
.p-emanon .epb-animation-fadeInUp.is-epb-animationend {
  opacity: 1;
}
@keyframes epb-fadeInUp-big {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.p-emanon .epb-animation-fadeInUp-big {
  opacity: 0;
}
.p-emanon .epb-animation-fadeInUp-big.is-epb-active {
  animation-name: epb-fadeInUp-big;
  opacity: 0;
  will-change: animation;
}
.p-emanon .epb-animation-fadeInUp-big.is-epb-animationend {
  opacity: 1;
}
@keyframes epb-fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.p-emanon .epb-animation-fadeInDown {
  opacity: 0;
}
.p-emanon .epb-animation-fadeInDown.is-epb-active {
  animation-name: epb-fadeInDown;
  opacity: 0;
  will-change: animation;
}
.p-emanon .epb-animation-fadeInDown.is-epb-animationend {
  opacity: 1;
}
@keyframes epb-fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-32px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.p-emanon .epb-animation-fadeInLeft {
  opacity: 0;
}
.p-emanon .epb-animation-fadeInLeft.is-epb-active {
  animation-name: epb-fadeInLeft;
  opacity: 0;
  will-change: animation;
}
.p-emanon .epb-animation-fadeInLeft.is-epb-animationend {
  opacity: 1;
}
@keyframes epb-fadeInLeft-big {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.p-emanon .epb-animation-fadeInLeft-big {
  opacity: 0;
}
.p-emanon .epb-animation-fadeInLeft-big.is-epb-active {
  animation-name: epb-fadeInLeft-big;
  opacity: 0;
  will-change: animation;
}
.p-emanon .epb-animation-fadeInLeft-big.is-epb-animationend {
  opacity: 1;
}
@keyframes epb-fadeInDown-big {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.p-emanon .epb-animation-fadeInDown-big {
  opacity: 0;
}
.p-emanon .epb-animation-fadeInDown-big.is-epb-active {
  animation-name: epb-fadeInDown-big;
  opacity: 0;
  will-change: animation;
}
.p-emanon .epb-animation-fadeInDown-big.is-epb-animationend {
  opacity: 1;
}
@keyframes epb-fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(32px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.p-emanon .epb-animation-fadeInRight {
  opacity: 0;
}
.p-emanon .epb-animation-fadeInRight.is-epb-active {
  animation-name: epb-fadeInRight;
  opacity: 0;
  will-change: animation;
}
.p-emanon .epb-animation-fadeInRight.is-epb-animationend {
  opacity: 1;
}
@keyframes epb-fadeInRight-big {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.p-emanon .epb-animation-fadeInRight-big {
  opacity: 0;
}
.p-emanon .epb-animation-fadeInRight-big.is-epb-active {
  animation-name: epb-fadeInRight-big;
  opacity: 0;
  will-change: animation;
}
.p-emanon .epb-animation-fadeInRight-big.is-epb-animationend {
  opacity: 1;
}
@keyframes epb-flash {
  0%, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.p-emanon .epb-animation-flash.is-epb-active {
  animation-name: epb-flash;
  will-change: animation;
}
@keyframes epb-pulse {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scale3d(1.03, 1.03, 1.03);
  }
  to {
    transform: scaleX(1);
  }
}
.p-emanon .epb-animation-pulse.is-epb-active {
  animation-name: epb-pulse;
  animation-timing-function: ease-in-out;
  will-change: animation;
}
@keyframes epb-shakeX {
  0%, to {
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-8px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(8px, 0, 0);
  }
}
.p-emanon .epb-animation-shakeX.is-epb-active {
  animation-name: epb-shakeX;
  will-change: animation;
}
@keyframes epb-shakeY {
  0%, to {
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(0, -8px, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(0, 8px, 0);
  }
}
.p-emanon .epb-animation-shakeY.is-epb-active {
  animation-name: epb-shakeY;
  will-change: animation;
}
@keyframes epb-heartBeat {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.2);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.2);
  }
  70% {
    transform: scale(1);
  }
}
.p-emanon .epb-animation-heartBeat.is-epb-active {
  animation-name: epb-heartBeat;
  animation-timing-function: ease-in-out;
  will-change: animation;
}
@keyframes epb-bounceIn {
  0% {
    opacity: 0;
  }
  0% {
    transform: scale(1.05);
  }
  20% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.025);
  }
  60% {
    transform: scale(1);
  }
  80% {
    transform: scale(1.0125);
  }
  to {
    transform: scale(1);
  }
  to {
    opacity: 1;
  }
}
.p-emanon .epb-animation-bounceIn {
  opacity: 0;
}
.p-emanon .epb-animation-bounceIn.is-epb-active {
  animation-name: epb-bounceIn;
  opacity: 0;
  will-change: animation;
}
.p-emanon .epb-animation-bounceIn.is-epb-animationend {
  opacity: 1;
}
@keyframes epb-bounceInUp {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }
  20% {
    opacity: 1;
  }
  40% {
    opacity: 1;
    transform: translateY(-12px);
  }
  60% {
    opacity: 1;
    transform: translateY(12px);
  }
  80% {
    opacity: 1;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.p-emanon .epb-animation-bounceInUp {
  opacity: 0;
}
.p-emanon .epb-animation-bounceInUp.is-epb-active {
  animation-name: epb-bounceInUp;
  opacity: 0;
  will-change: animation;
}
.p-emanon .epb-animation-bounceInUp.is-epb-animationend {
  opacity: 1;
}
@keyframes epb-bounceInUp-big {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  20% {
    opacity: 1;
  }
  40% {
    opacity: 1;
    transform: translateY(-12px);
  }
  60% {
    opacity: 1;
    transform: translateY(12px);
  }
  80% {
    opacity: 1;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.p-emanon .epb-animation-bounceInUp-big {
  opacity: 0;
}
.p-emanon .epb-animation-bounceInUp-big.is-epb-active {
  animation-name: epb-bounceInUp-big;
  opacity: 0;
  will-change: animation;
}
.p-emanon .epb-animation-bounceInUp-big.is-epb-animationend {
  opacity: 1;
}
@keyframes epb-bounceInDown {
  0% {
    opacity: 0;
    transform: translateY(-24px);
  }
  20% {
    opacity: 1;
  }
  40% {
    opacity: 1;
    transform: translateY(12px);
  }
  60% {
    opacity: 1;
    transform: translateY(-12px);
  }
  80% {
    opacity: 1;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.p-emanon .epb-animation-bounceInDown {
  opacity: 0;
}
.p-emanon .epb-animation-bounceInDown.is-epb-active {
  animation-name: epb-bounceInDown;
  opacity: 0;
  will-change: animation;
}
.p-emanon .epb-animation-bounceInDown.is-epb-animationend {
  opacity: 1;
}
@keyframes epb-bounceInDown-big {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  20% {
    opacity: 1;
  }
  40% {
    opacity: 1;
    transform: translateY(12px);
  }
  60% {
    opacity: 1;
    transform: translateY(-12px);
  }
  80% {
    opacity: 1;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.p-emanon .epb-animation-bounceInDown-big {
  opacity: 0;
}
.p-emanon .epb-animation-bounceInDown-big.is-epb-active {
  animation-name: epb-bounceInDown-big;
  opacity: 0;
  will-change: animation;
}
.p-emanon .epb-animation-bounceInDown-big.is-epb-animationend {
  opacity: 1;
}
@keyframes epb-bounceInLeft {
  0% {
    opacity: 0;
    transform: translateX(-32px);
  }
  45% {
    opacity: 1;
    transform: translateX(12px);
  }
  60% {
    opacity: 1;
    transform: translateX(-12px);
  }
  80% {
    opacity: 1;
    transform: translateX(8px);
  }
  to {
    opacity: 1;
    transform: translatex(0);
  }
}
.p-emanon .epb-animation-bounceInLeft {
  opacity: 0;
}
.p-emanon .epb-animation-bounceInLeft.is-epb-active {
  animation-name: epb-bounceInLeft;
  opacity: 0;
  will-change: animation;
}
.p-emanon .epb-animation-bounceInLeft.is-epb-animationend {
  opacity: 1;
}
@keyframes epb-bounceInLeft-big {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  45% {
    opacity: 1;
    transform: translateX(12px);
  }
  60% {
    opacity: 1;
    transform: translateX(-12px);
  }
  80% {
    opacity: 1;
    transform: translateX(8px);
  }
  to {
    opacity: 1;
    transform: translatex(0);
  }
}
.p-emanon .epb-animation-bounceInLeft-big {
  opacity: 0;
}
.p-emanon .epb-animation-bounceInLeft-big.is-epb-active {
  animation-name: epb-bounceInLeft-big;
  opacity: 0;
  will-change: animation;
}
.p-emanon .epb-animation-bounceInLeft-big.is-epb-animationend {
  opacity: 1;
}
@keyframes epb-bounceInRight {
  0% {
    opacity: 0;
    transform: translateX(32px);
  }
  45% {
    opacity: 1;
    transform: translateX(-12px);
  }
  60% {
    opacity: 1;
    transform: translateX(12px);
  }
  80% {
    opacity: 1;
    transform: translateX(-8px);
  }
  to {
    opacity: 1;
    transform: translatex(0);
  }
}
.p-emanon .epb-animation-bounceInRight {
  opacity: 0;
}
.p-emanon .epb-animation-bounceInRight.is-epb-active {
  animation-name: epb-bounceInRight;
  opacity: 0;
  will-change: animation;
}
.p-emanon .epb-animation-bounceInRight.is-epb-animationend {
  opacity: 1;
}
@keyframes epb-bounceInRight-big {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  45% {
    opacity: 1;
    transform: translateX(-12px);
  }
  60% {
    opacity: 1;
    transform: translateX(12px);
  }
  80% {
    opacity: 1;
    transform: translateX(-8px);
  }
  to {
    opacity: 1;
    transform: translatex(0);
  }
}
.p-emanon .epb-animation-bounceInRight-big {
  opacity: 0;
}
.p-emanon .epb-animation-bounceInRight-big.is-epb-active {
  animation-name: epb-bounceInRight-big;
  opacity: 0;
  will-change: animation;
}
.p-emanon .epb-animation-bounceInRight-big.is-epb-animationend {
  opacity: 1;
}
@media (min-width: 600px) {
  .p-emanon .epb-display__sp-only {
    display: none !important;
  }
}
@media screen and (max-width: 599px) {
  .p-emanon .epb-display__tablet,
  .p-emanon .epb-display__tablet-pc {
    display: none !important;
  }
}
@media screen and (min-width: 959px) {
  .p-emanon .epb-display__tablet {
    display: none !important;
  }
}
@media screen and (max-width: 959px) {
  .p-emanon .epb-display__pc {
    display: none !important;
  }
}
.p-emanon .epb-margin-top__0:not([class*=-sp]):not([class*=-tablet]) {
  margin-top: 0 !important;
}
.p-emanon .epb-margin-top__8:not([class*=-sp]):not([class*=-tablet]) {
  margin-top: 8px !important;
}
.p-emanon .epb-margin-top__16:not([class*=-sp]):not([class*=-tablet]) {
  margin-top: 16px !important;
}
.p-emanon .epb-margin-top__24:not([class*=-sp]):not([class*=-tablet]) {
  margin-top: 24px !important;
}
.p-emanon .epb-margin-top__32:not([class*=-sp]):not([class*=-tablet]) {
  margin-top: 32px !important;
}
.p-emanon .epb-margin-top__40:not([class*=-sp]):not([class*=-tablet]) {
  margin-top: 40px !important;
}
.p-emanon .epb-margin-top__48:not([class*=-sp]):not([class*=-tablet]) {
  margin-top: 48px !important;
}
.p-emanon .epb-margin-top__56:not([class*=-sp]):not([class*=-tablet]) {
  margin-top: 56px !important;
}
.p-emanon .epb-margin-top__64:not([class*=-sp]):not([class*=-tablet]) {
  margin-top: 64px !important;
}
.p-emanon .epb-margin-top__72:not([class*=-sp]):not([class*=-tablet]) {
  margin-top: 72px !important;
}
.p-emanon .epb-margin-top__80:not([class*=-sp]):not([class*=-tablet]) {
  margin-top: 80px !important;
}
.p-emanon .epb-margin-top__88:not([class*=-sp]):not([class*=-tablet]) {
  margin-top: 88px !important;
}
.p-emanon .epb-margin-top__96:not([class*=-sp]):not([class*=-tablet]) {
  margin-top: 96px !important;
}
.p-emanon .epb-margin-top__minus-8:not([class*=-sp]):not([class*=-tablet]) {
  margin-top: -8px !important;
  z-index: 1;
}
.p-emanon .epb-margin-top__minus-16:not([class*=-sp]):not([class*=-tablet]) {
  margin-top: -16px !important;
  z-index: 1;
}
.p-emanon .epb-margin-top__minus-24:not([class*=-sp]):not([class*=-tablet]) {
  margin-top: -24px !important;
  z-index: 1;
}
.p-emanon .epb-margin-top__minus-32:not([class*=-sp]):not([class*=-tablet]) {
  margin-top: -32px !important;
  z-index: 1;
}
.p-emanon .epb-margin-top__minus-40:not([class*=-sp]):not([class*=-tablet]) {
  margin-top: -40px !important;
  z-index: 1;
}
.p-emanon .epb-margin-top__minus-48:not([class*=-sp]):not([class*=-tablet]) {
  margin-top: -48px !important;
  z-index: 1;
}
.p-emanon .epb-margin-top__minus-56:not([class*=-sp]):not([class*=-tablet]) {
  margin-top: -56px !important;
  z-index: 1;
}
.p-emanon .epb-margin-top__minus-64:not([class*=-sp]):not([class*=-tablet]) {
  margin-top: -64px !important;
  z-index: 1;
}
.p-emanon .epb-margin-top__minus-72:not([class*=-sp]):not([class*=-tablet]) {
  margin-top: -72px !important;
  z-index: 1;
}
.p-emanon .epb-margin-top__minus-80:not([class*=-sp]):not([class*=-tablet]) {
  margin-top: -80px !important;
  z-index: 1;
}
.p-emanon .epb-margin-top__minus-88:not([class*=-sp]):not([class*=-tablet]) {
  margin-top: -88px !important;
  z-index: 1;
}
.p-emanon .epb-margin-top__minus-96:not([class*=-sp]):not([class*=-tablet]) {
  margin-top: -96px !important;
  z-index: 1;
}
@media screen and (max-width: 599px) {
  .p-emanon .epb-margin-top__0-sp {
    margin-top: 0 !important;
  }
  .p-emanon .epb-margin-top__8-sp {
    margin-top: 8px !important;
  }
  .p-emanon .epb-margin-top__16-sp {
    margin-top: 16px !important;
  }
  .p-emanon .epb-margin-top__24-sp {
    margin-top: 24px !important;
  }
  .p-emanon .epb-margin-top__32-sp {
    margin-top: 32px !important;
  }
  .p-emanon .epb-margin-top__40-sp {
    margin-top: 40px !important;
  }
  .p-emanon .epb-margin-top__48-sp {
    margin-top: 48px !important;
  }
  .p-emanon .epb-margin-top__56-sp {
    margin-top: 56px !important;
  }
  .p-emanon .epb-margin-top__64-sp {
    margin-top: 64px !important;
  }
  .p-emanon .epb-margin-top__72-sp {
    margin-top: 72px !important;
  }
  .p-emanon .epb-margin-top__80-sp {
    margin-top: 80px !important;
  }
  .p-emanon .epb-margin-top__88-sp {
    margin-top: 88px !important;
  }
  .p-emanon .epb-margin-top__96-sp {
    margin-top: 96px !important;
  }
  .p-emanon .epb-margin-top__minus-8-sp {
    margin-top: -8px !important;
    z-index: 1;
  }
  .p-emanon .epb-margin-top__minus-16-sp {
    margin-top: -16px !important;
    z-index: 1;
  }
  .p-emanon .epb-margin-top__minus-24-sp {
    margin-top: -24px !important;
    z-index: 1;
  }
  .p-emanon .epb-margin-top__minus-32-sp {
    margin-top: -32px !important;
    z-index: 1;
  }
  .p-emanon .epb-margin-top__minus-40-sp {
    margin-top: -40px !important;
    z-index: 1;
  }
  .p-emanon .epb-margin-top__minus-48-sp {
    margin-top: -48px !important;
    z-index: 1;
  }
  .p-emanon .epb-margin-top__minus-56-sp {
    margin-top: -56px !important;
    z-index: 1;
  }
  .p-emanon .epb-margin-top__minus-64-sp {
    margin-top: -64px !important;
    z-index: 1;
  }
  .p-emanon .epb-margin-top__minus-72-sp {
    margin-top: -72px !important;
    z-index: 1;
  }
  .p-emanon .epb-margin-top__minus-80-sp {
    margin-top: -80px !important;
    z-index: 1;
  }
  .p-emanon .epb-margin-top__minus-88-sp {
    margin-top: -88px !important;
    z-index: 1;
  }
  .p-emanon .epb-margin-top__minus-96-sp {
    margin-top: -96px !important;
    z-index: 1;
  }
}
@media (min-width: 600px) and (max-width: 1199px) {
  .p-emanon .epb-margin-top__0-tablet {
    margin-top: 0 !important;
  }
  .p-emanon .epb-margin-top__8-tablet {
    margin-top: 8px !important;
  }
  .p-emanon .epb-margin-top__16-tablet {
    margin-top: 16px !important;
  }
  .p-emanon .epb-margin-top__24-tablet {
    margin-top: 24px !important;
  }
  .p-emanon .epb-margin-top__32-tablet {
    margin-top: 32px !important;
  }
  .p-emanon .epb-margin-top__40-tablet {
    margin-top: 40px !important;
  }
  .p-emanon .epb-margin-top__48-tablet {
    margin-top: 48px !important;
  }
  .p-emanon .epb-margin-top__56-tablet {
    margin-top: 56px !important;
  }
  .p-emanon .epb-margin-top__64-tablet {
    margin-top: 64px !important;
  }
  .p-emanon .epb-margin-top__72-tablet {
    margin-top: 72px !important;
  }
  .p-emanon .epb-margin-top__80-tablet {
    margin-top: 80px !important;
  }
  .p-emanon .epb-margin-top__88-tablet {
    margin-top: 88px !important;
  }
  .p-emanon .epb-margin-top__96-tablet {
    margin-top: 96px !important;
  }
  .p-emanon .epb-margin-top__minus-8-tablet {
    margin-top: -8px !important;
    z-index: 1;
  }
  .p-emanon .epb-margin-top__minus-16-tablet {
    margin-top: -16px !important;
    z-index: 1;
  }
  .p-emanon .epb-margin-top__minus-24-tablet {
    margin-top: -24px !important;
    z-index: 1;
  }
  .p-emanon .epb-margin-top__minus-32-tablet {
    margin-top: -32px !important;
    z-index: 1;
  }
  .p-emanon .epb-margin-top__minus-40-tablet {
    margin-top: -40px !important;
    z-index: 1;
  }
  .p-emanon .epb-margin-top__minus-48-tablet {
    margin-top: -48px !important;
    z-index: 1;
  }
  .p-emanon .epb-margin-top__minus-56-tablet {
    margin-top: -56px !important;
    z-index: 1;
  }
  .p-emanon .epb-margin-top__minus-64-tablet {
    margin-top: -64px !important;
    z-index: 1;
  }
  .p-emanon .epb-margin-top__minus-72-tablet {
    margin-top: -72px !important;
    z-index: 1;
  }
  .p-emanon .epb-margin-top__minus-80-tablet {
    margin-top: -80px !important;
    z-index: 1;
  }
  .p-emanon .epb-margin-top__minus-88-tablet {
    margin-top: -88px !important;
    z-index: 1;
  }
  .p-emanon .epb-margin-top__minus-96-tablet {
    margin-top: -96px !important;
    z-index: 1;
  }
}
@media screen and (min-width: 1200px) {
  .p-emanon .epb-margin-top__0 {
    margin-top: 0 !important;
  }
  .p-emanon .epb-margin-top__8 {
    margin-top: 8px !important;
  }
  .p-emanon .epb-margin-top__16 {
    margin-top: 16px !important;
  }
  .p-emanon .epb-margin-top__24 {
    margin-top: 24px !important;
  }
  .p-emanon .epb-margin-top__32 {
    margin-top: 32px !important;
  }
  .p-emanon .epb-margin-top__40 {
    margin-top: 40px !important;
  }
  .p-emanon .epb-margin-top__48 {
    margin-top: 48px !important;
  }
  .p-emanon .epb-margin-top__56 {
    margin-top: 56px !important;
  }
  .p-emanon .epb-margin-top__64 {
    margin-top: 64px !important;
  }
  .p-emanon .epb-margin-top__72 {
    margin-top: 72px !important;
  }
  .p-emanon .epb-margin-top__80 {
    margin-top: 80px !important;
  }
  .p-emanon .epb-margin-top__88 {
    margin-top: 88px !important;
  }
  .p-emanon .epb-margin-top__96 {
    margin-top: 96px !important;
  }
  .p-emanon .epb-margin-top__minus-8 {
    margin-top: -8px !important;
    z-index: 1;
  }
  .p-emanon .epb-margin-top__minus-16 {
    margin-top: -16px !important;
    z-index: 1;
  }
  .p-emanon .epb-margin-top__minus-24 {
    margin-top: -24px !important;
    z-index: 1;
  }
  .p-emanon .epb-margin-top__minus-32 {
    margin-top: -32px !important;
    z-index: 1;
  }
  .p-emanon .epb-margin-top__minus-40 {
    margin-top: -40px !important;
    z-index: 1;
  }
  .p-emanon .epb-margin-top__minus-48 {
    margin-top: -48px !important;
    z-index: 1;
  }
  .p-emanon .epb-margin-top__minus-56 {
    margin-top: -56px !important;
    z-index: 1;
  }
  .p-emanon .epb-margin-top__minus-64 {
    margin-top: -64px !important;
    z-index: 1;
  }
  .p-emanon .epb-margin-top__minus-72 {
    margin-top: -72px !important;
    z-index: 1;
  }
  .p-emanon .epb-margin-top__minus-80 {
    margin-top: -80px !important;
    z-index: 1;
  }
  .p-emanon .epb-margin-top__minus-88 {
    margin-top: -88px !important;
    z-index: 1;
  }
  .p-emanon .epb-margin-top__minus-96 {
    margin-top: -96px !important;
    z-index: 1;
  }
}
@media (min-width: 600px) and (max-width: 959px) {
  .p-emanon .epb-font-size-tablet {
    font-size: var(--epb-font-size-tablet);
  }
}
@media screen and (max-width: 599px) {
  .p-emanon .epb-font-size-sp {
    font-size: var(--epb-font-size-sp);
  }
}
@media (min-width: 600px) and (max-width: 959px) {
  .p-emanon .epb-font-size-tablet {
    font-size: var(--epb-font-size-tablet);
  }
}
.p-emanon .u-inline-icon {
  display: inline-block;
  margin-left: 0.1em;
  margin-right: 0.1em;
}
.p-emanon mark.epb-linemaker-yellow {
  background-color: #ff0;
  font-style: normal;
}
.p-emanon mark.epb-linemaker-red {
  background-color: #ffd0d1;
  font-style: normal;
}
.p-emanon mark.epb-linemaker-blue {
  background-color: #a8eaff;
  font-style: normal;
}
.p-emanon .epb-display-sp:before,
.p-emanon .epb-display-tablet:before {
  content: "\a";
  white-space: pre;
}
.p-emanon .epb-display-pc:before {
  content: "";
  white-space: normal;
}
@media screen and (min-width: 600px) {
  .p-emanon .epb-display-sp:before {
    content: "";
    white-space: normal;
  }
}
@media screen and (min-width: 1200px) {
  .p-emanon .epb-display-tablet:before {
    content: "";
    white-space: normal;
  }
  .p-emanon .epb-display-pc:before {
    content: "\a";
    white-space: pre;
  }
}
.p-emanon .epb-notes {
  color: #484848;
  font-size: 12px;
}
.p-emanon .epb-notes:before {
  content: "â€»";
  padding-left: 2px;
  padding-right: 2px;
}
.p-emanon [class*=epb-table-icon-] {
  align-items: center;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.p-emanon [class*=epb-table-icon-]:before {
  font-family: icomoon !important;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  speak: none;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
}
.p-emanon .epb-table-icon-double-circle:before {
  content: "î§›";
}
.p-emanon .epb-table-icon-circle:before {
  content: "î¥Ž";
}
.p-emanon .epb-table-icon-triangle:before {
  content: "î¦¼";
}
.p-emanon .epb-table-icon-close:before {
  content: "î¥";
}
.p-emanon .epb-table-icon-checkmark:before {
  content: "î¨";
}
.p-emanon .epb-table-icon-alert:before {
  content: "î¥·";
}
.p-emanon .epb-underline,
.p-emanon .epb-underline-hover:hover {
  text-decoration-line: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}
.p-emanon .epb-underline-hover:hover {
  transition: all 0.3s ease;
}
.p-emanon .epb-underline-dashed {
  border-bottom: 1px dashed #7c95a8;
  padding-bottom: 1px;
}
.p-emanon .epb-underline-wavy {
  text-decoration-color: #7c95a8;
  text-decoration-line: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  text-decoration-style: wavy;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.p-emanon .epb-underline-yellow {
  background: linear-gradient(transparent 60%, #ff0 0);
}
.p-emanon .epb-underline-red {
  background: linear-gradient(transparent 60%, #ffd0d1 0);
}
.p-emanon .epb-underline-blue {
  background: linear-gradient(transparent 60%, #a8eaff 0);
}
.p-emanon .epb-x-large-text {
  font-size: 26px;
}
.p-emanon .epb-large-text {
  font-size: 21px;
}
.p-emanon .epb-normal-text {
  font-size: 16px;
}
.p-emanon .epb-small-text {
  font-size: 12.8px;
}
@media screen and (max-width: 599px) {
  .p-emanon .epb-small-text-sp {
    font-size: 12.8px;
  }
}
.p-emanon .has-warning-color {
  color: #dc3545 !important;
}
.p-emanon .wp-block-image .aligncenter,
.p-emanon .wp-block-image .alignleft,
.p-emanon .wp-block-image .alignright,
.p-emanon .wp-block-image.aligncenter,
.p-emanon .wp-block-image.alignleft,
.p-emanon .wp-block-image.alignright {
  display: table;
}
.p-emanon .aligncenter {
  text-align: center;
  clear: both;
  display: block;
  margin-left: auto !important;
  margin-right: auto !important;
}
.p-emanon .article-body > *:not([class*=epb-spacer]):not([class*=epb-container-box]):not(:first-child):not(.product) {
  margin-top: 40px;
}
.p-emanon .epb-panel {
  position: relative;
  transition: all 0.3s ease;
}
.p-emanon .wp-block-column .epb-panel,
.p-emanon .wp-block-column .epb-panel__wrapper {
  height: 100%;
}
.p-emanon .epb-panel[class*=is-style-epb-panel-bracket-left-right-square-],
.p-emanon .epb-panel[class*=is-style-epb-panel-bracket-square-] {
  padding: 1px;
}
.p-emanon .epb-panel__wrapper {
  margin: var(--epb-wrapper-margin);
}
.p-emanon .epb-panel.is-style-epb-custom-content .epb-panel__wrapper {
  margin: 0 auto !important;
  max-width: 100%;
  width: var(--epb-content-width);
}
.p-emanon .epb-panel__wrapper > :nth-child(n+2) {
  margin-top: 16px;
}
.p-emanon .epb-panel__link,
.p-emanon .epb-panel__link:hover {
  color: inherit;
  text-decoration: none;
}
.p-emanon .epb-panel-shadow .epb-panel__wrapper {
  box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.08);
}
.p-emanon .epb-panel-slanted {
  transform: skewX(-12deg);
}
.p-emanon .epb-hover-floating-shadow {
  backface-visibility: hidden;
  position: relative;
  top: 0;
}
.p-emanon .epb-hover-floating-shadow:hover {
  box-shadow: 0 1px 12px 0 rgba(0, 0, 0, 0.1);
  top: -3px;
}
.p-emanon .epb-hover-floating {
  backface-visibility: hidden;
  position: relative;
  top: 0;
}
.p-emanon .epb-hover-floating:hover {
  top: -3px;
}
.p-emanon .epb-hover-zoom:hover {
  transform: scale(1.023);
}
.p-emanon .epb-panel__bottom,
.p-emanon .epb-panel__top {
  position: relative;
}
.p-emanon .epb-panel[class*=is-style-epb-panel-bracket-square-] .epb-panel__bottom:after,
.p-emanon .epb-panel[class*=is-style-epb-panel-bracket-square-] .epb-panel__bottom:before,
.p-emanon .epb-panel[class*=is-style-epb-panel-bracket-square-] .epb-panel__top:after,
.p-emanon .epb-panel[class*=is-style-epb-panel-bracket-square-] .epb-panel__top:before {
  content: "";
  position: absolute;
}
.p-emanon .epb-panel[class*=is-style-epb-panel-bracket-square-] .epb-panel__top:after {
  border-left: var(--epb-style-size) solid var(--epb-style-color);
  border-top: var(--epb-style-size) solid var(--epb-style-color);
  left: 0;
  top: 0;
}
.p-emanon .epb-panel[class*=is-style-epb-panel-bracket-square-] .epb-panel__top:before {
  border-right: var(--epb-style-size) solid var(--epb-style-color);
  border-top: var(--epb-style-size) solid var(--epb-style-color);
  right: 0;
  top: 0;
}
.p-emanon .epb-panel[class*=is-style-epb-panel-bracket-square-] .epb-panel__bottom:after {
  border-bottom: var(--epb-style-size) solid var(--epb-style-color);
  border-left: var(--epb-style-size) solid var(--epb-style-color);
  bottom: 0;
  left: 0;
}
.p-emanon .epb-panel[class*=is-style-epb-panel-bracket-square-] .epb-panel__bottom:before {
  border-bottom: var(--epb-style-size) solid var(--epb-style-color);
  border-right: var(--epb-style-size) solid var(--epb-style-color);
  bottom: 0;
  right: 0;
}
.p-emanon .epb-panel.is-style-epb-panel-box-shadow {
  box-shadow: var(--epb-style-offset-x) var(--epb-style-offset-y) 0 var(--epb-style-background-color);
  opacity: var(--epb-style-background-opacity);
}
.p-emanon .epb-panel.is-style-epb-panel-box-shadow.is-style-epb-radius__3 {
  border-radius: 3px;
}
.p-emanon .epb-panel.is-style-epb-panel-box-shadow.is-style-epb-radius__10 {
  border-radius: 10px;
}
.p-emanon .epb-panel.is-style-epb-panel-box-shadow.is-style-epb-radius__25 {
  border-radius: 25px;
}
.p-emanon .epb-panel.is-style-epb-panel-bracket-square-8 .epb-panel__bottom:after,
.p-emanon .epb-panel.is-style-epb-panel-bracket-square-8 .epb-panel__bottom:before,
.p-emanon .epb-panel.is-style-epb-panel-bracket-square-8 .epb-panel__top:after,
.p-emanon .epb-panel.is-style-epb-panel-bracket-square-8 .epb-panel__top:before {
  height: 8px;
  width: 8px;
}
.p-emanon .epb-panel.is-style-epb-panel-bracket-square-16 .epb-panel__bottom:after,
.p-emanon .epb-panel.is-style-epb-panel-bracket-square-16 .epb-panel__bottom:before,
.p-emanon .epb-panel.is-style-epb-panel-bracket-square-16 .epb-panel__top:after,
.p-emanon .epb-panel.is-style-epb-panel-bracket-square-16 .epb-panel__top:before {
  height: 16px;
  width: 16px;
}
.p-emanon .epb-panel.is-style-epb-panel-bracket-square-32 .epb-panel__bottom:after,
.p-emanon .epb-panel.is-style-epb-panel-bracket-square-32 .epb-panel__bottom:before,
.p-emanon .epb-panel.is-style-epb-panel-bracket-square-32 .epb-panel__top:after,
.p-emanon .epb-panel.is-style-epb-panel-bracket-square-32 .epb-panel__top:before {
  height: 32px;
  width: 32px;
}
.p-emanon .epb-panel[class*=is-style-epb-panel-bracket-left-right-square-] .epb-panel__bottom:before,
.p-emanon .epb-panel[class*=is-style-epb-panel-bracket-left-right-square-] .epb-panel__top:after {
  content: "";
  position: absolute;
}
.p-emanon .epb-panel[class*=is-style-epb-panel-bracket-left-right-square-] .epb-panel__top:after {
  border-left: var(--epb-style-size) solid var(--epb-style-color);
  border-top: var(--epb-style-size) solid var(--epb-style-color);
  left: 0;
  top: 0;
}
.p-emanon .epb-panel[class*=is-style-epb-panel-bracket-left-right-square-] .epb-panel__bottom:before {
  border-bottom: var(--epb-style-size) solid var(--epb-style-color);
  border-right: var(--epb-style-size) solid var(--epb-style-color);
  bottom: 0;
  right: 0;
}
.p-emanon .epb-panel.is-style-epb-panel-bracket-left-right-square-8 .epb-panel__bottom:before,
.p-emanon .epb-panel.is-style-epb-panel-bracket-left-right-square-8 .epb-panel__top:after {
  height: 8px;
  width: 8px;
}
.p-emanon .epb-panel.is-style-epb-panel-bracket-left-right-square-16 .epb-panel__bottom:before,
.p-emanon .epb-panel.is-style-epb-panel-bracket-left-right-square-16 .epb-panel__top:after {
  height: 16px;
  width: 16px;
}
.p-emanon .epb-panel.is-style-epb-panel-bracket-left-right-square-32 .epb-panel__bottom:before,
.p-emanon .epb-panel.is-style-epb-panel-bracket-left-right-square-32 .epb-panel__top:after {
  height: 32px;
  width: 32px;
}
.p-emanon .epb-panel.is-style-epb-radius__0 .epb-panel__wrapper {
  border-radius: 0;
}
.p-emanon .epb-panel.is-style-epb-radius__3 .epb-panel__wrapper {
  border-radius: 3px;
}
.p-emanon .epb-panel.is-style-epb-radius__10 .epb-panel__wrapper {
  border-radius: 10px;
}
.p-emanon .epb-panel.is-style-epb-radius__25 .epb-panel__wrapper {
  border-radius: 25px;
}
.p-emanon .epb-panel__wrapper > * {
  margin-bottom: 0;
}
.p-emanon .block-icon-list-wrapper {
  align-items: center;
  border: 1px solid #e5e7e8;
  border-radius: 3px;
  box-sizing: border-box;
  display: flex;
  padding: 12px;
}
.p-emanon .block-icon-list-wrapper i {
  border-right: 1px solid #e5e7e8;
  font-size: 14px;
  margin-right: 10px;
  padding-right: 8px;
}
.p-emanon .block-icon-list-wrapper a {
  text-decoration: none;
}
.p-emanon .block-icon-list-heading {
  width: 100%;
}
.p-emanon .eb-block-icon-list i[data-fontweight=normal] {
  font-weight: 400;
}
.p-emanon .eb-block-icon-list i[data-fontweight=bold] {
  font-weight: 700;
}
.p-emanon .block-icon-list-heading[data-fontweight=normal] {
  font-weight: 400;
}
.p-emanon .block-icon-list-heading[data-fontweight=bold] {
  font-weight: 700;
}
.p-emanon .block-faq-wrapper {
  border-color: #e5e7e8;
  box-sizing: border-box;
}
.p-emanon .block-faq-question-inner {
  cursor: pointer;
  display: flex;
  font-size: 16px;
  line-height: 2;
  position: relative;
  transition: all 0.3s ease;
}
.p-emanon .block-faq-question-inner.toggle-trigger:before {
  color: #999;
  content: "\e943";
  font-family: icomoon;
  font-size: 16px;
  position: absolute;
  right: 4px;
  top: 0;
  transition: all 0.3s ease;
}
.p-emanon .block-faq-question-inner.toggle-trigger:hover:before {
  color: #efefef;
  transform: translateY(4px);
}
.p-emanon .block-faq-question-inner.toggle-trigger.clicked:before {
  color: #e2e5e8;
  transform: translateY(0);
}
.p-emanon .block-faq-question-icon {
  align-items: center;
  background-color: #666;
  border: 1px solid #666;
  color: #fff;
  display: flex;
  font-family: Arial, sans-serif;
  font-size: 1.6ren;
  height: 32px;
  justify-content: center;
  margin-right: 16px;
  min-width: 32px;
  text-align: center;
}
.p-emanon .block-faq-question {
  overflow: hidden;
}
.p-emanon .block-faq-question-inner.toggle-trigger .block-faq-question {
  padding-right: 32px;
}
.p-emanon .block-faq-answer-inner {
  display: flex;
  margin-top: 16px;
}
.p-emanon .block-faq-answer-inner:after {
  clear: both;
  content: "";
  display: block;
}
.p-emanon .block-faq-answer-icon {
  align-items: center;
  background-color: #fff;
  border: 1px solid #999;
  display: flex;
  float: left;
  font-family: Arial, sans-serif;
  font-size: 16px;
  height: 32px;
  justify-content: center;
  margin-right: 16px;
  min-width: 32px;
  text-align: center;
}
.p-emanon .block-faq-answer-inner.display-none {
  display: none;
}
.p-emanon .block-faq-answer {
  line-height: 32px;
  overflow: hidden;
}
.p-emanon .has-eb-shadow {
  box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.08);
}
.p-emanon .eb-block-faq.is-style-eb-solid {
  border-style: solid;
}
.p-emanon .eb-block-faq.is-style-eb-dashed {
  border-style: dashed;
}
.p-emanon .eb-block-faq.is-style-eb-double {
  border-style: double;
}
.p-emanon .eb-block-faq.is-style-eb-none {
  border-style: none;
}
.p-emanon .eb-block-faq.is-style-eb-radius__0 {
  border-radius: 0;
}
.p-emanon .eb-block-faqis-style-eb-radius__3 {
  border-radius: 3px;
}
.p-emanon .eb-block-faq.is-style-eb-radius__10 {
  border-radius: 10px;
}
.p-emanon .eb-block-faq.is-style-eb-radius__25 {
  border-radius: 25px;
}
.p-emanon .eb-block-faq.is-style-eb-q-circle .block-faq-question-icon {
  border-radius: 50%;
  border-style: solid;
  border-width: 1px;
}
.p-emanon .eb-block-faq.is-style-eb-q-square .block-faq-question-icon {
  border-style: solid;
  border-width: 1px;
}
.p-emanon .eb-block-faq.is-style-eb-q-rounded .block-faq-question-icon {
  border-radius: 3px;
  border-style: solid;
  border-width: 1px;
}
.p-emanon .eb-block-faq.is-style-eb-q-normal .block-faq-question-icon {
  border-style: none;
  border-width: 0;
}
.p-emanon .eb-block-faq.is-style-eb-a-circle .block-faq-answer-icon {
  border-radius: 50%;
  border-style: solid;
  border-width: 1px;
}
.p-emanon .eb-block-faq.is-style-eb-a-square .block-faq-answer-icon {
  border-style: solid;
  border-width: 1px;
}
.p-emanon .eb-block-faq.is-style-eb-a-rounded .block-faq-answer-icon {
  border-radius: 3px;
  border-style: solid;
  border-width: 1px;
}
.p-emanon .eb-block-faq.is-style-eb-a-normal .block-faq-answer-icon {
  border-style: none;
  border-width: 0;
}

.founding-num {
  font-size: 91px !important;
}
@media screen and (max-width: 1268px) {
  .founding-num {
    font-size: 80px !important;
  }
}
@media screen and (max-width: 468px) {
  .founding-num {
    font-size: 60px !important;
  }
}

.main--intro {
  margin-bottom: -8rem;
  padding-bottom: 10rem;
}
.main--intro img {
  display: inline;
}

.contact-form input[type=text],
.contact-form input[type=email],
.contact-form input[type=url],
.contact-form input[type=password],
.contact-form input[type=search],
.contact-form input[type=number],
.contact-form input[type=tel],
.contact-form input[type=date],
.contact-form input[type=month],
.contact-form input[type=week],
.contact-form input[type=time],
.contact-form input[type=datetime],
.contact-form input[type=datetime-local],
.contact-form textarea {
  -webkit-appearance: none;
  appearance: none;
  padding-top: 6px;
  padding-bottom: 6px;
  padding-right: 12px;
  padding-left: 12px;
  width: 100%;
  border-radius: 3px;
  background-color: #fff;
  border: 1px solid #b8bcc0;
  transition: all 0.2s ease-in;
  letter-spacing: 0.04em;
  font-family: inherit;
  font-size: 1;
}
.contact-form select {
  padding-right: 8px;
  padding-left: 8px;
  width: 100%;
  height: 32px;
  background-color: #fff;
  border: 1px solid #b8bcc0;
  border-radius: 3px;
  letter-spacing: 0.04em;
  font-family: inherit;
  font-size: 16px;
  text-transform: none;
  -webkit-appearance: none;
  appearance: none;
}
.contact-form button,
.contact-form input[type=button],
.contact-form input[type=submit] {
  color: #fff;
}

.content__image {
  display: inline;
}

.about {
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .about {
    padding-bottom: 40px;
  }
}

.form {
  padding-bottom: 13rem;
  margin-bottom: -5rem;
}

.lpcontent-sliders {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  .lpcontent-sliders {
    grid-template-columns: repeat(1, 1fr);
  }
}
.lpcontent-sliders img {
  width: 100%;
}/*# sourceMappingURL=style.css.map */