:root {
  --blue: #0072C6;
  --blue-hover: #1383D6;
  --nav-blue: #5CAEEA;
  --title-main: #1A2D3B;
  --text-main: #464E54;
  --green: #06C755;
  --cta-button-line: #06C755;
  --green-hover: #14D763;
  --shadow: 0 13px 24px rgba(11, 49, 75, .18);
  --header-height: 106px;
  --font-main: "Noto Sans JP", "Zen Kaku Gothic New", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  --font-dela: "Dela Gothic One", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  min-width: 320px;
  background: #eee;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  color: var(--text-main);
  font-family: var(--font-main);
  background: #eee;
  overflow-x: hidden;
}

main {
  overflow: hidden;
}

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

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

.ft-dela {
  font-family: var(--font-dela);
  font-weight: 400;
}

.container {
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
}

.disp-960, .disp-768, .disp-540 {
  display: none;
}

.header {
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  height: var(--header-height);
  background: rgba(238, 241, 244, .95);
  box-shadow: 0 8px 24px rgba(19, 45, 61, .08);
}

.header-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.brand {
  display: grid;
  gap: 2px;
  line-height: 1;
  white-space: nowrap;
}

.brand__lead {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
  color: var(--title-main);
}

.brand__logo {
  width: 310px;
  height: auto;
}

.menu-toggle {
  display: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 42px;
  color: var(--blue);
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.nav__link {
  position: relative;
  padding: 14px 0;
}

.nav__link::after {
  position: absolute;
  right: 0;
  bottom: -30px;
  left: 0;
  height: 4px;
  content: "";
  background: var(--nav-blue);
  opacity: 0;
  transform: scaleX(.55);
  transition: opacity .2s ease, transform .2s ease;
}

.nav__link:hover::after, .nav__link:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.hero {
  position: relative;
  min-height: calc(715px - var(--header-height));
  padding: 0 0 64px;
  overflow: hidden;
  background: #f3eee4;
  padding-top: var(--header-height);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 12;
  height: 80px;
  content: "";
  background: linear-gradient(rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
}

.hero .container {
  width: 100%;
}

.hero__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(rgba(255, 255, 255, .3), rgba(255, 255, 255, .3)), url("../img/mv.jpg") center / cover no-repeat;
}

.hero__content {
  position: relative;
  z-index: 8;
  width: min(880px, calc(100% - 128px));
  padding: 85px 0 0 90px;
}

.hero__eyebrow {
  margin: 0 0 5px;
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
  transform: rotate(-5deg);
  transform-origin: left center;
  color: var(--title-main);
}

.hero__title {
  position: relative;
  margin: 0 0 38px;
  font-family: "Zen Kaku Gothic New", var(--font-main);
  font-weight: 900;
  line-height: .92;
}

.hero__line {
  position: relative;
  display: block;
  width: max-content;
  max-width: 100%;
  letter-spacing: 0;
  transform: rotate(-5.5deg);
  transform-origin: left center;
}

.hero__line--primary {
  z-index: 2;
  color: var(--blue);
  font-size: 100px;
  text-shadow: 0 2px 0 rgba(0, 78, 130, .04);
}

.hero__particle {
  display: inline-block;
  margin-left: 3px;
  color: var(--title-main);
  font-size: 60px;
  transform: translateY(-.08em) rotate(4deg);
  transform-origin: center;
  font-family: var(--font-main);
  font-weight: 900;
}

.hero__line--second {
  margin-top: -5px;
  margin-left: 130px;
}

.hero__line--sub {
  margin-top: 36px;
  margin-left: -10px;
  color: var(--title-main);
  font-size: 64px;
  letter-spacing: -4%;
  text-shadow: 0px 0px 7px rgba(230, 233, 235, 1), 0px 0px 7px rgba(230, 233, 235, 1);
}

.marker {
  position: absolute;
  z-index: -1;
  height: 100%;
  pointer-events: none;
  background: url("../img/line_yellow.png") center / 100% 100% no-repeat;
  transform: rotate(4.5deg);
  transform-origin: left center;
}

.marker--top {
  right: 75px;
  bottom: -10px;
  left: -5px;
}

.marker--bottom {
  right: -16px;
  bottom: -14px;
  left: -8px;
}

.hero__copy {
  margin-bottom: 52px;
  font-size: 20px;
  line-height: 36px;
  text-shadow: 0px 0px 7px rgba(255, 255, 255, 1), 0px 0px 7px rgba(255, 255, 255, 1);
}

.hero__copy span {
  background: linear-gradient(transparent 56%, #FEFE01 56%);
}

.hero__buttons {
  display: flex;
  gap: 24px;
  margin-left: 1px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 320px;
  height: 65px;
  gap: 16px;
  border-radius: 8px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  box-shadow: var(--shadow);
  transition: background-color .2s ease, background .2s ease;
}

.button__icon {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.button--estimate {
  background: #0072C6;
}

.button--estimate:hover, .button--estimate:focus-visible {
  background: var(--blue-hover);
}

.button--consult {
  background: var(--cta-button-line);
}

.button--consult:hover, .button--consult:focus-visible {
  background: var(--green-hover);
}

.sticky-hero-buttons {
  display: none;
}

.daihyo {
  position: absolute;
  right: 16px;
  bottom: -41px;
  z-index: 7;
  width: 666px;
  pointer-events: none;
}

.case--beforeafter_box {
  position: absolute;
  right: 460px;
  top: 360px;
  width: 370px;
  height: 100%;
}
.case--beforeafter_box .case {
  position: absolute;
  z-index: 6;
  border-radius: 50%;
}
.case--beforeafter_box .case--before {
  width: 160px;
  right: auto;
  filter: drop-shadow(0 0px 15px #987D23);
}
.case--beforeafter_box .case--after {
  width: 220px;
  right: 15px;
  top: -90px;
  filter: drop-shadow(0 0px 15px rgba(255, 255, 255, 1));
}

.services {
  overflow: hidden;
  background: #fff;
  scroll-margin-top: var(--header-height);
}

.services .container {
  padding: 90px 0;
}

.services__title {
  position: relative;
  z-index: 1;
  width: max-content;
  max-width: 100%;
  margin: 0 auto 66px;
  color: var(--title-main);
  font-size: 40px;
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 1.6px;
}

.services__title::before {
  position: absolute;
  z-index: -1;
  right: 170px;
  bottom: -30px;
  left: 126px;
  height: 100px;
  content: "";
  background: url("../img/line_yellow.png") center / 100% 100% no-repeat;
}

.services__list {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 0 auto;
}

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

.service-card__image {
  width: 220px;
  height: 220px;
  margin: 0 auto 11px;
  border-radius: 50%;
  object-fit: cover;
}

.service-card__title {
  margin: 0 0 7px;
  color: var(--title-main);
  font-size: 24px;
  white-space: nowrap;
}

.service-card__text {
  min-height: 52px;
  margin: 0 0 11px;
  font-size: 14px;
  line-height: 1.7;
}

.service-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 151px;
  height: 38px;
  gap: 10px;
  border: 2px solid var(--title-main);
  border-radius: 8px;
  background: #fff;
  color: var(--title-main);
  font-size: 14px;
  font-weight: bold;
  transition: background-color .2s ease;
}

.service-card__button:hover, .service-card__button:focus-visible {
  background: #eaeaea;
}

.service-card__button span {
  width: 7px;
  height: 7px;
  margin-top: -3px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.daihyo-message {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.daihyo-message::before {
  position: absolute;
  inset: 0;
  content: "";
  background: #D5EDFF;
  clip-path: polygon(0 36%, 100% 0, 100% 100%, 0 100%);
}

.daihyo-message__inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 80px;
}

.daihyo-message__inner-sp {
  display: none;
}

.daihyo-message__figure {
  width: 245px;
}

.daihyo-message__figure img {
  width: 100%;
  margin: 0 auto;
}

.daihyo-message__body {
  align-self: center;
  padding-top: 165px;
  padding-bottom: 65px;
}

.daihyo-message__title {
  position: relative;
  z-index: 1;
  width: max-content;
  max-width: 100%;
  margin: 0 0 44px;
  color: var(--title-main);
  font-size: 48px;
  line-height: 56px;
  letter-spacing: 0;
  transform: rotate(-5deg);
  transform-origin: left center;
}

.daihyo-message__title-line {
  position: relative;
  z-index: 1;
  display: block;
  width: max-content;
  max-width: 100%;
}

.daihyo-message__title-line::before {
  position: absolute;
  z-index: -1;
  content: "";
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  transform: rotate(-1deg);
  transform-origin: left center;
}

.daihyo-message__title-line--short::before {
  right: -22px;
  bottom: -12px;
  left: -3px;
  height: 75px;
  background-image: url("../img/line_blue.png");
  transform: rotate(5deg);
}

.daihyo-message__title-line--long::before {
  right: -22px;
  bottom: -10px;
  left: -3px;
  height: 110px;
  background-image: url("../img/line_blue_long.png");
  transform: rotate(6deg);
}

.daihyo-message__text {
  font-size: 16px;
  line-height: 32px;
}

.cta {
  position: relative;
  min-height: 536px;
  padding: 120px 0;
  overflow: hidden;
  background: url("../img/cta_bg.png") center / cover no-repeat;
}

.cta__panel {
  position: relative;
  z-index: 2;
  width: min(960px, 90%);
  min-height: 272px;
  margin: 0 auto;
  padding: 64px 48px;
  border-radius: 5px;
  background: #F6F6EF;
  text-align: center;
}

.cta__title {
  margin: 0 0 20px;
  color: var(--title-main);
  font-size: 32px;
  font-weight: 900;
}

.cta__text {
  margin: 0 0 29px;
  color: rgba(19, 45, 61, .78);
  font-size: 16px;
  line-height: 1.7;
}

.cta__buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 245px;
  height: 65px;
  gap: 16px;
  border-radius: 8px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  box-shadow: 0 4px 4px rgba(0, 0, 0, .07);
  transition: background-color .2s ease, background .2s ease;
}

.cta-button--estimate {
  background: var(--blue);
}

.cta-button--estimate:hover, .cta-button--estimate:focus-visible {
  background: var(--blue-hover);
}

.cta-button--consult {
  background: var(--cta-button-line);
}

.cta-button--consult:hover, .cta-button--consult:focus-visible {
  background: var(--green-hover);
}

.cta-button__icon {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.cta__ivy {
  position: absolute;
  z-index: 3;
  pointer-events: none;
}

.cta__ivy--top {
  top: 10px;
  left: -2px;
  width: 368px;
  transform: rotate(1deg);
}

.cta__ivy--bottom {
  right: 15px;
  bottom: -90px;
  width: 746px;
}

.works {
  position: relative;
  overflow: hidden;
  padding: 80px 0 180px;
  background: #dff1ff;
  scroll-margin-top: var(--header-height);
}

.works__header {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100% - 40px));
  margin: 0 auto 34px;
  text-align: center;
}

.works__title {
  position: relative;
  z-index: 1;
  width: max-content;
  max-width: 100%;
  margin: 0 auto 10px;
  color: var(--title-main);
  font-size: 40px;
  font-weight: 900;
  letter-spacing: 1.6px;
}

.works__header::before {
  position: absolute;
  z-index: -1;
  right: 49px;
  bottom: 76px;
  left: 35px;
  height: 95px;
  content: "";
  background: url("../img/line_blue.png") center / 100% 100% no-repeat;
  transform: rotate(-2deg);
  transform-origin: left center;
}

.works__lead {
  margin: 0 0 30px;
  color: var(--title-main);
  font-size: 18px;
  font-weight: bold;
}

.works__text {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
}

.works-slider {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.works-slider__viewport {
  overflow: hidden;
}

.works-slider__track {
  display: block;
  gap: 0;
}

.works-slider__track .slick-list {
  overflow: visible;
  margin: 0 -16px;
}

.work-card {
  width: auto;
  min-height: 519px;
  padding: 40px 32px;
  border-radius: 8px;
  background: #fff;
  flex: none;
  margin: 0 24px 0 0;
}
.work-card__title {
  margin: 0 0 21px;
  color: var(--title-main);
  font-size: 28px;
  line-height: 24px;
  text-align: center;
  white-space: nowrap;
}

.work-card__image {
  width: 100%;
  margin: 0 0 21px;
  border-radius: 8px;
  object-fit: cover;
}

.work-card__text {
  margin: 0;
  font-size: 16px;
  line-height: 32px;
  user-select: text;
  -webkit-user-select: text;
}

.works-slider__arrow {
  position: absolute;
  top: 240px;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--title-main);
  border-radius: 50%;
  background: rgba(255, 255, 255, .8);
  color: var(--title-main);
  cursor: default;
}

.works-slider__arrow:hover {
  background: rgba(255, 255, 255, 1);
}

.works-slider__arrow span {
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
}

.works-slider__arrow--prev {
  left: 10px;
}

.works-slider__arrow--prev span {
  transform: translateX(2px) rotate(-45deg);
}

.works-slider__arrow--next {
  right: 10px;
}

.works-slider__arrow--next span {
  transform: translateX(-2px) rotate(135deg);
}

.works-slider__dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}
.works-slider__dots ul {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.works-slider__dots li {
  margin: 0;
  padding: 0;
}
.works-slider__dot {
  display: block;
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}
.works-slider__dots li.slick-active .works-slider__dot {
  background: #d8d8d8;
}
.works-slider__dot.is-active {
  background: #d8d8d8;
}

.testimonials {
  overflow: hidden;
  padding: 90px 0 160px;
  background: url("../img/customer-testimonials_bg.png") center / cover no-repeat;
  scroll-margin-top: var(--header-height);
}

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

.testimonials__title {
  position: relative;
  z-index: 1;
  width: max-content;
  max-width: 100%;
  margin: 0 auto 22px;
  color: var(--title-main);
  font-size: 40px;
  font-weight: 900;
  line-height: 56px;
}

.testimonials__title::before {
  position: absolute;
  z-index: -1;
  right: 80px;
  bottom: -12px;
  left: 77px;
  height: 97px;
  content: "";
  background: url("../img/line_yellow.png") center / 100% 100% no-repeat;
  transform: rotate(-2deg);
  transform-origin: left center;
}

.testimonials__title span {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.testimonials__rating {
  margin: 0 0 34px;
  color: var(--title-main);
  font-size: 18px;
  line-height: 24px;
}

.testimonial-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 27px;
}

.testimonial-card {
  min-height: 448px;
  padding: 40px 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  text-align: left;
}

.testimonial-card__head {
  display: flex;
  align-items: center;
  gap: 21px;
  margin-bottom: 21px;
}

.testimonial-card__avatar {
  flex: 0 0 auto;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #D5EDFF;
  object-fit: contain;
}

.testimonial-card__name {
  margin: 0 0 3px;
  color: var(--title-main);
  font-size: 16px;
}

.testimonial-card__stars {
  margin: 0;
  color: #FEC301;
  font-size: 18px;
}

.testimonial-card__title {
  margin: 0 0 10px;
  color: var(--title-main);
  font-size: 20px;
  font-weight: 900;
  line-height: 24px;
}

.testimonial-card__text {
  margin: 0;
  font-size: 16px;
  line-height: 32px;
}

.testimonials__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 50px;
  gap: 13px;
  border: 2px solid var(--title-main);
  border-radius: 8px;
  color: var(--title-main);
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  transition: background-color .2s ease;
}

.testimonials__button:hover, .testimonials__button:focus-visible {
  background: #eaeaea;
}

.testimonials__button span {
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.faq {
  position: relative;
  padding: 100px 0 96px;
  overflow: hidden;
  background: url("../img/cta_bg.png") top center / 100% auto no-repeat;
  scroll-margin-top: var(--header-height);
}

.faq::before {
  position: absolute;
  z-index: 0;
  top: 178px;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  background: #F7F7F0;
  box-shadow: 0 -4px 4px rgba(19, 45, 61, .08);
}

.faq__panel {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 60px;
  background: transparent;
}

.faq__panel::before {
  position: absolute;
  z-index: -1;
  top: 0px;
  right: 0;
  left: 0;
  height: 80px;
  content: "";
  border-radius: 100px 100px 0 0;
  background: #F7F7F0;
  box-shadow: 0 -4px 4px rgba(19, 45, 61, .08);
}

.faq__header {
  margin-bottom: 76px;
  text-align: center;
}

.faq__title {
  margin: 0 0 16px;
  color: var(--title-main);
  font-size: 32px;
  line-height: 40px;
}

.faq__lead {
  margin: 0;
  color: var(--title-main);
  font-size: 18px;
  font-weight: bold;
  line-height: 24px;
}

.faq__person {
  position: absolute;
  top: -59px;
  left: 59px;
  z-index: 2;
  width: 136px;
  pointer-events: none;
}

.faq__tools {
  position: absolute;
  top: 66px;
  right: 30px;
  z-index: 2;
  width: 151px;
  pointer-events: none;
}

.faq__list {
  border-top: 1px solid #DDDDDD;
}

.faq-item {
  padding: 24px 0;
  border-bottom: 1px solid #DDDDDD;
}

.faq-item__question, .faq-item__answer {
  display: grid;
  grid-template-columns: 41px 1fr;
  align-items: center;
  column-gap: 13px;
  margin: 0;
  color: var(--title-main);
}

.faq-item__question {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: bold;
}

.faq-item__answer {
  font-size: 16px;
}

.faq-item__mark {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  font-weight: bold;
  line-height: 20px;
}

.faq-item__mark--q {
  background: var(--blue);
  color: #fff;
}

.faq-item__mark--a {
  border: 2px solid var(--blue);
  background: #fff;
  color: var(--blue);
}

.pricing {
  overflow: hidden;
  padding: 120px 64px;
  background: #fff;
  scroll-margin-top: var(--header-height);
}

.pricing__inner {
  max-width: 1316px;
  margin: 0 auto;
}

.pricing__header {
  position: relative;
  margin-bottom: 60px;
  text-align: center;
}

.pricing__header::before {
  position: absolute;
  z-index: 0;
  right: 330px;
  bottom: 6px;
  left: 350px;
  height: 100px;
  content: "";
  background: url("../img/line_yellow.png") center / 100% 100% no-repeat;
  transform: rotate(0deg);
  transform-origin: left center;
}

.pricing__title {
  position: relative;
  z-index: 1;
  width: max-content;
  margin: 0 auto 5px;
  color: var(--title-main);
  font-size: 40px;
  letter-spacing: 1.6px;
}

.pricing__title span {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.pricing__lead {
  position: relative;
  margin: 0;
  color: var(--title-main);
  font-size: 18px;
  font-weight: bold;
}

.pricing__list {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.pricing-card {
  width: 25%;
  text-align: center;
}

.pricing-card__title {
  display: grid;
  place-items: center;
  margin: 0 0 20px;
  padding: 16px 0;
  background: var(--blue);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.pricing-card__image {
  width: 220px;
  height: 220px;
  margin: 0 auto 25px;
  border-radius: 50%;
  object-fit: cover;
}

.pricing-card__price {
  margin: 0;
  color: var(--blue);
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.pricing-card__unit {
  display: inline-block;
  margin-right: 12px;
  color: #333;
  font-size: 16px;
  vertical-align: .16em;
}

.pricing-card__price strong {
  font-size: 28px;
  font-weight: 900;
}

.pricing-card__price small {
  font-size: 16px;
  font-weight: 900;
}

.pricing__note {
  width: max-content;
  max-width: 100%;
  margin: 21px 17px 0 auto;
  color: #666;
  font-size: 11px;
  text-align: left;
}

.contact {
  overflow: hidden;
  padding: 100px 0 180px;
  background: #D5EDFF;
}

.contact__inner {
  max-width: 700px;
  margin: 0 auto;
}

.contact__header {
  position: relative;
  margin-bottom: 34px;
  text-align: center;
}

.contact__header::before {
  position: absolute;
  z-index: 0;
  right: 60px;
  bottom: 97px;
  left: 48px;
  height: 74px;
  content: "";
  background: url("../img/line_blue.png") center / 100% 100% no-repeat;
  transform: rotate(-3deg);
  transform-origin: left center;
}

.contact__title {
  position: relative;
  z-index: 1;
  width: max-content;
  max-width: 100%;
  margin: 0 auto 5px;
  color: var(--title-main);
  font-size: 40px;
  font-weight: 900;
  letter-spacing: 1.6;
}

.contact__lead {
  position: relative;
  margin: 0 0 34px;
  color: var(--title-main);
  font-size: 16px;
  font-weight: bold;
}

.contact-notes, .contact-form {
  border-radius: 8px;
  background: #fff;
}

.contact-notes {
  margin-bottom: 90px;
  padding: 60px 60px 80px;
}

.contact-notes__title {
  margin: 0 0 18px;
  color: var(--title-main);
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

.contact-notes__list {
  margin: 0 0 16px;
  padding-left: 10px;
  font-size: 14px;
  line-height: 24px;
}

.contact-notes__list li {
  padding-left: 9px;
}

.contact-notes__list li + li {
  margin-top: 7px;
}

.contact-notes__list small {
  font-size: 10px;
}

.contact-notes__cancel {
  margin: 0;
  font-size: 14px;
  line-height: 24px;
}

.contact-notes__cancel span {
  display: inline-block;
  margin: 0 0 16px;
  color: var(--title-main);
  font-weight: bold;
}

.contact__intro {
  margin: 0 0 34px;
  font-size: 16px;
  text-align: center;
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.contact-form {
  padding: 41px;
}

.contact-form__field {
  margin-bottom: 24px;
}

.contact-form__field label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--title-main);
  font-size: 16px;
  font-weight: bold;
}

.contact-form__field label span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 18px;
  padding: 0 8px;
  border-radius: 4px;
  background: #D40000;
  color: #fff;
  font-size: 12px;
  line-height: 1;
}

.contact-form__field input, .contact-form__field select, .contact-form__field textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #F9F9F9;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
}

.contact-form__field input, .contact-form__field select {
  height: 44px;
  padding: 0 17px;
}

.contact-form__field textarea {
  min-height: 150px;
  padding: 17px;
  resize: vertical;
}

.contact-form__field input::placeholder, .contact-form__field textarea::placeholder {
  color: #757575;
  font-size: 16px;
  font-weight: normal;
}

.contact-form__submit {
  display: block;
  width: 300px;
  margin: 40px auto 0;
  padding: 18px 0;
  border: 0;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  box-shadow: 0 4px 4px rgba(0, 0, 0, .07);
  transition: background-color .2s ease, background .2s ease;
  cursor: pointer;
}

.contact-form__submit:hover, .contact-form__submit:focus-visible {
  background: var(--blue-hover);
}

.footer {
  background: #1A2D3B;
  color: #fff;
  padding: 64px 0 24px;
}

.footer__inner {
  max-width: 1048px;
  margin: 0 auto;
}

.footer__top {
  display: grid;
  grid-template-columns: 422px 1fr;
  gap: 44px;
  align-items: start;
}

.footer__brand {
  padding-top: 3px;
}

.footer__logo-link {
  display: inline-block;
}

.footer__logo {
  width: 380px;
  height: auto;
  margin-bottom: 24px;
}

.footer__info {
  margin: 0 0 13px;
  font-size: 14px;
  line-height: 22.5px;
}

.footer__sns {
  display: flex;
  align-items: center;
  gap: 21px;
}

.footer__sns a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.footer__sns img {
  max-width: 28px;
  max-height: 28px;
  filter: brightness(0) invert(1);
}

.footer__areas {
  padding-left: 44px;
  border-left: 1px solid #fff;
}

.footer__area-title {
  margin: 0 0 5px;
  font-size: 12px;
}

.footer__areas p {
  margin: 0;
  font-size: 12px;
  line-height: 21px;
}

.footer__nav {
  display: flex;
  justify-content: center;
  gap: 42px;
  margin-top: 27px;
  padding-top: 12px;
  border-top: 1px solid #fff;
}

.footer__nav a {
  color: #fff;
  font-family: var(--font-dela);
  font-size: 22px;
  white-space: nowrap;
}

.footer__copy {
  margin: 22px 0 0;
  font-size: 12px;
  text-align: center;
}


/*** slick ***/
.slick-slider {
  position:relative;
  display:block;
  -webkit-box-sizing:border-box;
  box-sizing:border-box;
  -webkit-touch-callout:none;
  -webkit-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
  user-select:none;
  -ms-touch-action:pan-y;
  touch-action:pan-y;
  -webkit-tap-highlight-color:transparent;
}
.slick-list {
  position:relative;
  overflow:hidden;
  display:block;
  margin:0;
  padding:0;
}
.slick-list:focus {
  outline:none;
}
.slick-list.dragging {
  cursor:pointer;
  cursor:hand;
}
.slick-slider .slick-track,.slick-slider .slick-list {
  -webkit-transform:translate3d(0,0,0);
  transform:translate3d(0,0,0);
}
.slick-track {
  position:relative;
  left:0;
  top:0;
  display:block;
  margin-left:auto;
  margin-right:auto;
}
.slick-track:before,.slick-track:after {
  content:"";
  display:table;
}
.slick-track:after {
  clear:both;
}
.slick-loading .slick-track {
  visibility:hidden
}
.slick-slide {
  float:left;
  height:100%;
  min-height:1px;
  display:none;;
}
[dir=rtl] .slick-slide {
  float:right;
}
.slick-slide img {
  display:block;
}
.slick-slide.slick-loading img {
  display:none;
}
.slick-slide.dragging img {
  pointer-events:none;
}
.slick-initialized .slick-slide {
  display:block;
}
.slick-loading .slick-slide {
  visibility:hidden;
}
.slick-vertical .slick-slide {
  display:block;
  height:auto;
  border:1px solid transparent
}
.slick-arrow.slick-hidden {
  display:none;
}


.contact-form__name p {
  display: flex;
  gap: 10px;
}

.contact-form__name .wpcf7-form-control-wrap {
  flex: 1;
  display: block;
}

.contact-form__name input {
  width: 100%;
}


/*** inquirycompleted ***/
.hero.inquirycompleted {
  min-height: 0 !important;
}
.hero.inquirycompleted .hero__title {
  line-height: 1.2;
}
.hero.inquirycompleted .hero__line--primary {
  font-size: 70px;
}
.hero.inquirycompleted .hero__content {
  width: min(990px, calc(100% - 128px));
}
.hero__copy p:last-child {
  margin-bottom: 0;
}