@charset "UTF-8";
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  width: 100%;
  overflow-x: hidden;
  text-rendering: optimizeSpeed;
  -webkit-text-size-adjust: 100%;
}

* {
  box-sizing: border-box;
  margin: 0;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}
*::before, *::after {
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  padding: 0;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.8;
}

p {
  padding: 0;
}

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

address {
  font-style: normal;
}

img,
svg,
picture,
video,
canvas,
iframe {
  display: block;
  max-width: 100%;
  height: auto;
  border: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}
table th {
  font-weight: 400;
  text-align: left;
}

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

input,
button,
select,
textarea {
  appearance: none;
  background-color: transparent;
  border: none;
  border-radius: 0;
  font-family: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox], input[type=radio] {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}
input[type=number], input[type=month], input[type=datetime-local], input[type=week], input[type=time], input[type=date] {
  appearance: textfield;
}
input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button, input[type=month]::-webkit-outer-spin-button, input[type=month]::-webkit-inner-spin-button, input[type=datetime-local]::-webkit-outer-spin-button, input[type=datetime-local]::-webkit-inner-spin-button, input[type=week]::-webkit-outer-spin-button, input[type=week]::-webkit-inner-spin-button, input[type=time]::-webkit-outer-spin-button, input[type=time]::-webkit-inner-spin-button, input[type=date]::-webkit-outer-spin-button, input[type=date]::-webkit-inner-spin-button {
  display: none;
}
input[type=date]::-webkit-clear-button, input[type=month]::-webkit-clear-button, input[type=datetime-local]::-webkit-clear-button, input[type=time]::-webkit-clear-button, input[type=week]::-webkit-clear-button {
  appearance: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #0E0E0E;
  font-optical-sizing: auto;
}
@media (min-width: 768px) {
  body {
    font-size: 16px;
  }
}

.text-lato {
  font-family: "Lato", sans-serif;
}

body {
  position: relative;
  background-color: #FAF6EB;
}
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/assets/img/common/bg.webp");
  background-repeat: repeat;
  background-size: 1500px 748px;
  opacity: 0.25;
  z-index: -1;
  pointer-events: none;
}

a {
  display: block;
  color: #0E0E0E;
  transition: 0.5s;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
@media (hover: hover) {
  a:hover {
    color: #0E0E0E;
    text-decoration: none;
    opacity: 0.8;
  }
}

img {
  width: 100%;
}

main {
  display: block;
}

.l-main {
  margin-top: 18.6666666667vw;
}
@media (min-width: 768px) {
  .l-main {
    margin-top: 120px;
  }
}

.l-section {
  padding: 16vw 0;
  position: relative;
}
@media (min-width: 768px) {
  .l-section {
    padding: 80px 0;
  }
}

.l-container {
  margin: 0 auto;
  width: 89.3333333333vw;
  max-width: 670px;
}
@media (min-width: 768px) {
  .l-container {
    width: 1080px;
    max-width: none;
  }
}
.l-container--small {
  margin: 0 auto;
  width: 89.3333333333vw;
  max-width: 670px;
}
@media (min-width: 768px) {
  .l-container--small {
    width: 900px;
    max-width: none;
  }
}

@keyframes InfinityLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.u-infinity-loop {
  animation: InfinityLoop 30s linear infinite;
  will-change: transform;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.u-spin {
  animation: spin 30s linear infinite;
  will-change: transform;
}

.c-arrow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 6.4vw;
  height: 6.4vw;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
}
@media (min-width: 768px) {
  .c-arrow {
    width: 30px;
    height: 30px;
  }
}
.c-arrow::after {
  content: "";
  width: 1.3333333333vw;
  height: 1.3333333333vw;
  margin: 0 0 0 -0.4vw;
  border-top: 0.4vw solid #0E0E0E;
  border-right: 0.4vw solid #0E0E0E;
  transform: rotate(45deg);
}
@media (min-width: 768px) {
  .c-arrow::after {
    width: 8px;
    height: 8px;
    margin: 0 0 0 -2px;
    border-top: 2px solid #0E0E0E;
    border-right: 2px solid #0E0E0E;
  }
}
.c-arrow--green {
  background-color: #d1f4f9;
}
.c-arrow--green::after {
  border-top: 0.4vw solid #009DA5;
  border-right: 0.4vw solid #009DA5;
}
@media (min-width: 768px) {
  .c-arrow--green::after {
    border-top: 2px solid #009DA5;
    border-right: 2px solid #009DA5;
  }
}
.c-arrow--red {
  background-color: #fce1e4;
}
.c-arrow--red::after {
  border-top: 0.4vw solid #EE1B28;
  border-right: 0.4vw solid #EE1B28;
}
@media (min-width: 768px) {
  .c-arrow--red::after {
    border-top: 2px solid #EE1B28;
    border-right: 2px solid #EE1B28;
  }
}

.c-badge {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 13.3333333333vw;
  height: 5.3333333333vw;
  border-radius: 4px;
  color: #fff;
  line-height: 1;
}
@media (min-width: 768px) {
  .c-badge {
    width: 70px;
    height: 28px;
    border-radius: 2px;
    font-size: 14px;
  }
}
.c-badge--required {
  background-color: #EE1B28;
}
.c-badge--optional {
  background-color: #009DA5;
}

.b-banner-card {
  position: relative;
  background-color: #fff;
  border: 0.8vw solid #009DA5;
  border-radius: 2vw;
}
@media (min-width: 768px) {
  .b-banner-card {
    border: 5px solid #009DA5;
    border-radius: 20px;
  }
}
.b-banner-card__inner {
  padding: 5.3333333333vw 5.8666666667vw 8.8vw 5.8666666667vw;
}
@media (min-width: 768px) {
  .b-banner-card__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 25px;
    padding: 30px 45px 30px 45px;
  }
  .b-banner-card__inner:has(.b-banner-card__logo-wrap) {
    gap: 50px;
  }
}
.b-banner-card__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 4vw;
}
@media (min-width: 768px) {
  .b-banner-card__header {
    gap: 25px;
  }
}
.b-banner-card__icon {
  width: 18.6666666667vw;
}
@media (min-width: 768px) {
  .b-banner-card__icon {
    width: 100px;
  }
}
.b-banner-card__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .b-banner-card__title {
    width: 250px;
    font-size: 26px;
  }
}
.b-banner-card__text {
  margin: 1.0666666667vw 0 0;
  font-size: 16px;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .b-banner-card__text {
    margin: 0;
    font-size: 16px;
  }
}
.b-banner-card__logo-wrap {
  width: 63.0666666667vw;
  margin: 0 auto;
}
.b-banner-card__logo-wrap + .b-banner-card__text {
  margin: 2.8vw 0 0;
}
@media (min-width: 768px) {
  .b-banner-card__logo-wrap {
    width: 270px;
    margin: 0;
  }
  .b-banner-card__logo-wrap + .b-banner-card__text {
    margin: 0;
  }
}
.b-banner-card__arrow {
  position: absolute;
  right: 4vw;
  bottom: 4vw;
}
@media (min-width: 768px) {
  .b-banner-card__arrow {
    right: 32px;
    bottom: 32px;
  }
}
.b-banner-card--green {
  border-color: #009DA5;
}
.b-banner-card--red {
  border-color: #EE1B28;
}
.b-banner-card--gray {
  border-color: #CDCBC3;
}
.b-banner-card--center {
  text-align: center;
}
@media (min-width: 768px) {
  .b-banner-card--center {
    text-align: left;
  }
}
.b-banner-card--center .b-banner-card__inner {
  padding: 5.6vw 0 5.6vw 0;
}
@media (min-width: 768px) {
  .b-banner-card--center .b-banner-card__inner {
    padding: 45px 55px 45px 55px;
  }
}

.b-breadcrumb {
  position: relative;
  padding: 2.9866666667vw 0;
  overflow: visible;
}
@media (min-width: 768px) {
  .b-breadcrumb {
    padding: 13px 0;
  }
}
.b-breadcrumb::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: #D7A100;
  opacity: 0.15;
  pointer-events: none;
}
.b-breadcrumb__list {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  margin-right: calc(50% - 50vw);
  padding-right: 5.3333333333vw;
  scrollbar-width: none;
}
.b-breadcrumb__list::-webkit-scrollbar {
  display: none;
}
@media (min-width: 768px) {
  .b-breadcrumb__list {
    margin-right: 0;
    padding-right: 0;
    overflow-x: visible;
  }
}
.b-breadcrumb__item {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  line-height: 1.1;
}
.b-breadcrumb__item a {
  color: #009DA5;
  text-decoration: underline;
}
.b-breadcrumb__item:not(:last-child) {
  position: relative;
  margin-right: 4.2666666667vw;
}
@media (min-width: 768px) {
  .b-breadcrumb__item:not(:last-child) {
    margin-right: 24px;
  }
}
.b-breadcrumb__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -2.6666666667vw;
  width: 1.6vw;
  height: 1.6vw;
  border-top: 2px solid #0E0E0E;
  border-right: 2px solid #0E0E0E;
  border-radius: 1px;
  transform: translateY(-50%) rotate(45deg);
}
@media (min-width: 768px) {
  .b-breadcrumb__item:not(:last-child)::after {
    right: -16px;
    width: 8px;
    height: 8px;
  }
}

.c-btn-submit {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 69.3333333333vw;
  height: 12vw;
  background-color: #009DA5;
  border-radius: 100vmax;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 1.0666666667vw 0 rgba(0, 0, 0, 0.15);
  margin: 0 auto;
}
@media (min-width: 768px) {
  .c-btn-submit {
    width: 320px;
    height: 50px;
    font-size: 16px;
    box-shadow: 0 6px 0 rgba(0, 0, 0, 0.15);
    transition: 0.2s ease-in-out;
    top: 0;
  }
  .c-btn-submit:hover {
    color: #fff;
    opacity: 1;
    box-shadow: 0 0px 0 rgba(0, 0, 0, 0);
    top: 6px;
  }
}
.c-btn-submit::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 4.5333333333vw;
  transform: translateY(-50%) rotate(45deg);
  width: 1.8666666667vw;
  height: 1.8666666667vw;
  border-top: 0.4vw solid #fff;
  border-right: 0.4vw solid #fff;
}
@media (min-width: 768px) {
  .c-btn-submit::after {
    right: 23px;
    width: 12px;
    height: 12px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
  }
}
.c-btn-submit:disabled {
  opacity: 0.5;
  pointer-events: none;
}

.c-btn {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.3333333333vw;
  width: 75vw;
  height: 14vw;
  margin: 0 auto;
  font-weight: 700;
  color: #fff;
  border-radius: 100vmax;
  box-shadow: 0px 1.0666666667vw 0px rgba(0, 0, 0, 0.15);
}
@media (min-width: 768px) {
  .c-btn {
    gap: 6px;
    width: 370px;
    height: 60px;
    box-shadow: 0px 6px 0px rgba(0, 0, 0, 0.15);
    top: 0;
    transition: 0.2s ease-in-out;
  }
  .c-btn:hover {
    color: #fff;
    opacity: 1;
    top: 6px;
    box-shadow: 0 0px 0 rgba(0, 0, 0, 0);
  }
}
.c-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 4.5333333333vw;
  width: 1.8666666667vw;
  height: 1.8666666667vw;
  border-top: 0.4vw solid #fff;
  border-right: 0.4vw solid #fff;
  transform: translateY(-50%) rotate(45deg);
}
@media (min-width: 768px) {
  .c-btn::after {
    right: 23px;
    width: 12px;
    height: 12px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
  }
}
.c-btn__icon {
  width: 3.2vw;
}
@media (min-width: 768px) {
  .c-btn__icon {
    width: 20px;
  }
}
.c-btn__text {
  line-height: 1;
}
.c-btn--green {
  background-color: #009DA5;
}
.c-btn--red {
  background-color: #EE1B28;
}
.c-btn--yellow {
  background-color: #D7A100;
}
.c-btn--cta {
  gap: 2.1333333333vw;
  width: 75vw;
}
@media (min-width: 768px) {
  .c-btn--cta {
    gap: 14px;
    width: 350px;
  }
}
.c-btn--cta.c-btn--yellow .c-btn__icon {
  width: 4.8vw;
}
@media (min-width: 768px) {
  .c-btn--cta.c-btn--yellow .c-btn__icon {
    width: 24px;
  }
}
.c-btn--cta.c-btn--yellow .c-btn__text {
  font-size: 16px;
}
@media (min-width: 768px) {
  .c-btn--cta.c-btn--yellow .c-btn__text {
    font-size: 16px;
  }
}
.c-btn--cta.c-btn--red .c-btn__icon {
  width: 5.3333333333vw;
}
@media (min-width: 768px) {
  .c-btn--cta.c-btn--red .c-btn__icon {
    width: 24px;
  }
}
.c-btn--cta.c-btn--red .c-btn__text {
  font-size: 24px;
  margin: -0.16em 0 0;
}
@media (min-width: 768px) {
  .c-btn--cta.c-btn--red .c-btn__text {
    font-size: 32px;
  }
}
.c-btn--wide {
  width: 74.6666666667vw;
}
@media (min-width: 768px) {
  .c-btn--wide {
    width: 370px;
    margin: 0;
  }
}

.c-checkbox {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.c-checkbox input[type=checkbox] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.c-checkbox input[type=checkbox]:checked + .c-checkbox__text::before {
  border-color: #009DA5;
  background-color: #009DA5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 80%;
}
.c-checkbox__text {
  display: inline-flex;
  align-items: center;
  position: relative;
  padding: 0 0 0 8vw;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .c-checkbox__text {
    padding: 0 0 0 34px;
    font-size: 16px;
  }
}
.c-checkbox__text::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 5.8666666667vw;
  height: 5.8666666667vw;
  background-color: #fff;
  border: 0.5333333333vw solid #009DA5;
  border-radius: 1.0666666667vw;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .c-checkbox__text::before {
    width: 24px;
    height: 24px;
    border: 2px solid #009DA5;
    border-radius: 4px;
  }
}

.b-circle-ttl {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 500;
  position: relative;
  padding-left: 11.2vw;
}
@media (min-width: 768px) {
  .b-circle-ttl {
    font-size: 24px;
    padding-left: 52px;
  }
}
.b-circle-ttl::before, .b-circle-ttl::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 5.3333333333vw;
  height: 5.3333333333vw;
  border-style: solid;
  border-width: 0.5333333333vw;
  border-radius: 50%;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .b-circle-ttl::before, .b-circle-ttl::after {
    width: 24px;
    height: 24px;
    border-width: 3px;
  }
}
.b-circle-ttl::before {
  left: 0;
  border-color: #009DA5;
}
.b-circle-ttl::after {
  left: 3.7333333333vw;
  border-color: #EE1B28;
  z-index: 1;
}
@media (min-width: 768px) {
  .b-circle-ttl::after {
    left: 16px;
  }
}

.b-clients__lead {
  margin: 8vw 0 0;
}
@media (min-width: 768px) {
  .b-clients__lead {
    margin: 45px 0 0;
  }
}
.b-clients__lead-text {
  font-size: 16px;
  line-height: 2;
}
@media (min-width: 768px) {
  .b-clients__lead-text {
    font-size: 16px;
    text-align: center;
  }
}
.b-clients__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 2.6666666667vw;
  margin: 6.4vw 0 0;
}
@media (min-width: 768px) {
  .b-clients__grid {
    gap: 13px;
    margin: 42px 0 0;
  }
}
.b-clients__item {
  width: calc((100% - 2.6666666667vw) / 2);
  height: 16vw;
  background-color: #fff;
  border-radius: 0.8vw;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  .b-clients__item {
    width: calc((100% - 39px) / 4);
    height: 100px;
    border-radius: 10px;
  }
}
.b-clients__logo {
  width: 80%;
  aspect-ratio: 600/210;
  object-fit: contain;
}
.b-clients__footer {
  margin: 6.4vw 0 0;
}
@media (min-width: 768px) {
  .b-clients__footer {
    margin: 25px 0 0;
  }
}
.b-clients__footer-text {
  font-size: 14px;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .b-clients__footer-text {
    font-size: 15px;
    text-align: center;
    text-indent: -0.05em;
  }
}

.p-common-cta {
  padding: 16vw 0 16vw 0;
  color: #fff;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15)), rgba(0, 157, 165, 0.8);
  background-blend-mode: normal, multiply;
}
@media (min-width: 768px) {
  .p-common-cta {
    padding: 80px 0 86px 0;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15)), linear-gradient(rgba(0, 157, 165, 0.8), rgba(0, 157, 165, 0.8)), url("/assets/img/common/cta-bg.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: normal, multiply, normal;
  }
}
.p-common-cta__lead {
  margin: 8vw 0 0;
  font-size: 16px;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .p-common-cta__lead {
    margin: 45px 0 0;
    font-size: 16px;
    text-align: center;
  }
}
.p-common-cta__btns {
  margin: 8vw 0 0;
}
@media (min-width: 768px) {
  .p-common-cta__btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 100px;
    margin: 62px 0 0;
  }
}
.p-common-cta__btn-wrapper {
  text-align: center;
}
.p-common-cta__btn-wrapper:not(:first-child) {
  margin: 7.2vw 0 0;
}
@media (min-width: 768px) {
  .p-common-cta__btn-wrapper:not(:first-child) {
    margin: 0;
  }
}
.p-common-cta__btn-note {
  display: inline-block;
  margin: 4vw 0 0;
  line-height: 1.8;
  text-align: left;
}
@media (min-width: 768px) {
  .p-common-cta__btn-note {
    margin: 15px 0 0;
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
  }
}

/**
 * Contact Button Block
 *
 * お問い合わせ／電話のCTAボタン。
 * ヘッダーのナビゲーション内・追従CTAなど、Blockをまたいで再利用する。
 *
 * @example
 * <a href="/contact/" class="c-contact-btn c-contact-btn--mail">
 *   <span class="c-contact-btn__icon"><img src="..." alt=""></span>
 *   <span class="c-contact-btn__text">お問い合わせ</span>
 * </a>
 */
.c-contact-btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 10.6666666667vw;
  margin: 0;
  font-weight: 900;
  color: #fff;
  border-radius: 1.0666666667vw;
}
.c-contact-btn--mail {
  gap: 2.9333333333vw;
  background-color: #009DA5;
  font-size: 16px;
}
.c-contact-btn--tel {
  gap: 1.0666666667vw;
  background-color: #EE1B28;
  font-size: 18px;
}
.c-contact-btn__icon {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.c-contact-btn--mail .c-contact-btn__icon {
  width: 4.8vw;
  height: 3.7333333333vw;
}
.c-contact-btn--tel .c-contact-btn__icon {
  width: 4.2666666667vw;
  height: 4.2666666667vw;
}
.c-contact-btn__text {
  line-height: 1;
}

.f-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 999;
  width: 100%;
}
.f-cta__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
}
.f-cta .f-cta__btn {
  width: 50%;
  height: 13.3333333333vw;
  border-radius: 0;
  margin: 0;
}

.footer {
  padding: 0 0 13.3333333333vw;
  background-color: #fff;
}
@media (min-width: 768px) {
  .footer {
    padding: 0;
  }
}
.footer__inner {
  padding: 6.6666666667vw 0 10.6666666667vw;
}
@media (min-width: 768px) {
  .footer__inner {
    padding: 60px 0;
  }
}
@media (min-width: 768px) {
  .footer__row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.footer__profile {
  text-align: center;
}
@media (min-width: 768px) {
  .footer__profile {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    order: 1;
    gap: 24px;
    text-align: left;
  }
}
.footer__logo {
  width: 69.6vw;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .footer__logo {
    flex-shrink: 0;
    width: 300px;
    margin: 0;
  }
}
.footer__catchphrase {
  margin: 5.3333333333vw 0 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.66;
  text-indent: -0.05em;
}
@media (min-width: 768px) {
  .footer__catchphrase {
    margin: 0;
    font-size: 20px;
  }
}
.footer__banners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 10.6666666667vw 0 0;
  gap: 2.4vw;
}
@media (min-width: 768px) {
  .footer__banners {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    order: 3;
    width: auto;
    margin: 64px 0 0;
    gap: 20px;
  }
}
.footer__banner-item:nth-child(1) {
  width: 59.2vw;
}
.footer__banner-item:nth-child(1) img {
  aspect-ratio: 888/336;
  object-fit: contain;
}
@media (min-width: 768px) {
  .footer__banner-item:nth-child(1) {
    width: 264px;
  }
}
.footer__banner-item:nth-child(2) {
  width: 22.4vw;
}
.footer__banner-item:nth-child(2) img {
  aspect-ratio: 1/1;
  object-fit: contain;
}
@media (min-width: 768px) {
  .footer__banner-item:nth-child(2) {
    width: 100px;
  }
}
.footer__nav-container {
  width: 92.985074%;
  margin: 10.6666666667vw auto 0;
  font-size: 16px;
}
@media (min-width: 768px) {
  .footer__nav-container {
    order: 2;
    width: auto;
    margin: 64px 0 0;
    font-size: 16px;
  }
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  row-gap: 5.3333333333vw;
}
@media (min-width: 768px) {
  .footer__nav {
    gap: 36px;
  }
}
.footer__nav-col:nth-child(1) {
  width: 100%;
}
@media (min-width: 768px) {
  .footer__nav-col:nth-child(1) {
    width: auto;
  }
}
.footer__nav-col:nth-child(2) {
  width: 42%;
}
@media (min-width: 768px) {
  .footer__nav-col:nth-child(2) {
    width: auto;
  }
}
.footer__nav-col:nth-child(3) {
  width: 58%;
}
@media (min-width: 768px) {
  .footer__nav-col:nth-child(3) {
    width: auto;
  }
}
.footer__nav-list:not(:first-child) {
  margin: 3.2vw;
}
@media (min-width: 768px) {
  .footer__nav-list:not(:first-child) {
    margin: 0;
  }
}
.footer__nav-item:not(:first-child) {
  margin: 3.2vw 0 0;
}
@media (min-width: 768px) {
  .footer__nav-item:not(:first-child) {
    margin: 8px 0 0;
  }
}
.footer__nav-item--primary > .footer__nav-link {
  padding: 0 0 0 2.6666666667vw;
}
@media (min-width: 768px) {
  .footer__nav-item--primary > .footer__nav-link {
    padding: 0 0 0 12px;
  }
}
.footer__nav-item--primary > .footer__nav-link::before {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 2.1333333333vw;
  height: 2.1333333333vw;
  content: "";
  background-color: #EE1B28;
  border-radius: 50%;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .footer__nav-item--primary > .footer__nav-link::before {
    width: 8px;
    height: 8px;
  }
}
.footer__nav-item--secondary > .footer__nav-link {
  padding: 0 0 0 5.6vw;
  font-weight: 500;
}
@media (min-width: 768px) {
  .footer__nav-item--secondary > .footer__nav-link {
    padding: 0 0 0 12px;
  }
}
.footer__nav-item--secondary > .footer__nav-link::before {
  position: absolute;
  top: 50%;
  left: 2.6666666667vw;
  display: block;
  width: 1.3333333333vw;
  height: 1.3333333333vw;
  content: "";
  background-color: #009DA5;
  border-radius: 50%;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .footer__nav-item--secondary > .footer__nav-link::before {
    left: 1px;
    width: 5px;
    height: 5px;
  }
}
.footer__nav-link {
  position: relative;
  font-weight: 700;
  color: #0E0E0E;
  text-decoration: none;
}
@media (min-width: 768px) {
  .footer__nav-link {
    font-size: 14px;
    white-space: nowrap;
  }
}
.footer__child-list {
  padding: 0 0 0 5.6vw;
  margin: 3.2vw 0;
}
@media (min-width: 768px) {
  .footer__child-list {
    padding: 0 0 0 12px;
    margin: 8px 0;
    font-size: 14px;
  }
}
.footer__child-item:not(:first-child) {
  margin: 3.2vw 0 0;
}
@media (min-width: 768px) {
  .footer__child-item:not(:first-child) {
    margin: 8px 0 0;
  }
}
.footer__child-link {
  position: relative;
  padding: 0 0 0 4.2666666667vw;
  font-weight: 500;
}
@media (min-width: 768px) {
  .footer__child-link {
    padding: 0 0 0 16px;
  }
}
.footer__child-link::before {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 2.1333333333vw;
  height: 0.2666666667vw;
  content: "";
  background-color: #0E0E0E;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .footer__child-link::before {
    width: 6px;
    height: 1px;
  }
}
.footer__copyright {
  padding: 1.6vw 0;
  background-color: #009DA5;
  text-align: center;
}
@media (min-width: 768px) {
  .footer__copyright {
    padding: 1px 0;
  }
}
.footer__copyright-text {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  text-indent: -0.05em;
}
@media (min-width: 768px) {
  .footer__copyright-text {
    font-size: 14px;
  }
}

.p-form {
  margin: 13.3333333333vw 0 0;
}
@media (min-width: 768px) {
  .p-form {
    margin: 42px 0 0;
  }
}
.p-form__table {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 13.3333333333vw;
}
@media (min-width: 768px) {
  .p-form__table {
    gap: 40px;
  }
}
.p-form__row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 5.3333333333vw;
}
@media (min-width: 768px) {
  .p-form__row {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
    gap: 20px;
  }
}
.p-form__label {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 2.6666666667vw;
}
@media (min-width: 768px) {
  .p-form__label {
    width: 24.444444%;
    flex-shrink: 0;
    gap: 10px;
    padding: 18px 0 0;
  }
}
.p-form__label-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .p-form__label-text {
    font-size: 16px;
    font-weight: 500;
  }
}
.p-form__input-col {
  width: 100%;
}
@media (min-width: 768px) {
  .p-form__input-col {
    width: 73.333333%;
  }
}
.p-form__input-col--error .c-input-text {
  border-color: #EE1B28;
  background-color: #FFF9F9;
}
.p-form__radio-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 5.3333333333vw;
}
@media (min-width: 768px) {
  .p-form__radio-group {
    gap: 15px;
    padding: 18px 0 0;
  }
}
.p-form__radio {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.p-form__radio input[type=radio] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.p-form__radio input[type=radio]:checked + .p-form__radio-text::before {
  border-color: #009DA5;
  background-color: #009DA5;
  box-shadow: inset 0 0 0 0.8vw #fff;
}
@media (min-width: 768px) {
  .p-form__radio input[type=radio]:checked + .p-form__radio-text::before {
    box-shadow: inset 0 0 0 4px #fff;
  }
}
.p-form__radio-text {
  display: inline-flex;
  align-items: center;
  position: relative;
  padding: 0 0 0 8.2666666667vw;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .p-form__radio-text {
    padding: 0 0 0 34px;
    font-size: 16px;
  }
}
.p-form__radio-text::before {
  content: "";
  position: absolute;
  top: calc(50% + 0.2666666667vw);
  left: 0;
  transform: translateY(-50%);
  width: 5.6vw;
  height: 5.6vw;
  background-color: #fff;
  border: 0.5333333333vw solid #009DA5;
  border-radius: 50%;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .p-form__radio-text::before {
    top: calc(50% + 1px);
    width: 24px;
    height: 24px;
    border: 2px solid #009DA5;
  }
}
.p-form__error-msg {
  margin: 2.6666666667vw 0 0;
  font-weight: 700;
  line-height: 1.2;
  color: #EE1B28;
}
@media (min-width: 768px) {
  .p-form__error-msg {
    margin: 10px 0 0;
    font-size: 15px;
  }
}
.p-form__zip-wrap {
  width: 65.671641%;
}
@media (min-width: 768px) {
  .p-form__zip-wrap {
    width: 39.393939%;
  }
}
.p-form__bottom {
  margin: 10.6666666667vw 0 0;
  text-align: center;
}
@media (min-width: 768px) {
  .p-form__bottom {
    margin: 42px 0 0;
  }
}
.p-form__agreement {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.p-form__link {
  color: #009DA5;
  text-decoration: underline;
}
@media (min-width: 768px) {
  .p-form__link:hover {
    color: #009DA5;
  }
}
.p-form__submit-wrap {
  margin: 10.6666666667vw 0 0;
}
@media (min-width: 768px) {
  .p-form__submit-wrap {
    margin: 53px 0 0;
  }
}
.p-form__back-wrap {
  margin: 10.6666666667vw 0 0;
}
@media (min-width: 768px) {
  .p-form__back-wrap {
    margin: 53px 0 0;
  }
}
.p-form__back-link {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: #009DA5;
  text-decoration: underline;
}
@media (min-width: 768px) {
  .p-form__back-link {
    font-size: 16px;
  }
  .p-form__back-link:hover {
    color: #009DA5;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2.6666666667vw 2.4vw;
  z-index: 1000;
  background-color: #FAF6EB;
}
@media (min-width: 768px) {
  .header {
    padding: 0 40px;
  }
}
.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/assets/img/common/bg.webp");
  background-repeat: repeat;
  background-size: 1500px 748px;
  opacity: 0.25;
  z-index: -1;
  pointer-events: none;
}
.header__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .header__inner {
    align-items: flex-start;
  }
}
@media (min-width: 768px) {
  .header__left {
    margin: 24px 0 0;
  }
}
.header__catch {
  display: none;
}
@media (min-width: 768px) {
  .header__catch {
    display: block;
    font-size: 12px;
    line-height: 1.4;
  }
}
.header__logo {
  width: 50.1333333333vw;
}
@media (min-width: 768px) {
  .header__logo {
    width: 209px;
    margin: 15px 0 0;
  }
}
@media (min-width: 768px) {
  .header__right {
    margin: 20px 0 0;
  }
}
.header__contact-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
}
.header__tel {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 7px;
}
.header__tel-icon {
  width: 24px;
}
.header__tel-num {
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}
.header__time {
  margin: 9px 0 0;
  font-size: 12px;
  line-height: 1;
  text-align: right;
}
.header__btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 180px;
  height: 45px;
  background-color: #009DA5;
  color: #fff;
  border-radius: 4px;
}
.header__btn-icon {
  width: 18px;
}
.header__btn-text {
  font-size: 15px;
  font-weight: 900;
}
.header__btn:hover {
  color: #fff;
}
.header__hamburger {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1002;
  width: 13.3333333333vw;
  height: 13.3333333333vw;
  background: #D7A100;
  border-radius: 50%;
  line-height: 0;
  cursor: pointer;
}
.header__hamburger span {
  position: absolute;
  left: 50%;
  display: block;
  width: 5.3333333333vw;
  height: 0.5333333333vw;
  background: #fff;
  border-radius: 100vmax;
  transform: translateX(-50%);
  transition: all 0.5s ease;
}
.header__hamburger span:nth-child(1) {
  top: 5.3333333333vw;
}
.header__hamburger span:nth-child(2) {
  top: 7.4666666667vw;
}
.header__hamburger.is-active span {
  top: 6.4vw;
}
.header__hamburger.is-active span:nth-child(1) {
  transform: translateX(-50%) rotate(45deg);
}
.header__hamburger.is-active span:nth-child(2) {
  transform: translateX(-50%) rotate(-45deg);
}
@media (min-width: 768px) {
  .header__hamburger {
    display: none;
  }
}
.header__nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1001;
  width: 74.666666%;
  height: 100dvh;
  padding: 13.3333333333vw 4vw;
  background-color: color-mix(in srgb, #D7A100 15%, #fff);
  box-shadow: -0.6666666667vw 0 1.3333333333vw rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  transition: transform 0.5s ease, visibility 0.5s ease;
}
.header__nav.is-open {
  transform: translateX(0);
}
@media (min-width: 768px) {
  .header__nav {
    position: relative;
    top: auto;
    right: auto;
    z-index: 1;
    width: auto;
    height: auto;
    padding: 0;
    background-color: transparent;
    box-shadow: none;
    transform: none;
    transition: none;
  }
}
.header__nav-catch {
  font-size: 16px;
  line-height: 1.7;
}
.header__nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: column;
  border-top: 2px solid #CDCBC3;
  margin: 5.0666666667vw 0 0;
}
@media (min-width: 768px) {
  .header__nav-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    flex-direction: row;
    border-top: none;
    margin: 8px 0 0;
    border-right: 1px solid #CDCBC3;
  }
}
.header__nav-item {
  position: relative;
  border-bottom: 2px solid #CDCBC3;
  padding: 3.7333333333vw 2.6666666667vw;
  flex: 0 0 auto;
}
@media (min-width: 768px) {
  .header__nav-item {
    border-bottom: none;
    padding: 0;
    border-left: 1px solid #CDCBC3;
  }
}
.header__nav-item > a {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .header__nav-item > a {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    padding: 7px 30px 16px;
    gap: 5px;
  }
}
.header__nav-item > a::after {
  display: block;
  flex-shrink: 0;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (min-width: 768px) {
  .header__nav-item > a:hover {
    color: #009DA5;
    opacity: 1;
  }
}
.header__nav-item:not(.has-sub) > a::after {
  width: 1.8666666667vw;
  height: 3.2vw;
  background-image: url("/assets/img/common/icon/arrow-right.svg");
}
@media (min-width: 768px) {
  .header__nav-item:not(.has-sub) > a::after {
    content: none;
  }
}
.header__nav-item.has-sub > a::after {
  width: 2.6666666667vw;
  height: 2.6666666667vw;
  background-image: url("/assets/img/common/icon/plus.svg");
}
@media (min-width: 768px) {
  .header__nav-item.has-sub > a::after {
    width: 12px;
    height: 6px;
    background-image: url("/assets/img/common/icon/arrow-bottom.svg");
  }
}
@media (min-width: 768px) {
  .header__nav-item.is-sub-open.has-sub > a {
    color: #009DA5;
    opacity: 1;
  }
}
.header__nav-item.is-sub-open.has-sub > a::after {
  background-image: url("/assets/img/common/icon/minus.svg");
  transform: rotate(0deg);
}
@media (min-width: 768px) {
  .header__nav-item.is-sub-open.has-sub > a::after {
    background-image: url("/assets/img/common/icon/arrow-bottom-hover.svg");
    transform: none;
    transition: 0.5s;
  }
}
.header__sub-list {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
@media (min-width: 768px) {
  .header__sub-list {
    max-height: none;
    overflow: visible;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 260px;
    padding: 20px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0px 0px 10px rgba(14, 14, 14, 0.25);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
  }
  .header__sub-list::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: transparent;
  }
}
.has-sub.is-sub-open > .header__sub-list {
  padding: 12px 0 0;
}
@media (min-width: 768px) {
  .has-sub.is-sub-open > .header__sub-list {
    padding: 20px;
    opacity: 1;
    visibility: visible;
  }
}
.header__sub-item {
  margin: 1.3333333333vw 0 0;
}
@media (min-width: 768px) {
  .header__sub-item {
    margin: 0;
  }
  .header__sub-item:not(:last-child) {
    margin: 0 0 18px;
  }
}
.header__sub-item > a {
  position: relative;
  display: block;
  padding: 4px 0 4px 3.7333333333vw;
  font-size: 16px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .header__sub-item > a {
    padding: 0 0 0 12px;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 500;
  }
  .header__sub-item > a::before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    content: "";
    width: 4px;
    height: 8px;
    background-image: url("/assets/img/common/icon/arrow-right.svg");
    background-size: cover;
  }
  .header__sub-item > a:hover {
    opacity: 0.6;
  }
}
.header__sub-item > a::after {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  width: 1.8666666667vw;
  height: 1.8666666667vw;
  background-color: #009DA5;
  border-radius: 50%;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .header__sub-item > a::after {
    width: 5px;
    height: 5px;
  }
}
.header__child-list {
  display: block;
}
@media (min-width: 768px) {
  .header__child-list {
    margin: 18px 0 0;
    padding: 0 0 0 5px;
  }
}
@media (min-width: 768px) {
  .header__child-item:not(:last-child) {
    margin: 0 0 18px;
  }
}
.header__child-link {
  position: relative;
  display: block;
  padding: 4px 0 4px 6.6666666667vw;
  font-size: 16px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .header__child-link {
    padding: 0 0 0 12px;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 500;
  }
  .header__child-link::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    content: "";
    width: 4px;
    height: 8px;
    background-image: url("/assets/img/common/icon/arrow-right.svg");
    background-size: cover;
  }
  .header__child-link:hover {
    opacity: 0.6;
  }
}
.header__child-link::before {
  position: absolute;
  top: 50%;
  left: 3.2vw;
  display: block;
  width: 2.1333333333vw;
  height: 0.2666666667vw;
  content: "";
  background-color: #0E0E0E;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .header__child-link::before {
    left: 0;
    width: 6px;
    height: 1px;
  }
}
.header__nav-contact {
  margin: 8vw 0 0;
}
.header__nav-btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 13.3333333333vw;
  font-weight: 900;
  color: #fff;
  border-radius: 1.0666666667vw;
}
.header__nav-btn--mail {
  gap: 2.9333333333vw;
  background-color: #009DA5;
  font-size: 16px;
}
.header__nav-btn--tel {
  gap: 1.0666666667vw;
  margin: 4vw 0 0;
  background-color: #EE1B28;
  font-size: 18px;
}
.header__nav-btn-icon {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.header__nav-btn--mail .header__nav-btn-icon {
  width: 4.8vw;
  height: 5.3333333333vw;
}
.header__nav-btn--tel .header__nav-btn-icon {
  width: 4.2666666667vw;
  height: 5.3333333333vw;
}
.header__nav-btn-text {
  line-height: 1;
}
.header__nav-time {
  text-align: center;
  text-indent: -0.05em;
  margin: 2.1333333333vw 0 0;
}

.b-icon-ttl__icon {
  width: 6.4vw;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .b-icon-ttl__icon {
    width: 30px;
  }
}
.b-icon-ttl__title {
  margin: 1.3333333333vw 0 0;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  text-indent: -0.05em;
}
@media (min-width: 768px) {
  .b-icon-ttl__title {
    margin: 12px 0 0;
    font-size: 28px;
    line-height: 1.4;
  }
}

.img-trim {
  position: relative;
  overflow: hidden;
  margin-block: 0;
  margin-inline: 0;
}
.img-trim img,
.img-trim picture > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-input-text {
  width: 100%;
  height: 13.3333333333vw;
  padding: 0 4vw;
  background-color: #fff;
  border: 0.5333333333vw solid transparent;
  border-radius: 1.0666666667vw;
  font-size: 16px;
  box-shadow: 0 0 2.6666666667vw rgba(139, 104, 0, 0.1);
}
@media (min-width: 768px) {
  .c-input-text {
    height: 60px;
    padding: 0 22px 0;
    border: 2px solid transparent;
    border-radius: 4px;
    font-size: 16px;
  }
}
.c-input-text::placeholder {
  color: #BDBDBD;
}
.c-input-text--zip {
  text-align: left;
}

.b-line-ttl {
  position: relative;
  padding: 0 0 3.7333333333vw;
  font-size: 19px;
  font-weight: 700;
  text-align: center;
  text-indent: -0.05em;
}
@media (min-width: 768px) {
  .b-line-ttl {
    font-size: 20px;
    padding: 0 0 15px;
  }
}
.b-line-ttl::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 21.3333333333vw;
  height: 0.8vw;
  background: linear-gradient(to right, #009DA5 50%, #EE1B28 50%);
}
@media (min-width: 768px) {
  .b-line-ttl::after {
    width: 80px;
    height: 3px;
  }
}
.b-line-ttl--menu {
  width: 100%;
}
@media (min-width: 768px) {
  .b-line-ttl--menu {
    order: 2;
    margin: 10px 0 0;
    font-size: 18px;
  }
}

.p-page-cta__wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5.3333333333vw;
}
@media (min-width: 768px) {
  .p-page-cta__wrap {
    flex-direction: row;
    gap: 40px;
  }
}

.p-page-header {
  position: relative;
  padding: 10.8vw 0;
  background-color: #fff;
}
@media (min-width: 768px) {
  .p-page-header {
    padding: 66px 0;
  }
}
.p-page-header::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 72vw;
  height: 37.3333333333vw;
  background-image: url("/assets/img/common/page-header-sp.webp");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
@media (min-width: 768px) {
  .p-page-header::after {
    width: 600px;
    height: 220px;
    background-image: url("/assets/img/common/page-header-pc.webp");
  }
}

.b-page-ttl__en {
  color: #D7A100;
  font-weight: 700;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .b-page-ttl__en {
    font-size: 20px;
  }
}
.b-page-ttl__jp {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .b-page-ttl__jp {
    font-size: 40px;
  }
}

.b-section-ttl {
  text-align: center;
}
.b-section-ttl__icon {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.b-section-ttl__icon-dot {
  display: block;
  width: 3.7333333333vw;
  height: 3.7333333333vw;
  border-radius: 50%;
}
@media (min-width: 768px) {
  .b-section-ttl__icon-dot {
    width: 16px;
    height: 16px;
  }
}
.b-section-ttl__icon-dot:nth-child(1) {
  background-color: #009DA5;
  transform: translateX(0.2666666667vw);
}
@media (min-width: 768px) {
  .b-section-ttl__icon-dot:nth-child(1) {
    transform: translateX(2px);
  }
}
.b-section-ttl__icon-dot:nth-child(2) {
  background-color: #EE1B28;
  transform: translateX(-0.2666666667vw);
}
@media (min-width: 768px) {
  .b-section-ttl__icon-dot:nth-child(2) {
    transform: translateX(-2px);
  }
}
.b-section-ttl__en {
  display: block;
  margin: 2.1333333333vw 0 0;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-indent: -0.1em;
}
@media (min-width: 768px) {
  .b-section-ttl__en {
    margin: 10px 0 0;
    font-size: 20px;
  }
}
.b-section-ttl__ja {
  font-size: 24px;
  font-weight: 700;
  text-indent: -0.05em;
}
@media (min-width: 768px) {
  .b-section-ttl__ja {
    font-size: 36px;
  }
}
.b-section-ttl--white .b-section-ttl__en,
.b-section-ttl--white .b-section-ttl__ja {
  color: #fff;
}
.b-section-ttl--white .b-section-ttl__icon-dot:nth-child(1) {
  background-color: #D7A100;
}

.c-select {
  width: 100%;
  height: 13.3333333333vw;
  padding: 0 4vw;
  background-color: #fff;
  border: 0.5333333333vw solid transparent;
  border-radius: 1.0666666667vw;
  font-size: 16px;
  box-shadow: 0 0 2.6666666667vw rgba(139, 104, 0, 0.1);
  cursor: pointer;
}
@media (min-width: 768px) {
  .c-select {
    height: 60px;
    padding: 0 22px;
    border-radius: 4px;
    font-size: 16px;
  }
}

.c-select-wrap {
  position: relative;
  width: 100%;
}
@media (min-width: 768px) {
  .c-select-wrap {
    width: 40%;
  }
}
.c-select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 3.4666666667vw;
  transform: translateY(-50%);
  pointer-events: none;
  width: 3.7333333333vw;
  height: 2.6666666667vw;
  background-color: #009DA5;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media (min-width: 768px) {
  .c-select-wrap::after {
    right: 25px;
    width: 14px;
    height: 10px;
  }
}
.c-select-wrap__pref-wrap {
  width: 65.671641%;
}
@media (min-width: 768px) {
  .c-select-wrap__pref-wrap {
    width: 39.393939%;
  }
}

.b-service-area__summary {
  margin: 8.8vw 0 0;
}
@media (min-width: 768px) {
  .b-service-area__summary {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 38px;
    margin: 24px 0 0;
  }
}
.b-service-area__text {
  font-size: 16px;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .b-service-area__text {
    order: 2;
    width: 37.222222%;
    font-size: 16px;
  }
}
.b-service-area__red {
  color: #EE1B28;
  text-decoration: underline;
}
.b-service-area__map {
  width: 100%;
  margin: 7.4666666667vw 0 0;
}
@media (min-width: 768px) {
  .b-service-area__map {
    order: 1;
    width: 51.851851%;
    margin: 0;
  }
}

.b-service-owner {
  position: relative;
  display: block;
  margin: 9.6vw 0 0;
  background: #fff;
  border-radius: 1.3333333333vw;
  box-shadow: 0px 0px 2.6666666667vw rgba(0, 0, 0, 0.15);
}
@media (min-width: 768px) {
  .b-service-owner {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row-reverse;
    width: 100%;
    margin: 0;
    border-radius: 20px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  }
}
.b-service-owner__image {
  position: relative;
  aspect-ratio: 670/446;
}
@media (min-width: 768px) {
  .b-service-owner__image {
    width: 41.666666%;
    aspect-ratio: 450/300;
    border-radius: 0 20px 20px 0;
  }
}
.b-service-owner__image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 9.6vw;
  background-image: url("./../img/service/owner-divider.webp");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
@media (min-width: 768px) {
  .b-service-owner__image::after {
    content: none;
  }
}
.b-service-owner__summary {
  position: relative;
  margin-top: -4.2666666667vw;
  padding: 0 7.2vw 11.7333333333vw;
}
@media (min-width: 768px) {
  .b-service-owner__summary {
    position: static;
    width: 58.333334%;
    margin-top: 0;
    padding: 40px 50px;
  }
}
@media (min-width: 768px) {
  .b-service-owner__summary .b-icon-ttl {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
  }
}
@media (min-width: 768px) {
  .b-service-owner__summary .b-icon-ttl__icon {
    margin: 0;
  }
}
@media (min-width: 768px) {
  .b-service-owner__summary .b-icon-ttl__title {
    margin: 0;
  }
}
.b-service-owner__summary .b-line-ttl {
  margin-top: 8vw;
}
@media (min-width: 768px) {
  .b-service-owner__summary .b-line-ttl {
    margin-top: 27px;
    text-align: left;
  }
}
@media (min-width: 768px) {
  .b-service-owner__summary .b-line-ttl::after {
    left: 0;
    transform: none;
  }
}
.b-service-owner__detail {
  margin: 5.3333333333vw 0 0;
  font-size: 16px;
}
@media (min-width: 768px) {
  .b-service-owner__detail {
    margin: 24px 0 0;
    font-size: 16px;
  }
}
.b-service-owner__detail-item {
  position: relative;
  padding: 0 0 0 4vw;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .b-service-owner__detail-item {
    padding: 0 0 0 14px;
    font-size: 14px;
  }
}
.b-service-owner__detail-item::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 1.6vw;
  height: 1.6vw;
  background-color: #0E0E0E;
  border-radius: 50%;
}
@media (min-width: 768px) {
  .b-service-owner__detail-item::before {
    width: 6px;
    height: 6px;
  }
}
.b-service-owner__arrow {
  position: absolute;
  right: 4vw;
  bottom: 4vw;
  width: 8vw;
  height: 8vw;
}
@media (min-width: 768px) {
  .b-service-owner__arrow {
    right: 14px;
    bottom: 14px;
    width: 45px;
    height: 45px;
  }
}
.b-service-owner__arrow::after {
  width: 1.6666666667vw;
  height: 1.6666666667vw;
  margin: 0 0 0 -0.5vw;
  border-top: 0.5vw solid #EE1B28;
  border-right: 0.5vw solid #EE1B28;
}
@media (min-width: 768px) {
  .b-service-owner__arrow::after {
    width: 8px;
    height: 8px;
    margin: 0 0 0 -2px;
    border-top: 2px solid #EE1B28;
    border-right: 2px solid #EE1B28;
  }
}

.c-textarea {
  width: 100%;
  height: 64vw;
  padding: 4vw;
  background-color: #fff;
  border: 0.5333333333vw solid transparent;
  border-radius: 1.0666666667vw;
  font-size: 16px;
  box-shadow: 0 0 2.6666666667vw rgba(139, 104, 0, 0.1);
  resize: vertical;
}
@media (min-width: 768px) {
  .c-textarea {
    height: 240px;
    padding: 22px;
    border-radius: 4px;
    font-size: 16px;
  }
}
.c-textarea::placeholder {
  font-size: 16px;
  color: #0E0E0E;
  opacity: 0.15;
}
@media (min-width: 768px) {
  .c-textarea::placeholder {
    font-size: 16px;
  }
}

.hero {
  position: relative;
  z-index: 1;
  background-color: #fff;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero {
    background-color: transparent;
  }
}
@media (min-width: 768px) {
  .hero__inner {
    position: relative;
  }
  .hero__inner::after {
    content: "";
    position: absolute;
    bottom: 4.39238653vw;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 11.7130307467vw;
    background-image: url("/assets/img/common/divider/ver03-pc.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }
}
.hero__slider-wrapper {
  position: relative;
  width: 100vw;
}
@media (min-width: 768px) {
  .hero__slider-wrapper {
    width: 82.430453%;
    margin: 0 0 0 auto;
    border-top-left-radius: 8.78477306vw;
    overflow: hidden;
  }
}
.hero__slider-wrapper::after {
  content: "";
  position: absolute;
  bottom: -2.6666666667vw;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 24vw;
  background-image: url("/assets/img/common/divider/ver03-sp.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
@media (min-width: 768px) {
  .hero__slider-wrapper::after {
    content: none;
  }
}
.hero__slider {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  width: max-content;
}
.hero__slide {
  flex-shrink: 0;
  width: 100vw;
  aspect-ratio: 750/540;
}
@media (min-width: 768px) {
  .hero__slide {
    width: 59.5168374817vw;
    aspect-ratio: 813/542;
  }
}
.hero__circle-badge {
  position: absolute;
  top: 45.3333333333vw;
  right: 4vw;
  z-index: 3;
  width: 32vw;
  height: 32vw;
}
@media (min-width: 768px) {
  .hero__circle-badge {
    top: 29.2825768668vw;
    right: 3.6603221083vw;
    width: 14.6412884334vw;
    height: 14.6412884334vw;
  }
}
.hero__vertical-catch {
  position: absolute;
  top: 9.5168374817vw;
  left: 4.39238653vw;
  z-index: 3;
}
.hero__vertical-text {
  font-size: clamp(16px, 2.3426061493vw, 32px);
  font-weight: 700;
  line-height: 2;
  text-indent: -1.75em;
  text-align: left;
  writing-mode: vertical-rl;
  white-space: nowrap;
}
.hero__content {
  margin: 6.6666666667vw 0 0;
}
@media (min-width: 768px) {
  .hero__content {
    margin: 0;
    background-color: #fff;
  }
  .hero__content > .l-container {
    width: 100vw;
  }
}
.hero__heading {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  text-indent: -0.05em;
  text-align: center;
}
.hero__body {
  margin: 6.6666666667vw 0 0;
}
@media (min-width: 768px) {
  .hero__body {
    margin: 0 0 0 17.5695461201vw;
  }
}
.hero__text {
  font-size: 16px;
  line-height: 2.2;
}
@media (min-width: 768px) {
  .hero__text {
    font-size: 1.1713030747vw;
  }
}
.hero__strong {
  font-weight: 700;
}
.hero__dot .u-emphasis-char {
  position: relative;
  z-index: 1;
}
.hero__dot .u-emphasis-char::before {
  content: "";
  position: absolute;
  top: -0.6em;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 0.3em;
  height: 0.3em;
  background-color: #D7A100;
  border-radius: 50%;
}
@media (min-width: 768px) {
  .hero__dot .u-emphasis-char::before {
    top: -0.3em;
    width: 0.439238653vw;
    height: 0.439238653vw;
  }
}
.hero__marker-yellow {
  border-bottom: 0.5333333333vw solid #D7A100;
}
@media (min-width: 768px) {
  .hero__marker-yellow {
    border-bottom: 2px solid #D7A100;
  }
}
.hero__marker-green {
  border-bottom: 0.5333333333vw solid #009DA5;
}
@media (min-width: 768px) {
  .hero__marker-green {
    border-bottom: 2px solid #009DA5;
  }
}

.p-home-banner {
  position: relative;
  padding: 16vw 0 10.6666666667vw;
  background-color: #fff;
}
@media (min-width: 768px) {
  .p-home-banner {
    padding: 50px 0 60px;
  }
}
.p-home-banner::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 10.6666666667vw;
  background-image: url("/assets/img/common/divider/ver01-sp.webp");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
@media (min-width: 768px) {
  .p-home-banner::after {
    height: 100px;
    background-image: url("/assets/img/common/divider/ver01-pc.webp");
  }
}
@media (min-width: 768px) {
  .p-home-banner__item {
    width: 93.333333%;
    margin: 0 auto;
  }
}
.p-home-banner__item:not(:first-child) {
  margin: 4vw auto 0;
}
@media (min-width: 768px) {
  .p-home-banner__item:not(:first-child) {
    margin: 22px auto 0;
  }
}

.p-home-reason {
  padding: 16vw 0 21.3333333333vw;
}
@media (min-width: 768px) {
  .p-home-reason {
    padding: 74px 0 230px;
  }
}
.p-home-reason__list {
  margin: 8vw 0 0;
}
@media (min-width: 768px) {
  .p-home-reason__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 65px;
    margin: 48px 0 0;
  }
}
.p-home-reason__item {
  width: 94.02985%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .p-home-reason__item {
    width: 26.851851%;
    margin: 0;
  }
}
.p-home-reason__item:not(:first-child) {
  margin: 6.6666666667vw auto 0;
}
@media (min-width: 768px) {
  .p-home-reason__item:not(:first-child) {
    margin: 0;
  }
}
.p-home-reason__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 4vw;
}
@media (min-width: 768px) {
  .p-home-reason__head {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 0;
  }
}
.p-home-reason__img {
  width: 21.3333333333vw;
  height: 21.3333333333vw;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 0px 2.6666666667vw rgba(0, 0, 0, 0.05);
}
@media (min-width: 768px) {
  .p-home-reason__img {
    width: 180px;
    height: 180px;
    box-shadow: 0px 0px 10px rgba(139, 104, 0, 0.1);
  }
}
.p-home-reason__icon {
  width: 70%;
}
@media (min-width: 768px) {
  .p-home-reason__icon {
    width: 60%;
  }
}
.p-home-reason__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .p-home-reason__title {
    margin: -2em 0 0;
    font-size: 20px;
    text-align: center;
  }
}
.p-home-reason__text {
  margin: 2.4vw 0 0;
  font-size: 16px;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .p-home-reason__text {
    margin: 14px 0 0;
    font-size: 16px;
  }
}

.p-home-service {
  padding: 2.6666666667vw 0 16vw;
  background-color: #fff;
}
@media (min-width: 768px) {
  .p-home-service {
    padding: 20px 0 70px;
  }
}
.p-home-service::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 10.6666666667vw;
  background-image: url("/assets/img/common/divider/ver02-sp.webp");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
@media (min-width: 768px) {
  .p-home-service::after {
    height: 100px;
    background-image: url("/assets/img/common/divider/ver02-pc.webp");
  }
}
.p-home-service__lead {
  margin: 8vw 0 0;
  font-size: 16px;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .p-home-service__lead {
    margin: 45px 0 0;
    font-size: 16px;
    line-height: 2;
    text-align: center;
  }
}
.p-home-service__block {
  margin: 10.6666666667vw 0 0;
}
@media (min-width: 768px) {
  .p-home-service__block {
    margin: 92px 0 0;
  }
}
.p-home-service__list {
  margin: 8vw 0 0;
}
@media (min-width: 768px) {
  .p-home-service__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 30px;
    margin: 48px 0 0;
  }
}
.p-home-service__item {
  position: relative;
  display: block;
  overflow: hidden;
  background: #fff;
  border-radius: 1.3333333333vw;
  box-shadow: 0px 0px 2.6666666667vw rgba(0, 0, 0, 0.15);
}
@media (min-width: 768px) {
  .p-home-service__item {
    width: 31.481481%;
    border-radius: 20px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  }
}
.p-home-service__item:not(:first-child) {
  margin: 10.6666666667vw 0 0;
}
@media (min-width: 768px) {
  .p-home-service__item:not(:first-child) {
    margin: 0;
  }
}
.p-home-service__item-img {
  aspect-ratio: 670/446;
}
.p-home-service__item-summary {
  padding: 5.3333333333vw 7.2vw 11.7333333333vw;
}
@media (min-width: 768px) {
  .p-home-service__item-summary {
    padding: 24px 32px 44px;
  }
}
.p-home-service__detail {
  margin: 5.3333333333vw 0 0;
  font-size: 16px;
}
@media (min-width: 768px) {
  .p-home-service__detail {
    margin: 24px 0 0;
    font-size: 16px;
  }
}
.p-home-service__detail-item {
  position: relative;
  padding: 0 0 0 4vw;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .p-home-service__detail-item {
    padding: 0 0 0 14px;
    font-size: 14px;
  }
}
.p-home-service__detail-item::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 1.6vw;
  height: 1.6vw;
  background-color: #0E0E0E;
  border-radius: 50%;
}
@media (min-width: 768px) {
  .p-home-service__detail-item::before {
    width: 6px;
    height: 6px;
  }
}
.p-home-service__arrow {
  position: absolute;
  right: 4vw;
  bottom: 4vw;
}
@media (min-width: 768px) {
  .p-home-service__arrow {
    right: 16px;
    bottom: 16px;
  }
}
.p-home-service__cta {
  margin: 10.6666666667vw 0 0;
  text-align: center;
}
@media (min-width: 768px) {
  .p-home-service__cta {
    margin: 48px 0 0;
  }
}
.p-home-service__owner {
  margin: 13.3333333333vw 0 0;
}
@media (min-width: 768px) {
  .p-home-service__owner {
    margin: 80px 0 0;
  }
}
.p-home-service__owner-card {
  position: relative;
  display: block;
  margin: 9.6vw 0 0;
  background: #fff;
  border-radius: 1.3333333333vw;
  box-shadow: 0px 0px 2.6666666667vw rgba(0, 0, 0, 0.15);
}
@media (min-width: 768px) {
  .p-home-service__owner-card {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    width: 900px;
    margin: 48px auto 0;
    border-radius: 20px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  }
}
.p-home-service__owner-image {
  aspect-ratio: 670/446;
}
@media (min-width: 768px) {
  .p-home-service__owner-image {
    width: 37.777777%;
    aspect-ratio: 340/209;
    border-radius: 20px 0 0 20px;
  }
}
.p-home-service__owner-summary {
  position: relative;
  padding: 5.3333333333vw 7.2vw 11.7333333333vw 7.2vw;
}
@media (min-width: 768px) {
  .p-home-service__owner-summary {
    width: 62.222223%;
    padding: 28px 40px 28px 40px;
  }
}
.p-home-service__owner-detail {
  margin: 5.3333333333vw 0 0;
  font-size: 16px;
}
@media (min-width: 768px) {
  .p-home-service__owner-detail {
    margin: 24px 0 0;
    font-size: 16px;
  }
}
.p-home-service__owner-detail-item {
  position: relative;
  padding: 0 0 0 4vw;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .p-home-service__owner-detail-item {
    padding: 0 0 0 14px;
    font-size: 14px;
  }
}
.p-home-service__owner-detail-item::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 1.6vw;
  height: 1.6vw;
  background-color: #0E0E0E;
  border-radius: 50%;
}
@media (min-width: 768px) {
  .p-home-service__owner-detail-item::before {
    width: 6px;
    height: 6px;
  }
}
.p-home-service__owner-arrow {
  position: absolute;
  right: 4vw;
  bottom: 4vw;
}
@media (min-width: 768px) {
  .p-home-service__owner-arrow {
    right: 16px;
    bottom: 16px;
  }
}
.p-home-service__area {
  margin: 13.3333333333vw 0 0;
}
@media (min-width: 768px) {
  .p-home-service__area {
    margin: 80px 0 0;
  }
}

.p-home-gallery {
  position: relative;
  padding: 16vw 0 0;
  background: #fff;
}
@media (min-width: 768px) {
  .p-home-gallery {
    padding: 100px 0 0;
  }
}
.p-home-gallery__wrapper {
  overflow: hidden;
}
.p-home-gallery__slider {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  width: max-content;
}
.p-home-gallery__slide {
  flex-shrink: 0;
  width: 72vw;
  aspect-ratio: 540/360;
}
@media (min-width: 768px) {
  .p-home-gallery__slide {
    width: 28.5505124451vw;
  }
}
.p-home-gallery__circle-badge {
  position: absolute;
  top: 0;
  left: 4vw;
  z-index: 2;
  width: 32vw;
  height: 32vw;
}
@media (min-width: 768px) {
  .p-home-gallery__circle-badge {
    left: 10.4685212299vw;
    width: 14.6412884334vw;
    height: 14.6412884334vw;
  }
}
.p-home-gallery__text {
  position: absolute;
  right: 4vw;
  bottom: -2.6666666667vw;
  z-index: 2;
  line-height: 1;
}
@media (min-width: 768px) {
  .p-home-gallery__text {
    right: 3.6603221083vw;
    bottom: -1.4641288433vw;
  }
}
.p-home-gallery__catchphrase {
  font-size: 30px;
  font-weight: 900;
}
@media (min-width: 768px) {
  .p-home-gallery__catchphrase {
    font-size: 4.39238653vw;
  }
}
.p-home-gallery__catchphrase--red {
  color: #EE1B28;
}
.p-home-gallery__catchphrase--green {
  color: #009DA5;
}

.p-home-clients {
  padding: 16vw 0 24vw;
}
@media (min-width: 768px) {
  .p-home-clients {
    padding: 130px 0 240px;
  }
}

.p-service-detail-hero {
  padding: 6.6666666667vw 0 28vw;
}
@media (min-width: 768px) {
  .p-service-detail-hero {
    padding: 80px 0 220px;
  }
}
@media (min-width: 768px) {
  .p-service-detail-hero__wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
}
@media (min-width: 768px) {
  .p-service-detail-hero__summary {
    width: 50%;
  }
}
.p-service-detail-hero__text {
  font-size: 16px;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .p-service-detail-hero__text {
    font-size: 16px;
  }
}
.p-service-detail-hero__text:not(:first-child) {
  margin: 1em 0 0;
}
.p-service-detail-hero__image {
  position: relative;
  margin: 9.3333333333vw 0 0;
}
@media (min-width: 768px) {
  .p-service-detail-hero__image {
    width: 46.296296%;
    margin: 0;
  }
}
.p-service-detail-hero__thumb {
  aspect-ratio: 1340/912;
  object-fit: cover;
  border-radius: 2.6666666667vw;
  box-shadow: 0px 0px 2.6666666667vw rgba(0, 0, 0, 0.15);
}
@media (min-width: 768px) {
  .p-service-detail-hero__thumb {
    border-radius: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  }
}
.p-service-detail-hero__circle-badge {
  position: absolute;
  top: -9.3333333333vw;
  right: -9.3333333333vw;
  width: 32vw;
  height: 32vw;
}
@media (min-width: 768px) {
  .p-service-detail-hero__circle-badge {
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
  }
}

.p-service-detail-hero--set {
  padding: 6.6666666667vw 0 22.6666666667vw;
}
@media (min-width: 768px) {
  .p-service-detail-hero--set {
    padding: 80px 0 180px;
  }
}
@media (min-width: 768px) {
  .p-service-detail-hero--set .p-service-detail-hero__summary {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
  }
}

.p-service-detail-menu {
  position: relative;
  padding: 0.8vw 0 2.6666666667vw;
  background-color: #fff;
}
@media (min-width: 768px) {
  .p-service-detail-menu {
    padding: 0 0 10px;
  }
}
.p-service-detail-menu::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 10.6666666667vw;
  background-image: url("/assets/img/common/divider/ver02-sp.webp");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
@media (min-width: 768px) {
  .p-service-detail-menu::after {
    height: 100px;
    background-image: url("/assets/img/common/divider/ver02-pc.webp");
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }
}
.p-service-detail-menu__list-wrap {
  margin: 8vw 0 0;
}
@media (min-width: 768px) {
  .p-service-detail-menu__list-wrap {
    margin: 60px 0 0;
  }
}
@media (min-width: 768px) {
  .p-service-detail-menu__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
  }
}
.p-service-detail-menu__list:not(:first-child) {
  margin: 5.3333333333vw 0 0;
}
@media (min-width: 768px) {
  .p-service-detail-menu__list:not(:first-child) {
    margin: 20px 0 0;
  }
}
.p-service-detail-menu__item {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3.2vw;
  padding: 4.2666666667vw;
  background-color: #fff;
  border-radius: 2.6666666667vw;
  box-shadow: 0px 0px 2.6666666667vw rgba(0, 0, 0, 0.15);
}
@media (min-width: 768px) {
  .p-service-detail-menu__item {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    gap: 0;
    width: 23.611111%;
    padding: 36px 24px 26px;
    border-radius: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  }
}
.p-service-detail-menu__item:not(:first-child) {
  margin: 5.3333333333vw 0 0;
}
@media (min-width: 768px) {
  .p-service-detail-menu__item:not(:first-child) {
    margin: 0;
  }
}
.p-service-detail-menu__icon {
  width: 21.3333333333vw;
}
@media (min-width: 768px) {
  .p-service-detail-menu__icon {
    order: 1;
    width: 100px;
    margin: 0 auto;
  }
}
.p-service-detail-menu__text {
  width: 52.2666666667vw;
}
@media (min-width: 768px) {
  .p-service-detail-menu__text {
    order: 3;
    width: 94%;
    margin: 16px auto 0;
  }
}
.p-service-detail-menu__text-item {
  position: relative;
  padding: 0 0 0 4vw;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .p-service-detail-menu__text-item {
    padding: 0 0 0 14px;
    font-size: 14px;
  }
}
.p-service-detail-menu__text-item::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 1.6vw;
  height: 1.6vw;
  background-color: #0E0E0E;
  border-radius: 50%;
}
@media (min-width: 768px) {
  .p-service-detail-menu__text-item::before {
    width: 6px;
    height: 6px;
  }
}
@media (min-width: 768px) {
  .p-service-detail-menu--restoration .p-service-detail-menu__item {
    width: 32%;
  }
}
.p-service-detail-menu--restoration .p-service-detail-menu__text-item {
  padding: 0;
}
@media (min-width: 768px) {
  .p-service-detail-menu--restoration .p-service-detail-menu__text-item {
    padding: 0;
  }
}
.p-service-detail-menu--restoration .p-service-detail-menu__text-item::before {
  content: none;
}

.p-service-detail-banner {
  padding: 8vw 0 0;
  background-color: #fff;
}
@media (min-width: 768px) {
  .p-service-detail-banner {
    padding: 60px 0 0;
  }
}
@media (min-width: 768px) {
  .p-service-detail-banner__item {
    width: 93.333333%;
    margin: 0 auto;
  }
}

.p-service-detail-area {
  padding: 16vw 0 0;
  background-color: #fff;
}
@media (min-width: 768px) {
  .p-service-detail-area {
    padding: 70px 0 0;
  }
}

.p-service-detail-cta {
  position: relative;
  padding: 18.1333333333vw 0 10.6666666667vw;
  background-color: #fff;
}
@media (min-width: 768px) {
  .p-service-detail-cta {
    padding: 80px 0 120px;
  }
}
.p-service-detail-cta::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 10.6666666667vw;
  background-image: url("/assets/img/common/divider/ver01-sp.webp");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
@media (min-width: 768px) {
  .p-service-detail-cta::after {
    height: 100px;
    background-image: url("/assets/img/common/divider/ver01-pc.webp");
  }
}

.p-service-detail-clients {
  padding: 10.6666666667vw 0 22.2666666667vw;
}
@media (min-width: 768px) {
  .p-service-detail-clients {
    padding: 100px 0 240px;
  }
}

.p-service-detail-owner {
  position: relative;
  padding: 13.7333333333vw 0 20.2666666667vw;
  background-color: #fff;
}
@media (min-width: 768px) {
  .p-service-detail-owner {
    padding: 140px 0 160px;
  }
}
.p-service-detail-owner::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 12.4vw;
  background-image: url("/assets/img/common/divider/ver05-sp.webp");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
@media (min-width: 768px) {
  .p-service-detail-owner::after {
    height: 120px;
    background-image: url("/assets/img/common/divider/ver05-pc.webp");
  }
}
.p-service-detail-owner__circle-badge {
  position: absolute;
  top: -9.3333333333vw;
  right: -9.3333333333vw;
  width: 32vw;
  height: 32vw;
}
@media (min-width: 768px) {
  .p-service-detail-owner__circle-badge {
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
  }
}

.p-contact-form {
  padding: 6.6666666667vw 0 16vw;
}
@media (min-width: 768px) {
  .p-contact-form {
    padding: 120px 0 285px;
  }
}

@media (min-width: 768px) {
  .p-form-header {
    text-align: center;
  }
}
.p-form-header__info {
  font-size: 16px;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .p-form-header__info {
    display: inline-block;
    margin: 0 auto;
    text-align: left;
    font-size: 16px;
  }
}
.p-form-header__tel {
  display: inline-block;
  font-weight: 700;
  color: #009DA5;
  text-decoration: underline;
}
@media (min-width: 768px) {
  .p-form-header__tel {
    font-size: 20px;
    font-weight: 900;
    text-decoration: none;
  }
}

.p-form-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 11.7333333333vw;
  margin: 8vw 0 0;
}
@media (min-width: 768px) {
  .p-form-steps {
    gap: 70px;
    margin: 60px 0 0;
  }
}
.p-form-steps__item {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 1.3333333333vw;
  position: relative;
}
@media (min-width: 768px) {
  .p-form-steps__item {
    gap: 10px;
  }
}
.p-form-steps__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 6.6666666667vw;
  left: calc(100% + 2.4vw);
  transform: translateY(-50%);
  width: 1.0666666667vw;
  height: 1.0666666667vw;
  background-color: #CDCBC3;
  border-radius: 50%;
  box-shadow: 2.9333333333vw 0 0 0 #CDCBC3, 5.8666666667vw 0 0 0 #CDCBC3;
}
@media (min-width: 768px) {
  .p-form-steps__item:not(:last-child)::after {
    top: 42px;
    left: calc(100% + 16px);
    width: 6px;
    height: 6px;
    box-shadow: 16px 0 0 0 #CDCBC3, 32px 0 0 0 #CDCBC3;
  }
}
.p-form-steps__item.is-active .p-form-steps__num {
  background-color: #009DA5;
}
.p-form-steps__item.is-active-dot:not(:last-child)::after {
  background-color: #009DA5;
  box-shadow: 2.9333333333vw 0 0 0 #009DA5, 5.8666666667vw 0 0 0 #009DA5;
}
@media (min-width: 768px) {
  .p-form-steps__item.is-active-dot:not(:last-child)::after {
    box-shadow: 16px 0 0 0 #009DA5, 32px 0 0 0 #009DA5;
  }
}
.p-form-steps__num {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 13.3333333333vw;
  height: 13.3333333333vw;
  background-color: #CDCBC3;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}
@media (min-width: 768px) {
  .p-form-steps__num {
    width: 80px;
    height: 80px;
    font-size: 40px;
  }
}
.p-form-steps__txt {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .p-form-steps__txt {
    font-size: 18px;
    font-weight: 500;
  }
}

@media (min-width: 768px) {
  .p-form-confirm .p-form__input-col {
    padding-top: 13px;
  }
}

.p-form-complete {
  margin-top: 50px;
}
.p-form-complete__text {
  display: block;
  margin: 0 0 20px;
  font-size: 16px;
}
@media (min-width: 768px) {
  .p-form-complete__text {
    display: flex;
    width: fit-content;
    margin: 0 auto 40px;
    font-size: 18px;
  }
}
.p-form-complete__tel-text {
  text-align: left;
  font-size: 16px;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .p-form-complete__tel-text {
    text-align: center;
    font-size: 18px;
  }
}
.p-form-complete__tel-box {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}
.p-form-complete__tel {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 7px;
  width: 260px;
  min-height: 50px;
  background-color: #fff;
  border-radius: 30px;
  box-shadow: 0px 4px 0px 0px rgba(0, 0, 0, 0.2);
}
@media (min-width: 768px) {
  .p-form-complete__tel {
    width: auto;
    min-height: auto;
    background-color: transparent;
    box-shadow: none;
    border-radius: 0;
  }
}
.p-form-complete__tel-icon {
  width: 20px;
}
@media (min-width: 768px) {
  .p-form-complete__tel-icon {
    width: 30px;
  }
}
.p-form-complete__tel-icon img {
  width: 100%;
}
.p-form-complete__tel-num {
  font-size: 24px;
  font-weight: bold;
  color: #009DA5;
}
@media (min-width: 768px) {
  .p-form-complete__tel-num {
    font-size: 40px;
  }
}
.p-form-complete__tel-time {
  text-align: center;
  margin-bottom: 100px;
  font-size: 16px;
}
@media (min-width: 768px) {
  .p-form-complete__tel-time {
    font-size: 18px;
  }
}
.p-form-complete__btn {
  display: flex;
  justify-content: center;
}

.p-company-philosophy {
  padding: 16vw 0 29.3333333333vw;
}
@media (min-width: 768px) {
  .p-company-philosophy {
    padding: 80px 0 100px;
  }
}
.p-company-philosophy__wrap {
  margin-top: 8vw;
}
@media (min-width: 768px) {
  .p-company-philosophy__wrap {
    margin-top: 48px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 173px 10px;
  }
}
@media (min-width: 768px) {
  .p-company-philosophy__lead {
    order: 1;
    width: 50%;
  }
}
.p-company-philosophy__title {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  text-indent: -0.05em;
}
@media (min-width: 768px) {
  .p-company-philosophy__title {
    font-size: 24px;
    text-align: left;
    text-indent: 0;
  }
}
.p-company-philosophy__text-wrap {
  margin-top: 5.3333333333vw;
}
@media (min-width: 768px) {
  .p-company-philosophy__text-wrap {
    margin-top: 24px;
  }
}
.p-company-philosophy__text {
  font-size: 16px;
  line-height: 2.2;
}
@media (min-width: 768px) {
  .p-company-philosophy__text {
    font-size: 16px;
    line-height: 1.8;
  }
}
.p-company-philosophy__text:not(:first-child) {
  margin-top: 1em;
}
.p-company-philosophy__list {
  margin-top: 8vw;
}
@media (min-width: 768px) {
  .p-company-philosophy__list {
    order: 3;
    width: 100%;
    margin-top: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
  }
}
.p-company-philosophy__item {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 2.6666666667vw;
}
@media (min-width: 768px) {
  .p-company-philosophy__item {
    width: 340px;
    flex-direction: column;
    gap: 24px;
  }
}
.p-company-philosophy__item:not(:first-child) {
  margin-top: 2.6666666667vw;
}
@media (min-width: 768px) {
  .p-company-philosophy__item:not(:first-child) {
    margin-top: 0;
  }
}
.p-company-philosophy__img {
  width: 21.3333333333vw;
  height: 21.3333333333vw;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 0px 2.6666666667vw rgba(0, 0, 0, 0.05);
}
@media (min-width: 768px) {
  .p-company-philosophy__img {
    width: 140px;
    height: 140px;
    box-shadow: 0px 0px 10px rgba(139, 104, 0, 0.16);
    margin: 0 auto;
  }
}
.p-company-philosophy__icon {
  width: 10.6666666667vw;
  height: 10.6666666667vw;
}
@media (min-width: 768px) {
  .p-company-philosophy__icon {
    width: 80px;
    height: 80px;
  }
}
.p-company-philosophy__point {
  line-height: 1.8;
}
@media (min-width: 768px) {
  .p-company-philosophy__point {
    text-align: center;
    text-indent: -0.05em;
    font-size: 18px;
  }
}
.p-company-philosophy__image {
  width: 100vw;
  margin: 10.6666666667vw 0 0 calc(50% - 50vw);
  position: relative;
}
@media (min-width: 768px) {
  .p-company-philosophy__image {
    order: 2;
    width: 49.074074%;
    margin: 0;
  }
}
.p-company-philosophy__thumb01 {
  width: 64vw;
}
@media (min-width: 768px) {
  .p-company-philosophy__thumb01 {
    width: 480px;
  }
}
.p-company-philosophy__thumb01-img {
  aspect-ratio: 960/662;
  object-fit: cover;
  border-radius: 1.3333333333vw;
  box-shadow: 0px 0px 2.6666666667vw rgba(0, 0, 0, 0.15);
}
@media (min-width: 768px) {
  .p-company-philosophy__thumb01-img {
    border-radius: 10px;
    box-shadow: none;
  }
}
.p-company-philosophy__thumb02 {
  position: absolute;
  bottom: -11.3333333333vw;
  right: 3.7333333333vw;
  width: 34.6666666667vw;
}
@media (min-width: 768px) {
  .p-company-philosophy__thumb02 {
    bottom: -107px;
    right: 0;
    width: 260px;
  }
}
.p-company-philosophy__thumb02-img {
  aspect-ratio: 520/342;
  object-fit: cover;
  border-radius: 2.6666666667vw;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
}
@media (min-width: 768px) {
  .p-company-philosophy__thumb02-img {
    border-radius: 20px;
    box-shadow: none;
  }
}
.p-company-philosophy__circle-badge {
  position: absolute;
  aspect-ratio: 1/1;
  bottom: -20.2666666667vw;
  left: -8vw;
  width: 26.6666666667vw;
}
@media (min-width: 768px) {
  .p-company-philosophy__circle-badge {
    bottom: auto;
    top: -96px;
    left: auto;
    right: -100px;
    width: 200px;
  }
}

.p-company-summary {
  padding: 0 0 37.0666666667vw;
}
@media (min-width: 768px) {
  .p-company-summary {
    padding: 0 0 252px;
  }
}
.p-company-summary__box {
  background-color: #fff;
  border-radius: 2.6666666667vw;
  box-shadow: 0px 0px 3.7333333333vw rgba(139, 104, 0, 0.08);
  padding: 10.6666666667vw 5.3333333333vw;
}
@media (min-width: 768px) {
  .p-company-summary__box {
    border-radius: 20px;
    box-shadow: 0px 0px 28px rgba(139, 104, 0, 0.08);
    padding: 48px 80px;
  }
}
.p-company-summary__block:not(:first-child) {
  margin-top: 16vw;
}
@media (min-width: 768px) {
  .p-company-summary__block:not(:first-child) {
    margin-top: 68px;
  }
}
.p-company-summary__text {
  margin-top: 1em;
  line-height: 2.2;
}
@media (min-width: 768px) {
  .p-company-summary__text {
    line-height: 1.8;
    padding: 0 20px;
  }
}
.p-company-summary__text:nth-child(2) {
  margin-top: 5.3333333333vw;
}
@media (min-width: 768px) {
  .p-company-summary__text:nth-child(2) {
    margin-top: 20px;
  }
}
.p-company-summary__list {
  margin-top: 5.3333333333vw;
  padding: 0 2.6666666667vw;
}
@media (min-width: 768px) {
  .p-company-summary__list {
    margin-top: 28px;
    padding: 0 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 35px;
  }
}
.p-company-summary__item {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 4.2666666667vw;
}
@media (min-width: 768px) {
  .p-company-summary__item {
    width: 150px;
    gap: 13px;
    flex-direction: column;
  }
}
.p-company-summary__item:not(:first-child) {
  margin-top: 2.6666666667vw;
}
@media (min-width: 768px) {
  .p-company-summary__item:not(:first-child) {
    margin-top: 0;
  }
}
.p-company-summary__img {
  width: 18.6666666667vw;
  height: 18.6666666667vw;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 0px 1.3333333333vw rgba(0, 0, 0, 0.15);
}
@media (min-width: 768px) {
  .p-company-summary__img {
    width: 120px;
    height: 120px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  }
}
.p-company-summary__icon {
  width: 9.3333333333vw;
  height: 9.3333333333vw;
}
@media (min-width: 768px) {
  .p-company-summary__icon {
    width: 70px;
    height: 70px;
  }
}
.p-company-summary__point {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .p-company-summary__point {
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
  }
}

.p-company-greeting {
  background-color: #fff;
}
@media (min-width: 768px) {
  .p-company-greeting {
    padding: 98px 0 152px;
  }
}
.p-company-greeting::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 16vw;
  background-image: url("/assets/img/common/divider/ver04-sp.webp");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
@media (min-width: 768px) {
  .p-company-greeting::after {
    height: 100px;
    background-image: url("/assets/img/common/divider/ver04-pc.webp");
  }
}
.p-company-greeting__wrap {
  margin-top: 8vw;
}
@media (min-width: 768px) {
  .p-company-greeting__wrap {
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
}
@media (min-width: 768px) {
  .p-company-greeting__content {
    order: 2;
    width: 55%;
  }
}
.p-company-greeting__title {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.8;
  text-indent: -0.05em;
}
@media (min-width: 768px) {
  .p-company-greeting__title {
    font-size: 26px;
    text-align: left;
    text-indent: 0;
  }
}
.p-company-greeting__text {
  margin-top: 1em;
  font-size: 16px;
  line-height: 2.2;
}
@media (min-width: 768px) {
  .p-company-greeting__text {
    font-size: 16px;
  }
}
.p-company-greeting__text:nth-child(2) {
  margin-top: 5.3333333333vw;
}
@media (min-width: 768px) {
  .p-company-greeting__text:nth-child(2) {
    margin-top: 20px;
  }
}
.p-company-greeting__image {
  margin-top: 5.3333333333vw;
}
@media (min-width: 768px) {
  .p-company-greeting__image {
    order: 1;
    width: 39.888888%;
    margin-top: 35px;
  }
}
.p-company-greeting__thumb {
  width: 61.3333333333vw;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .p-company-greeting__thumb {
    width: 100%;
  }
}
.p-company-greeting__thumb-img {
  aspect-ratio: 920/1036;
  object-fit: cover;
  border-radius: 2.6666666667vw;
  box-shadow: 0px 0px 1.3333333333vw rgba(0, 0, 0, 0.15);
}
@media (min-width: 768px) {
  .p-company-greeting__thumb-img {
    border-radius: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  }
}
.p-company-greeting__profile {
  margin-top: 4vw;
}
@media (min-width: 768px) {
  .p-company-greeting__profile {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
  }
}
.p-company-greeting__position {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .p-company-greeting__position {
    font-size: 15px;
  }
}
.p-company-greeting__name {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .p-company-greeting__name {
    font-size: 20px;
  }
}

.p-not-found-detail-hero__wrap {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
  padding: 40px 0px 140px;
}
@media (max-width: calc(768px - 1px)) {
  .p-not-found-detail-hero__wrap {
    padding: 40px 0px 140px;
  }
}

.not-found__code__wrap {
  margin-bottom: 40px;
}
@media (max-width: calc(768px - 1px)) {
  .not-found__code__wrap {
    margin-bottom: 60px;
  }
}
.not-found__code {
  font-family: "Lato";
  font-weight: 900;
  line-height: 0.8;
  margin-bottom: 20px;
  font-size: 0;
}
.not-found__code-item {
  font-size: clamp(64px, 18vw, 150px);
  letter-spacing: 0.1em;
}
@media (max-width: calc(360px - 1px)) {
  .not-found__code-item {
    letter-spacing: 0.05em;
  }
}
.not-found__code-item--green {
  color: #009DA5;
}
.not-found__code-item--red {
  color: #EE1B28;
}
.not-found__code-item--yellow {
  color: #D7A100;
}
.not-found__title {
  font-family: "Lato";
  font-weight: 900;
  font-size: 40px;
  margin: 0 auto;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #0E0E0E;
}
.not-found__desc {
  width: 100%;
  max-width: 570px;
  margin: 0 auto 76px auto;
  text-align: left;
  font-size: 14px;
  line-height: 27px;
}
.not-found__desc p {
  margin: 0;
}
@media (max-width: calc(768px - 1px)) {
  .not-found__desc {
    font-size: 13.5px;
    line-height: 1.7;
    margin-bottom: 80px;
  }
}
@media (max-width: calc(480px - 1px)) {
  .not-found__desc {
    font-size: 13px;
    line-height: 1.7;
  }
}

.p-set-archive {
  background-color: #fff;
  padding: 8vw 0 16vw;
}
@media (min-width: 768px) {
  .p-set-archive {
    padding: 40px 0 80px;
  }
}
.p-set-archive::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 10.6666666667vw;
  background-image: url("/assets/img/common/divider/ver02-sp.webp");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
@media (min-width: 768px) {
  .p-set-archive::after {
    height: 100px;
    background-image: url("/assets/img/common/divider/ver02-pc.webp");
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }
}
.p-set-archive__item {
  margin-top: 16vw;
  overflow: hidden;
  background: #fff;
  border-radius: 1.3333333333vw;
  box-shadow: 0px 0px 2.6666666667vw rgba(0, 0, 0, 0.15);
}
@media (min-width: 768px) {
  .p-set-archive__item {
    margin-top: 80px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
    overflow: visible;
    background: none;
    border-radius: 0;
    box-shadow: none;
  }
}
.p-set-archive__item:nth-child(2) {
  margin-top: 8vw;
}
@media (min-width: 768px) {
  .p-set-archive__item:nth-child(2) {
    margin-top: 90px;
  }
}
.p-set-archive__item:nth-child(odd) {
  flex-direction: row;
}
@media (min-width: 768px) {
  .p-set-archive__image {
    width: 50vw;
    margin-right: calc(50% - 50vw);
  }
  .p-set-archive__item:nth-child(odd) > .p-set-archive__image {
    margin-right: auto;
    margin-left: calc(50% - 50vw);
  }
}
.p-set-archive__thumb {
  aspect-ratio: 1340/892;
  object-fit: cover;
  border-radius: 1.3333333333vw 1.3333333333vw 0 0;
}
@media (min-width: 768px) {
  .p-set-archive__thumb {
    aspect-ratio: 1352/720;
    border-radius: 20px 0 0 20px;
  }
  .p-set-archive__item:nth-child(odd) .p-set-archive__thumb {
    border-radius: 0 20px 20px 0;
  }
}
.p-set-archive__content {
  padding: 5.3333333333vw 7.2vw 8vw;
}
@media (min-width: 768px) {
  .p-set-archive__content {
    width: 50%;
    padding: 0 6.6666666667vw;
  }
}
.p-set-archive__text {
  margin-top: 4.2666666667vw;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .p-set-archive__text {
    margin-top: 32px;
  }
}
.p-set-archive__btn {
  width: 74.6666666667vw;
  margin: 4.2666666667vw auto 0;
}
@media (min-width: 768px) {
  .p-set-archive__btn {
    width: 370px;
    margin: 32px auto 0;
  }
}

.p-service-detail-area--set {
  padding: 0 0 10.6666666667vw;
}
@media (min-width: 768px) {
  .p-service-detail-area--set {
    padding: 40px 0 120px;
  }
}
.p-service-detail-area--set::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 10.6666666667vw;
  background-image: url("/assets/img/common/divider/ver01-sp.webp");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
@media (min-width: 768px) {
  .p-service-detail-area--set::after {
    height: 100px;
    background-image: url("/assets/img/common/divider/ver01-pc.webp");
  }
}

.p-set-privacy {
  padding: 30.9333333333vw 0 16vw;
}
@media (min-width: 768px) {
  .p-set-privacy {
    padding: 180px 0;
  }
}
.p-set-privacy__box {
  background-color: #fff;
  border-radius: 2.6666666667vw;
  padding: 5.3333333333vw;
  box-shadow: 0px 0px 3.7333333333vw rgba(139, 104, 0, 0.08);
}
@media (min-width: 768px) {
  .p-set-privacy__box {
    border-radius: 20px;
    padding: 80px 60px;
    box-shadow: 0px 0px 10px rgba(139, 104, 0, 0.1);
  }
}
.p-set-privacy__block:not(:first-child) {
  margin-top: 5.3333333333vw;
}
@media (min-width: 768px) {
  .p-set-privacy__block:not(:first-child) {
    margin-top: 40px;
  }
}
.p-set-privacy__title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  padding-left: 3.2vw;
  position: relative;
}
@media (min-width: 768px) {
  .p-set-privacy__title {
    font-size: 24px;
    padding-left: 20px;
  }
}
.p-set-privacy__title + * {
  margin-top: 2.1333333333vw;
}
@media (min-width: 768px) {
  .p-set-privacy__title + * {
    margin-top: 16px;
  }
}
.p-set-privacy__title::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  content: "";
  width: 1.6vw;
  height: 1.6vw;
  border-radius: 50%;
  background-color: #009DA5;
}
@media (min-width: 768px) {
  .p-set-privacy__title::before {
    width: 10px;
    height: 10px;
  }
}
.p-set-privacy__lead {
  font-size: 16px;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .p-set-privacy__lead {
    font-size: 16px;
  }
}
.p-set-privacy__text {
  font-size: 16px;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .p-set-privacy__text {
    font-size: 16px;
    padding-left: 34px;
  }
}
.p-set-privacy__list {
  font-size: 16px;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .p-set-privacy__list {
    font-size: 16px;
    padding-left: 34px;
  }
}
.p-set-privacy__item:not(:first-child) {
  margin-top: 2.1333333333vw;
}
@media (min-width: 768px) {
  .p-set-privacy__item:not(:first-child) {
    margin-top: 16px;
  }
}
.p-set-privacy__sub-list {
  padding-left: 0.5em;
}
@media (min-width: 768px) {
  .p-set-privacy__sub-list {
    padding-left: 1em;
  }
}
.p-set-privacy__sub-item {
  padding-left: 0.5em;
  position: relative;
}
@media (min-width: 768px) {
  .p-set-privacy__sub-item {
    padding-left: 1em;
  }
}
.p-set-privacy__sub-item::before {
  position: absolute;
  top: 0.8em;
  left: 0;
  content: "";
  width: 0.8vw;
  height: 0.8vw;
  border-radius: 50%;
  background-color: #009DA5;
}
@media (min-width: 768px) {
  .p-set-privacy__sub-item::before {
    width: 4px;
    height: 4px;
  }
}
.p-set-privacy__info-title {
  font-size: 16px;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .p-set-privacy__info-title {
    font-size: 16px;
  }
}
.p-set-privacy__info {
  margin-top: 2.1333333333vw;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
}
@media (min-width: 768px) {
  .p-set-privacy__info {
    margin-top: 8px;
    font-size: 16px;
  }
}
.p-set-privacy__info-label {
  width: 4.2em;
}
.p-set-privacy__info-value {
  width: calc(100% - 4.2em);
}

.p-set-information {
  padding: 13.3333333333vw 0 24vw;
}
@media (min-width: 768px) {
  .p-set-information {
    padding: 156px 0 220px;
  }
}
.p-set-information__box {
  background-color: #fff;
  border-radius: 2.6666666667vw;
  padding: 10.6666666667vw 2.1333333333vw 8vw;
  box-shadow: 0px 0px 3.7333333333vw rgba(139, 104, 0, 0.08);
  position: relative;
}
@media (min-width: 768px) {
  .p-set-information__box {
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0px 0px 10px rgba(139, 104, 0, 0.1);
  }
}
.p-set-information__detail {
  margin-top: 8.5333333333vw;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .p-set-information__detail {
    margin-top: 32px;
    line-height: 1.7;
  }
}
.p-set-information__detail-label {
  width: 36.908517%;
  padding: 2.1333333333vw 1.4666666667vw;
  border-top: 2px solid #B2E2E4;
}
.p-set-information__detail-label:nth-last-child(2) {
  border-bottom: 2px solid #B2E2E4;
}
@media (min-width: 768px) {
  .p-set-information__detail-label {
    width: 28.393782%;
    padding: 20px 30px;
  }
}
.p-set-information__detail-value {
  width: 63.091483%;
  padding: 2.1333333333vw 1.4666666667vw;
  border-top: 2px solid rgba(215, 161, 0, 0.2);
}
.p-set-information__detail-value:last-child {
  border-bottom: 2px solid rgba(215, 161, 0, 0.2);
}
@media (min-width: 768px) {
  .p-set-information__detail-value {
    width: 71.606218%;
    padding: 20px 30px;
  }
}
.p-set-information__detail-item {
  text-indent: -1em;
  padding-left: 1em;
}
.p-set-information__circle-badge {
  position: absolute;
  top: -13.2vw;
  right: -11.3333333333vw;
  width: 32vw;
  height: 32vw;
}
@media (min-width: 768px) {
  .p-set-information__circle-badge {
    top: -116px;
    right: -93px;
    width: 200px;
    height: 200px;
  }
}

.p-set-store {
  padding: 5.8666666667vw 0 16vw;
  background-color: #fff;
}
@media (min-width: 768px) {
  .p-set-store {
    padding: 48px 0 80px;
  }
}
.p-set-store::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 16vw;
  background-image: url("/assets/img/common/divider/ver04-sp.webp");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
@media (min-width: 768px) {
  .p-set-store::after {
    height: 100px;
    background-image: url("/assets/img/common/divider/ver04-pc.webp");
  }
}
.p-set-store__wrap {
  margin-top: 4.2666666667vw;
}
@media (min-width: 768px) {
  .p-set-store__wrap {
    width: 92.592592%;
    margin: 32px auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    gap: 40px;
  }
}
.p-set-store__item {
  border-radius: 2.6666666667vw;
  padding: 6.4vw 3.3333333333vw 3.3333333333vw;
  box-shadow: 0px 0px 2vw rgba(51, 51, 51, 0.15);
}
@media (min-width: 768px) {
  .p-set-store__item {
    width: calc((100% - 40px) / 2);
    border-radius: 20px;
    padding: 40px 27px 27px;
    box-shadow: 0px 0px 15px rgba(51, 51, 51, 0.15);
  }
}
.p-set-store__item:not(:first-child) {
  margin-top: 5.3333333333vw;
}
@media (min-width: 768px) {
  .p-set-store__item:not(:first-child) {
    margin-top: 0;
  }
}
.p-set-store__text {
  line-height: 1.4;
}
@media (min-width: 768px) {
  .p-set-store__text {
    line-height: 1.75;
  }
}
.p-set-store__text:first-of-type {
  margin-top: 4.2666666667vw;
}
@media (min-width: 768px) {
  .p-set-store__text:first-of-type {
    margin-top: 24px;
  }
}
.p-set-store__map {
  margin-top: 4.2666666667vw;
}
@media (min-width: 768px) {
  .p-set-store__map {
    margin-top: 24px;
  }
}
.p-set-store__frame {
  width: 100%;
  aspect-ratio: 620/243;
  border: 0;
}
@media (min-width: 768px) {
  .p-set-store__frame {
    aspect-ratio: 426/200;
  }
}

.p-recruit-hero {
  padding: 6.6666666667vw 0 4vw;
}
@media (min-width: 768px) {
  .p-recruit-hero {
    padding: 80px 0 120px;
  }
}
@media (min-width: 768px) {
  .p-recruit-hero__summary {
    max-width: 900px;
    margin: 0 auto;
  }
}
.p-recruit-hero__text {
  font-size: 16px;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .p-recruit-hero__text {
    font-size: 16px;
  }
}
.p-recruit-hero__text:not(:first-child) {
  margin: 1em 0 0;
}

.p-recruit-attraction {
  padding: 8vw 0 16vw;
}
@media (min-width: 768px) {
  .p-recruit-attraction {
    padding: 40px 0 80px;
  }
}
.p-recruit-attraction__list {
  margin-top: 8vw;
}
@media (min-width: 768px) {
  .p-recruit-attraction__list {
    margin-top: 48px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 24px;
  }
}
.p-recruit-attraction__item {
  display: grid;
  grid-template-columns: 21.3333333333vw 1fr;
  column-gap: 3.2vw;
  row-gap: 2.1333333333vw;
  align-content: start;
}
@media (min-width: 768px) {
  .p-recruit-attraction__item {
    width: 340px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }
}
.p-recruit-attraction__item:not(:first-child) {
  margin-top: 8vw;
}
@media (min-width: 768px) {
  .p-recruit-attraction__item:not(:first-child) {
    margin-top: 0;
  }
}
.p-recruit-attraction__img {
  grid-row: 1/3;
  align-self: center;
  width: 21.3333333333vw;
  height: 21.3333333333vw;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 0px 2.6666666667vw rgba(0, 0, 0, 0.05);
}
@media (min-width: 768px) {
  .p-recruit-attraction__img {
    width: 140px;
    height: 140px;
    box-shadow: 0px 0px 10px rgba(139, 104, 0, 0.16);
    margin: 0 auto;
  }
}
.p-recruit-attraction__icon {
  width: 17.333333vw;
  height: 18.333333vw;
}
@media (min-width: 768px) {
  .p-recruit-attraction__icon {
    width: 80px;
    height: 80px;
  }
}
.p-recruit-attraction__point {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .p-recruit-attraction__point {
    width: 100%;
    margin-top: 20px;
    text-align: center;
    text-indent: -0.05em;
    font-size: 18px;
  }
}
.p-recruit-attraction__text {
  font-size: 15px;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .p-recruit-attraction__text {
    width: 100%;
    margin-top: 12px;
    font-size: 14px;
  }
}

.p-recruit-information {
  padding: 13.3333333333vw 0 24vw;
}
@media (min-width: 768px) {
  .p-recruit-information {
    padding: 120px 0 220px;
  }
}
.p-recruit-information__box {
  position: relative;
  background-color: #fff;
  border-radius: 2.6666666667vw;
  padding: 10.6666666667vw 2.1333333333vw 8vw;
  box-shadow: 0px 0px 3.7333333333vw rgba(139, 104, 0, 0.08);
}
@media (min-width: 768px) {
  .p-recruit-information__box {
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0px 0px 10px rgba(139, 104, 0, 0.1);
  }
}
.p-recruit-information__detail {
  margin-top: 8.5333333333vw;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .p-recruit-information__detail {
    margin-top: 32px;
    line-height: 1.7;
  }
}
.p-recruit-information__detail-label {
  width: 36.908517%;
  padding: 2.1333333333vw 1.4666666667vw;
  border-top: 2px solid #B2E2E4;
}
.p-recruit-information__detail-label:nth-last-child(2) {
  border-bottom: 2px solid #B2E2E4;
}
@media (min-width: 768px) {
  .p-recruit-information__detail-label {
    width: 19.393782%;
    padding: 20px 30px;
  }
}
.p-recruit-information__detail-value {
  width: 63.091483%;
  padding: 2.1333333333vw 1.4666666667vw;
  border-top: 2px solid rgba(215, 161, 0, 0.2);
  word-break: auto-phrase;
}
.p-recruit-information__detail-value:last-child {
  border-bottom: 2px solid rgba(215, 161, 0, 0.2);
}
@media (min-width: 768px) {
  .p-recruit-information__detail-value {
    width: 80.606218%;
    padding: 20px 30px;
  }
}
.p-recruit-information__detail-text:not(:first-child) {
  margin-top: 1em;
}
.p-recruit-information__detail-list:not(:first-child) {
  margin-top: 0.4em;
}
.p-recruit-information__detail-item {
  position: relative;
  padding-left: 1em;
}
.p-recruit-information__detail-item::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.p-recruit-information__detail-inline-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: baseline;
}
.p-recruit-information__detail-inline-list:not(:first-child) {
  margin-top: 0.4em;
}
.p-recruit-information__detail-inline-item:not(:first-child)::before {
  content: "・";
}
.p-recruit-information__detail-inline-item--etc {
  padding-left: 0.5em;
}
.p-recruit-information__detail-inline-item--etc::before {
  content: none;
}
.p-recruit-information__detail-notes:not(:first-child) {
  margin-top: 0.2em;
}
.p-recruit-information__detail-note {
  position: relative;
  padding-left: 1.2em;
}
.p-recruit-information__detail-note::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.p-recruit-information__cta {
  padding-top: 16vw;
}
@media (min-width: 768px) {
  .p-recruit-information__cta {
    padding-top: 60px;
  }
}
.p-recruit-information__circle-badge {
  position: absolute;
  top: -13.2vw;
  right: -11.3333333333vw;
  width: 32vw;
  height: 32vw;
}
@media (min-width: 768px) {
  .p-recruit-information__circle-badge {
    top: -116px;
    right: -93px;
    width: 200px;
    height: 200px;
  }
}

@media (min-width: 768px) {
  .u-mobile-only {
    display: none;
  }
}

.u-desktop-only {
  display: none;
}
@media (min-width: 768px) {
  .u-desktop-only {
    display: block;
  }
}

/*# sourceMappingURL=main.css.map */
