html {
  height: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
@media screen and (max-width: 991px) {
  html {
    scroll-padding-top: 70px;
  }
}

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

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

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

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

strong {
  font-weight: 700;
}

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

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

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

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

textarea {
  resize: vertical;
}

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

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

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

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

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

.text-main {
  color: #f39600;
}

.text-accent {
  color: #59a2df;
}

.text-alert {
  color: #db6161;
}

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

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

.wpcf7-not-valid-tip {
  margin-top: 6px;
  font-size: 14px;
  color: #db6161;
}

.wpcf7-response-output {
  display: none !important;
}

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

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

/* c-input */
.c-input {
  width: 100%;
  padding: 11px 10px;
  background-color: #fff;
  line-height: 1.8;
}

/* c-checkbox */
.c-checkbox .wpcf7-list-item {
  margin: 0;
}
.c-checkbox .wpcf7-list-item label {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  height: 100%;
  gap: 0 10px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
}
.c-checkbox .wpcf7-list-item label:has(input:checked) {
  border-color: #f39600;
}
.c-checkbox .wpcf7-list-item label:has(input:checked):before {
  background-color: #f39600;
  border-color: #f39600;
}
.c-checkbox .wpcf7-list-item label:before {
  content: "";
  width: 18px;
  height: 18px;
  border: 1px solid #000;
  display: inline-block;
  border-radius: 2px;
  flex-shrink: 0;
  box-sizing: border-box;
  margin-top: 1px;
  text-align: center;
}
.c-checkbox .wpcf7-list-item input[type=checkbox] {
  display: none;
}
.c-checkbox .wpcf7-list-item input[type=checkbox]:checked ~ .wpcf7-list-item-label::before {
  position: absolute;
  top: 44%;
  left: 4px;
  width: 11px;
  height: 7px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-50%) rotate(-45deg);
}

/* c-radio */
.c-radio {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
}
.c-radio .wpcf7-list-item {
  margin: 0;
}
.c-radio .wpcf7-list-item label {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 8px;
  width: 100%;
  height: 100%;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}
.c-radio .wpcf7-list-item label:before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 9999px;
  background-color: #fff;
  border: 1px solid #444;
  display: inline-block;
  flex-shrink: 0;
  box-sizing: border-box;
  text-align: center;
}
.c-radio .wpcf7-list-item input[type=radio],
.c-radio .wpcf7-list-item input[type=checkbox] {
  display: none;
}
.c-radio .wpcf7-list-item input[type=radio]:checked ~ .wpcf7-list-item-label::before,
.c-radio .wpcf7-list-item input[type=checkbox]:checked ~ .wpcf7-list-item-label::before {
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 9999px;
  background-color: #f39600;
}

/* c-select */
.c-selectWrapper {
  position: relative;
}
.c-selectWrapper:after {
  content: "";
  position: absolute;
  top: 19px;
  right: 15px;
  transform: rotate(45deg);
  width: 10px;
  height: 10px;
  border-right: 2px solid #444;
  border-bottom: 2px solid #444;
  border-radius: 0 0 2px 0;
}

.c-select {
  padding: 13px 14px;
  background-color: #fff;
  color: #444;
  cursor: pointer;
}
.c-select.noVal {
  color: #cacaca;
}

/* c-ttl */
.c-ttl {
  position: relative;
  margin-bottom: 80px;
  text-align: center;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .c-ttl {
    margin-bottom: 60px;
  }
}
.c-ttl__en {
  display: block;
  font-size: 72px;
  color: #f7e3c2;
}
@media screen and (max-width: 767px) {
  .c-ttl__en {
    font-size: 52px;
  }
}
.c-ttl__ja {
  position: absolute;
  top: 49px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  font-size: 24px;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .c-ttl__ja {
    top: 30px;
  }
}

/* c-btn */
.c-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 14px 60px;
  background-color: #fff;
  border: 2px solid #f39600;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 700;
  color: #f39600;
  line-height: 1;
}
.c-btn span {
  position: relative;
  display: block;
  padding-right: 25px;
}
.c-btn span:after {
  content: "";
  position: absolute;
  top: 54%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background-image: url("../img/common/i_play.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  right: 0;
}
.c-btn--cta {
  padding: 10px 20px;
  background-color: #f39600;
  font-size: 14px;
  color: #fff;
}
@media screen and (max-width: 991px) {
  .c-btn--cta {
    max-width: 335px;
    width: 100%;
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 16px;
  }
}
.c-btn--back {
  max-width: 273px;
  width: 100%;
}
.c-btn--back span {
  padding-right: 0;
  padding-left: 25px;
}
.c-btn--back span:before {
  content: "";
  position: absolute;
  top: 54%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background-image: url("../img/common/i_play.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  left: 0;
  transform: translateY(-50%) rotate(180deg);
}
.c-btn--back span:after {
  display: none;
}

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

/* l-inner */
.l-inner {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.l-inner--sm {
  max-width: 1040px;
}

/* l-header */
.l-header {
  position: fixed;
  z-index: 50;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  height: 90px;
  background-color: #fff;
}
@media screen and (max-width: 991px) {
  .l-header {
    height: 60px;
  }
}
.l-header__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0 20px;
}
.l-header__logo {
  width: 237px;
}
@media screen and (max-width: 1199px) {
  .l-header__logo {
    width: 200px;
  }
}
@media screen and (max-width: 991px) {
  .l-header__logo {
    width: 160px;
  }
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    width: 119px;
  }
}
.l-header__menu {
  display: none;
}
@media screen and (max-width: 991px) {
  .l-header__menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 40;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateY(-100%);
    background-color: #fff;
    transition: all 0.3s;
    width: 100%;
    height: 100%;
    padding: 100px 0 80px;
    overflow-y: auto;
  }
}
.l-header__menu.is-active {
  transform: translateY(0);
}
.l-header__toggle {
  display: none;
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  background-color: #f39600;
  cursor: pointer;
}
@media screen and (max-width: 991px) {
  .l-header__toggle {
    display: block;
  }
}
.l-header__toggle__line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 18px;
  height: 1px;
  background-color: #fff;
  transition: all 0.3s;
}
.l-header__toggle__line:first-of-type {
  transform: translate(-50%, -6px);
}
.l-header__toggle__line:last-of-type {
  transform: translate(-50%, 5px);
}
.l-header__toggle.is-active .l-header__toggle__line:first-of-type {
  transform: translate(-50%, -50%) rotate(45deg);
}
.l-header__toggle.is-active .l-header__toggle__line:nth-of-type(2) {
  opacity: 0;
}
.l-header__toggle.is-active .l-header__toggle__line:last-of-type {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* l-footer */
.l-footer {
  margin-top: auto;
  padding: 80px 0;
  background-color: #f39600;
  color: #fff;
  font-size: 14px;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 60px 0;
  }
}
.l-footer__logo {
  display: block;
  width: 158px;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .l-footer__logo {
    margin-bottom: 24px;
  }
}
.l-footer__address {
  margin-bottom: 64px;
}
@media screen and (max-width: 767px) {
  .l-footer__address {
    margin-bottom: 40px;
  }
}

/* l-main */
.l-main {
  padding-top: 80px;
}
@media screen and (max-width: 991px) {
  .l-main {
    padding-top: 60px;
  }
}

/* p-pageHeader */
.p-pageHeader {
  height: 250px;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 740px 250px;
}
@media screen and (max-width: 767px) {
  .p-pageHeader {
    background-position: center;
    background-size: cover;
  }
}
.p-pageHeader__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.p-pageHeader .c-ttl {
  margin-bottom: 0;
}

/* p-nav */
.p-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 16px;
}
@media screen and (max-width: 1099px) {
  .p-nav {
    gap: 0 10px;
    white-space: nowrap;
  }
}
@media screen and (max-width: 991px) {
  .p-nav {
    flex-direction: column;
    gap: 32px 0;
    width: 100%;
  }
}
@media screen and (max-width: 991px) {
  .p-nav--header {
    display: none;
  }
}
.p-nav__list {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 16px;
}
@media screen and (max-width: 1099px) {
  .p-nav__list {
    gap: 0 10px;
  }
}
@media screen and (max-width: 991px) {
  .p-nav__list {
    flex-direction: column;
    gap: 24px 0;
  }
}
.p-nav__item__link {
  font-size: 14px;
}
@media screen and (max-width: 1099px) {
  .p-nav__item__link {
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .p-nav__item__link {
    font-size: 18px;
  }
}
.p-nav__btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 16px;
}
@media screen and (max-width: 1099px) {
  .p-nav__btn {
    gap: 0 10px;
  }
}
@media screen and (max-width: 991px) {
  .p-nav__btn {
    flex-direction: column;
    gap: 24px 0;
    width: 100%;
  }
}

/* p-homeMv */
.p-homeMv {
  width: 100%;
  height: 660px;
  background-image: url("../img/home/bg_mv.jpg");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-homeMv {
    height: 514px;
    background-image: url("../img/home/bg_mv_sp.jpg");
  }
}
.p-homeMv__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.p-homeMv__box {
  display: flex;
  flex-direction: column;
  gap: 24px 0;
  max-width: 756px;
  width: 100%;
  padding: 32px 60px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 767px) {
  .p-homeMv__box {
    max-width: none;
    padding: 24px;
  }
}
.p-homeMv__ttl {
  font-size: 40px;
  line-height: 1.4;
  color: #f39600;
  text-align: center;
  paint-order: stroke;
  -webkit-text-stroke: 1px #fff;
  text-stroke: 1px #fff;
}
@media screen and (max-width: 767px) {
  .p-homeMv__ttl {
    font-size: 24px;
  }
}
.p-homeMv__list {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
}
.p-homeMv__item {
  padding-left: 37px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.7;
  background-image: url("../img/common/i_check.svg");
  background-position: left 3px;
  background-repeat: no-repeat;
  background-size: 32px;
}
@media screen and (max-width: 767px) {
  .p-homeMv__item {
    padding-left: 26px;
    font-size: 14px;
    line-height: 1.3;
    background-position: left center;
    background-size: 16px;
  }
}

/* p-feature */
.p-feature {
  padding: 80px 0;
  background-color: #f8f7f2;
}
@media screen and (max-width: 767px) {
  .p-feature {
    padding: 60px 0;
  }
}
.p-feature__ttl {
  margin-bottom: 32px;
  font-size: 27px;
  line-height: 1.7;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-feature__ttl {
    font-size: 20px;
  }
}
.p-feature__lead {
  max-width: 670px;
  width: 100%;
  margin: 0 auto 64px;
  padding: 16px;
  background-color: #fff;
  border-radius: 9999px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.05em;
  box-shadow: 0 0 50px 0 rgba(243, 150, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .p-feature__lead {
    margin-bottom: 40px;
    padding: 16px 10px;
  }
}
.p-feature__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px 0;
}
.p-feature__item {
  display: flex;
  flex-direction: row;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 991px) {
  .p-feature__item {
    flex-direction: column;
    max-width: 600px;
  }
}
.p-feature__item__name {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 59px;
  background-color: #f39600;
  border-radius: 10px 0 0 10px;
  writing-mode: vertical-rl;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
@media screen and (max-width: 991px) {
  .p-feature__item__name {
    width: 100%;
    padding: 10px;
    border-radius: 10px 10px 0 0;
    font-size: 24px;
    writing-mode: unset;
  }
}
.p-feature__item__body {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 32px;
  padding: 30px 40px 30px 30px;
  background-color: #fff;
  border-radius: 0 10px 10px 0;
}
@media screen and (max-width: 991px) {
  .p-feature__item__body {
    flex-direction: column;
    gap: 16px 0;
    padding: 26px 20px;
    border-radius: 0 0 10px 10px;
  }
}
.p-feature__item__img {
  max-width: 250px;
  width: 100%;
  border-radius: 9999px;
}
.p-feature__item__box {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px 0;
}
@media screen and (max-width: 767px) {
  .p-feature__item__box {
    gap: 16px 0;
  }
}
.p-feature__item__box .ttl {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 12px;
  border-bottom: 1px solid #e5e5e5;
  font-size: 24px;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .p-feature__item__box .ttl {
    gap: 0 24px;
    padding-bottom: 10px;
    font-size: 20px;
    line-height: 1.5;
  }
}
.p-feature__item__box .ttl img {
  width: 9px;
}
.p-feature__item__box .list {
  padding: 24px;
  background-color: #f8f7f2;
  border-radius: 10px;
}
@media screen and (min-width: 992px) {
  .p-feature__item:nth-child(even) {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 992px) {
  .p-feature__item:nth-child(even) .p-feature__item__name {
    border-radius: 0 10px 10px 0;
  }
}
@media screen and (min-width: 992px) {
  .p-feature__item:nth-child(even) .p-feature__item__body {
    flex-direction: row-reverse;
    border-radius: 10px 0 0 10px;
    padding: 30px 30px 30px 40px;
  }
}

/* p-beforeAfter */
.p-beforeAfter {
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .p-beforeAfter {
    padding: 60px 0;
  }
}
.p-beforeAfter__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px 40px;
}
@media screen and (max-width: 767px) {
  .p-beforeAfter__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px 0;
  }
}
@media screen and (max-width: 767px) {
  .p-beforeAfter__item {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
  }
}
.p-beforeAfter__item:hover .p-beforeAfter__item__img .img--hover {
  opacity: 1;
}
.p-beforeAfter__item:hover .p-beforeAfter__item__img img--default {
  opacity: 0;
}
.p-beforeAfter__item__ttl {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 7px 20px;
  background-color: #f39600;
  border-radius: 10px 10px 0 0;
  color: #fff;
}
.p-beforeAfter__item__ttl .case {
  font-size: 28px;
  font-style: italic;
  opacity: 0.3;
}
.p-beforeAfter__item__ttl .ttl {
  font-size: 24px;
}
.p-beforeAfter__item__img {
  position: relative;
}
.p-beforeAfter__item__img .img {
  display: block;
  width: 100%;
  height: auto;
  transition: opacity 0.3s ease;
}
.p-beforeAfter__item__img .img--hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.p-beforeAfter__item__txt {
  margin: 24px 0 40px;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
}
.p-beforeAfter__item .c-btn {
  margin: 0 auto;
}

/* p-beforeAfterSingle */
.p-beforeAfterSingle__base {
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .p-beforeAfterSingle__base {
    padding: 60px 0;
  }
}
.p-beforeAfterSingle__base__ttl {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 2px 20px;
  background-color: #f39600;
  border-radius: 10px 10px 0 0;
  color: #fff;
}
.p-beforeAfterSingle__base__ttl .ttl {
  font-size: 32px;
}
@media screen and (max-width: 767px) {
  .p-beforeAfterSingle__base__ttl .ttl {
    font-size: 24px;
  }
}
.p-beforeAfterSingle__base__ttl .case {
  font-size: 39px;
  font-style: italic;
  opacity: 0.3;
}
@media screen and (max-width: 767px) {
  .p-beforeAfterSingle__base__ttl .case {
    font-size: 32px;
  }
}
.p-beforeAfterSingle__base__box {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0 40px;
  padding: 40px;
  border: 2px solid #f39600;
  border-radius: 0 0 10px 10px;
  border-top: none;
}
@media screen and (max-width: 991px) {
  .p-beforeAfterSingle__base__box {
    flex-direction: column;
    gap: 16px 0;
  }
}
@media screen and (max-width: 767px) {
  .p-beforeAfterSingle__base__box {
    padding: 20px 20px 30px;
  }
}
.p-beforeAfterSingle__base__box .img {
  max-width: 520px;
  width: 100%;
  aspect-ratio: 520/383;
  object-fit: cover;
}
@media screen and (max-width: 1099px) {
  .p-beforeAfterSingle__base__box .img {
    max-width: 450px;
  }
}
@media screen and (max-width: 991px) {
  .p-beforeAfterSingle__base__box .img {
    max-width: 680px;
    margin: 0 auto;
  }
}
.p-beforeAfterSingle__base__box .info {
  display: flex;
  flex-direction: column;
  gap: 24px 0;
  width: 100%;
}
.p-beforeAfterSingle__base__box .info__description {
  line-height: 1.7;
}
.p-beforeAfterSingle__base__box .info__table {
  width: 100%;
  border-collapse: collapse;
}
.p-beforeAfterSingle__base__box .info__table tr:nth-child(even) {
  background-color: #f9f9f9;
}
.p-beforeAfterSingle__base__box .info__table tr th,
.p-beforeAfterSingle__base__box .info__table tr td {
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  padding: 10px;
}
.p-beforeAfterSingle__base__box .info__table tr th {
  vertical-align: top;
  width: 110px;
  font-weight: 400;
}
.p-beforeAfterSingle__detail {
  padding: 80px 0;
  background-color: #f8f7f2;
}
@media screen and (max-width: 767px) {
  .p-beforeAfterSingle__detail {
    padding: 60px 0;
  }
}
.p-beforeAfterSingle__detail__ttl {
  margin-bottom: 60px;
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  color: #f7e3c2;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-beforeAfterSingle__detail__ttl {
    margin-bottom: 40px;
    font-size: 48px;
  }
}
.p-beforeAfterSingle__detail__section {
  display: flex;
  flex-direction: column;
  gap: 40px 0;
  margin-bottom: 40px;
  padding: 40px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 767px) {
  .p-beforeAfterSingle__detail__section {
    gap: 24px 0;
    margin-bottom: 24px;
    padding: 20px;
  }
}
.p-beforeAfterSingle__detail__section:last-child {
  margin-bottom: 0;
}
.p-beforeAfterSingle__detail__section .ttl {
  display: flex;
  flex-direction: row;
  align-items: center;
  border-bottom: 1px solid #e5e5e5;
  gap: 0 12px;
  font-size: 24px;
  line-height: 1.7;
}
.p-beforeAfterSingle__detail__section .ttl img {
  width: 9px;
}
.p-beforeAfterSingle__detail__section .box {
  display: flex;
  flex-direction: row;
  gap: 0 80px;
}
@media screen and (max-width: 1199px) {
  .p-beforeAfterSingle__detail__section .box {
    flex-direction: column;
    gap: 24px 0;
  }
}
.p-beforeAfterSingle__detail__section .box__description {
  flex: 1;
}
.p-beforeAfterSingle__detail__section .box__imgs {
  width: 840px;
  display: flex;
  flex-direction: row;
  gap: 77px;
}
@media screen and (max-width: 1199px) {
  .p-beforeAfterSingle__detail__section .box__imgs {
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .p-beforeAfterSingle__detail__section .box__imgs {
    flex-direction: column;
    align-items: center;
  }
}
.p-beforeAfterSingle__detail__section .box__imgs--noCompare {
  flex-wrap: wrap;
  gap: 24px;
}
.p-beforeAfterSingle__detail__section .box__imgs--noCompare .box__img {
  width: 408px;
}
@media screen and (max-width: 1199px) {
  .p-beforeAfterSingle__detail__section .box__imgs--noCompare .box__img {
    width: calc(50% - 12px);
  }
}
@media screen and (max-width: 767px) {
  .p-beforeAfterSingle__detail__section .box__imgs--noCompare .box__img {
    width: 100%;
  }
}
.p-beforeAfterSingle__detail__section .box__imgs--noCompare .box__img:after {
  display: none;
}
.p-beforeAfterSingle__detail__section .box__imgs--odd .box__img:first-child {
  width: 100%;
}
.p-beforeAfterSingle__detail__section .box__imgs--floorPlan {
  width: 580px;
}
@media screen and (max-width: 767px) {
  .p-beforeAfterSingle__detail__section .box__imgs--floorPlan {
    width: 100%;
  }
}
.p-beforeAfterSingle__detail__section .box__img {
  position: relative;
  width: 380px;
}
@media screen and (max-width: 1199px) {
  .p-beforeAfterSingle__detail__section .box__img {
    width: calc(50% - 38.5px);
  }
}
@media screen and (max-width: 767px) {
  .p-beforeAfterSingle__detail__section .box__img {
    max-width: 500px;
    width: 100%;
  }
}
.p-beforeAfterSingle__detail__section .box__img:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -53px;
  transform: translateY(-50%);
  width: 29px;
  height: 29px;
  background-image: url("../img/common/i_arrow_compare.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-beforeAfterSingle__detail__section .box__img:after {
    top: auto;
    right: auto;
    left: 50%;
    bottom: -53px;
    transform: translateX(-50%) rotate(90deg);
  }
}
.p-beforeAfterSingle__detail__section .box__img:last-child:after {
  display: none;
}
.p-beforeAfterSingle__detail__section .box__img__label {
  position: absolute;
  top: 0;
  left: 0;
  padding: 6px 10px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background-color: #444;
}
.p-beforeAfterSingle__detail__section .box__img__label--after {
  background-color: #f39600;
}
.p-beforeAfterSingle__detail .c-btn {
  margin: 54px auto 0;
}

/* p-flow */
.p-flow {
  padding: 80px 0;
  background-color: #f8f7f2;
}
@media screen and (max-width: 767px) {
  .p-flow {
    padding: 60px 0;
  }
}
.p-flow__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.p-flow__item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 186px;
  padding: 24px 15px;
  background-color: #fff;
  border: 1px solid #f39600;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .p-flow__item {
    flex-direction: row;
    align-items: center;
    width: 100%;
    padding: 20px;
  }
}
.p-flow__item:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -17px;
  transform: translateY(-50%);
  width: 17px;
  height: 37px;
  background-color: #f39600;
}
@media screen and (max-width: 767px) {
  .p-flow__item:after {
    top: auto;
    left: 50%;
    bottom: -17px;
    transform: translateX(-50%);
    width: 40px;
    height: 17px;
  }
}
.p-flow__item:last-child:after {
  display: none;
}
.p-flow__item__head {
  display: flex;
  flex-direction: column;
  gap: 15px 0;
}
@media screen and (max-width: 767px) {
  .p-flow__item__head {
    gap: 0;
    width: 120px;
  }
}
.p-flow__item__txt {
  font-size: 14px;
}
.p-flow__item__step {
  font-size: 20px;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  color: #f39600;
  text-align: center;
}
.p-flow__item__media .img {
  width: 70px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-flow__item__media .img {
    width: 55px;
  }
}
.p-flow__item__media .ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 62px;
  font-size: 24px;
  text-align: center;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .p-flow__item__media .ttl {
    height: auto;
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-flow__item__txt {
    flex: 1;
  }
}

/* p-faq */
.p-faq {
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .p-faq {
    padding: 60px 0;
  }
}
.p-faq__inner {
  max-width: 940px;
}
.p-faq__list {
  display: flex;
  flex-direction: column;
  gap: 24px 0;
}
.p-faq__item {
  display: flex;
  flex-direction: column;
  gap: 16px 0;
  padding: 40px;
  background-color: #f8f7f2;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .p-faq__item {
    padding: 20px;
  }
}
.p-faq__item__label {
  font-size: 24px;
  font-weight: 700;
}
.p-faq__item__q {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 20px;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-faq__item__q {
    align-items: baseline;
  }
}
.p-faq__item__q .p-faq__item__label {
  color: #59a2df;
}
.p-faq__item__a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 20px;
}
@media screen and (max-width: 767px) {
  .p-faq__item__a {
    align-items: baseline;
  }
}
.p-faq__item__a .p-faq__item__label {
  color: #db6161;
}

/* p-form */
.p-form__step {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .p-form__step {
    flex-direction: column;
    margin-bottom: 40px;
  }
}
.p-form__step__item {
  padding: 10px 30px;
  background-color: #fff;
  font-weight: 500;
  color: #cacaca;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-form__step__item {
    padding: 10px;
  }
}
.p-form__step__item.is-active {
  background-color: #f39600;
  font-weight: 700;
  color: #fff;
}
.p-form__step__item:first-child {
  border-radius: 9999px 0 0 9999px;
}
@media screen and (max-width: 767px) {
  .p-form__step__item:first-child {
    border-radius: 20px 20px 0 0;
  }
}
.p-form__step__item:last-child {
  border-radius: 0 9999px 9999px 0;
}
@media screen and (max-width: 767px) {
  .p-form__step__item:last-child {
    border-radius: 0 0 20px 20px;
  }
}
.p-form__wrapper {
  display: flex;
  flex-direction: column;
  gap: 56px 0;
}
.p-form__box {
  display: flex;
  flex-direction: column;
  gap: 32px 0;
}
.p-form__group {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 80px;
}
@media screen and (max-width: 991px) {
  .p-form__group {
    gap: 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-form__group {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px 0;
  }
}
.p-form__group--content {
  align-items: flex-start;
}
.p-form__head {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 9px;
  font-weight: 500;
  color: #000;
  width: 220px;
}
@media screen and (max-width: 767px) {
  .p-form__head {
    width: 100%;
  }
}
.p-form__head span {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 23px;
  background-color: #db6161;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}
.p-form__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px 0;
  width: 100%;
}
.p-form__zip {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 8px;
}
.p-form__zip .c-input {
  width: 243px;
}
.p-form__privacy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px 0;
}
.p-form__privacy__box {
  padding: 24px 10px 24px 24px;
  background-color: #eeece2;
}
.p-form__privacy__boxInner {
  height: 250px;
  overflow-y: auto;
}
.p-form__privacy__boxInner::-webkit-scrollbar {
  width: 9px;
}
.p-form__privacy__boxInner::-webkit-scrollbar-track {
  background: #eeece2;
}
.p-form__privacy__boxInner::-webkit-scrollbar-thumb {
  background-color: #444;
  border-radius: 5px;
}
.p-form__privacy__ttl {
  margin-bottom: 8px;
  font-weight: 700;
}
.p-form__privacy__txt {
  font-size: 14px;
}
.p-form__privacy__check {
  width: fit-content;
}
.p-form__btn {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  max-width: 273px;
  width: 100%;
  height: 47px;
  margin: 0 auto;
  background-color: #fff;
  border: 2px solid #f39600;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 700;
  color: #f39600;
  line-height: 1;
  transition: all 0.3s;
}
.p-form__btn:hover {
  opacity: 0.8;
}
.p-form__btn:after {
  content: "";
  position: absolute;
  top: 54%;
  right: 100px;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background-image: url("../img/common/i_play.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.p-form__btn input {
  width: 100%;
  height: 100%;
  padding-right: 25px;
  color: #f39600;
}

/* p-contact */
.p-contact {
  padding: 80px 0;
  background-color: #f8f7f2;
}
@media screen and (max-width: 767px) {
  .p-contact {
    padding: 60px 0;
  }
}
.p-contact__txt {
  margin-bottom: 60px;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contact__txt {
    margin-bottom: 40px;
    text-align: left;
  }
}
.p-contact .c-btn {
  margin: 0 auto;
}/*# sourceMappingURL=style.css.map */