@charset "UTF-8";
/*共通スタイル*/
/* main colors */
*, *::before, *::after {
  box-sizing: border-box;
}

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

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

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

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

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

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

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

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  word-break: break-all;
  font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: 100%;
  font-family: "Noto Sans JP", sans-serif;
  color: hsl(0, 0%, 21%);
  background: hsl(0, 0%, 94%);
}
@media (min-width: 920px) {
  body {
    font-size: 16px;
    line-height: 2;
  }
}

img,
svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

svg {
  max-width: 100%;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  cursor: pointer !important;
  text-decoration: none;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
ul.disc {
  list-style-type: disc;
  padding-left: 1.5em;
  list-style-position: outside;
}

.site_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}

.site_body {
  margin-bottom: auto;
}

.container-base {
  width: 100%;
  max-width: 1240px;
  padding: 0 40px;
  margin: 0 auto;
}
@media (max-width: 919px) {
  .container-base {
    padding: 0 20px;
  }
}

/*ヘッダーのスタイル*/
.site_header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  isolation: isolate;
  mix-blend-mode: difference;
}
@media (max-width: 767px) {
  .site_header {
    padding: 20px;
  }
}
.site_header_logo {
  max-width: 309px;
  transition: opacity 0.3s ease-out;
  cursor: pointer;
}
@media (max-width: 767px) {
  .site_header_logo {
    max-width: none;
  }
}
.site_header_logo:hover {
  opacity: 0.6;
}
.site_header_logo .header_logo_text {
  color: white;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.2;
  text-align: center;
  padding-top: 50px;
}
@media (max-width: 767px) {
  .site_header_logo .header_logo_text {
    font-size: 10px;
    line-height: 1.4;
    text-align: unset;
    padding-top: 32px;
  }
}
.site_header_link {
  color: white;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  position: relative;
  display: inline-block;
  transition: color 0.3s;
}
.site_header_link::after {
  background-color: white;
  bottom: -2px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s ease-out;
  width: 100%;
}
.site_header_link:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}
@media screen and (max-width: 1030px) {
  .site_header_link {
    font-size: 14px;
  }
}
.site_header_link_left {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-right: 412px;
}
@media screen and (max-width: 1050px) {
  .site_header_link_left {
    padding-right: 374px;
    gap: 16px;
  }
}
@media screen and (max-width: 990px) {
  .site_header_link_left {
    display: none;
  }
}
.site_header_link_container {
  display: flex;
  align-items: center;
  gap: 34px;
}
@media (max-width: 919px) {
  .site_header_link_container {
    display: none;
  }
}
.site_header_btn_container {
  display: flex;
  align-items: center;
  gap: 24px;
  position: fixed;
  top: 38px;
  right: 32px;
  z-index: 11;
}
@media screen and (max-width: 1030px) {
  .site_header_btn_container {
    gap: 16px;
  }
}
@media screen and (max-width: 990px) {
  .site_header_btn_container {
    display: none;
  }
}
.site_header_link_btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}
.site_header_link_btn .mail_img,
.site_header_link_btn .line_img {
  display: flex;
  align-items: center;
  margin-top: 2px;
}
.site_header_link_btn p {
  font-weight: 700;
  font-size: 12px;
  line-height: 1.6;
  color: hsl(0, 0%, 21%);
}
.site_header_link_btn.mail_yellow {
  background-image: url("../img/contact_mail_back.png"), linear-gradient(96.7deg, #FFAA95 42.48%, #FF7E5E 99.28%);
  background-size: cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}
.site_header_link_btn.mail_yellow:hover {
  background: linear-gradient(96.7deg, #FFAA95 80.48%, #FF7E5E 100%);
}
.site_header_link_btn.line_green {
  background: hsl(145, 94%, 40%);
}
.site_header_link_btn.line_green:hover {
  background-color: #00AB39;
}

.header_logo_img {
  position: fixed;
  top: 32px;
  left: 32px;
  z-index: 11;
  max-width: 237px;
  transition: opacity 0.3s ease;
}
@media (max-width: 767px) {
  .header_logo_img {
    top: 20px;
    left: 20px;
    max-width: 162px;
  }
}
.header_logo_img:hover {
  opacity: 0.6;
}

html {
  scroll-behavior: smooth;
}

.common_text {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
}
.common_text.text_center {
  text-align: center;
}
.common_text .bold_underline {
  color: #A14EFF;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
  text-decoration: underline;
  text-decoration-color: #A14EFF;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
@media (max-width: 767px) {
  .common_text .bold_underline {
    font-size: 16px;
    text-underline-offset: 3px;
  }
}

.br_sp {
  display: none;
}
@media (max-width: 767px) {
  .br_sp {
    display: block;
  }
}

@media (min-width: 600px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/*フッターのスタイル*/
.site_footer {
  background: hsl(0, 0%, 21%);
  padding: 64px 120px;
  position: relative;
}
@media (max-width: 767px) {
  .site_footer {
    padding: 60px 20px 20px;
  }
}
.site_footer .to_top_arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  display: inline-block;
  transition: opacity 0.3s ease-out;
}
@media (max-width: 767px) {
  .site_footer .to_top_arrow {
    top: -20px;
    left: 50%;
    right: inherit;
    transform: translateX(-50%);
  }
}
.site_footer .to_top_arrow svg rect,
.site_footer .to_top_arrow svg path {
  transition: all 0.3s ease;
}
.site_footer .to_top_arrow:hover svg rect {
  fill: white;
  stroke: #000;
}
.site_footer .to_top_arrow:hover svg path {
  stroke: #000;
}
.site_footer_main {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .site_footer_main {
    flex-direction: column;
    gap: 40px;
  }
}
.site_footer_logo {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 240px;
  width: 100%;
  transition: opacity 0.3s ease-out;
}
.site_footer_logo:hover {
  opacity: 0.6;
}
.site_footer_logo p {
  color: gray;
  font-weight: 400;
  font-size: 10px;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .site_footer_logo p {
    text-align: center;
  }
}
.site_footer_right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: end;
}
@media (max-width: 767px) {
  .site_footer_right {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
  }
}
.site_footer_right .copyright {
  color: hsl(180, 1%, 86%);
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 10px;
  line-height: 1.8;
}
.site_footer_right .steeq_logo {
  max-width: 71px;
}
@media (max-width: 767px) {
  .site_footer_right .steeq_logo {
    max-width: 40px;
  }
}

.cta_btn_container {
  display: none;
}
@media screen and (max-width: 990px) {
  .cta_btn_container {
    display: flex;
    gap: 10px;
    position: fixed;
    bottom: 20px;
    padding: 0 20px;
    width: 100%;
    z-index: 10;
    justify-content: center;
    transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
    opacity: 1;
    visibility: visible;
  }
}
@media screen and (max-width: 990px) {
  .cta_btn_container.is-hidden {
    opacity: 0;
    visibility: hidden;
  }
}
.cta_btn {
  padding: 16px 8px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.cta_btn_mail {
  background-image: url("../img/contact_mail_back.png"), linear-gradient(96.7deg, #FFAA95 42.48%, #FF7E5E 99.28%);
  background-size: cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  background-size: cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  width: 58.7%;
}
.cta_btn_line {
  background: hsl(145, 94%, 40%);
  width: 46.3%;
}
.cta_btn_text {
  font-weight: 700;
  font-size: 12px;
  line-height: 1.6;
}
.cta_btn_img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.complete_section {
  padding: 160px 0;
}
@media (max-width: 767px) {
  .complete_section {
    padding: 120px 0 80px;
  }
}
.complete_main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
@media (max-width: 767px) {
  .complete_main {
    gap: 40px;
  }
}
.complete_text_container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 767px) {
  .complete_text_container {
    gap: 28px;
  }
}
.complete_text_container_top {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 767px) {
  .complete_text_container_top {
    gap: 16px;
  }
}
.complete_text_container_bottom {
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  border-radius: 16px;
  max-width: 700px;
  padding: 40px;
}
@media (max-width: 767px) {
  .complete_text_container_bottom {
    padding: 20px;
  }
}
.complete_title {
  font-weight: 500;
  font-size: 28px;
  line-height: 1.75;
  text-align: center;
}
@media (max-width: 767px) {
  .complete_title {
    font-size: 20px;
  }
}
.complete_title_noComplete {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .complete_title_noComplete {
    font-size: 16px;
  }
}
.complete_text {
  text-align: center;
}

.to_contact_link {
  color: #0065F8 !important;
  text-decoration: underline !important;
}

.to_top_link {
  background: white;
  max-width: 180px;
  padding: 16px 40px;
  border-radius: 999px;
  transition: background-color 0.3s ease-out;
}
@media (max-width: 767px) {
  .to_top_link {
    padding: 16px 32px;
  }
}
.to_top_link:hover {
  background-color: hsl(0, 0%, 21%);
}
.to_top_link:hover .to_top_link_text {
  color: white;
}
.to_top_link_text {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
  transition: color 0.3s ease-out;
}
@media (max-width: 767px) {
  .to_top_link_text {
    font-size: 14px;
  }
}/*# sourceMappingURL=base.css.map */