:root {
  --inner: 1100px;
  --inner-s: 920px;
  --inner-xs: 900px;
  --sp-max-width: 540px;
  --padding-pc: 25px;
  --padding-sp: 25px;
}

:root {
  --base-font: "Noto Sans JP", sans-serif;
  --second-font: "Roboto Condensed", sans-serif;
}

:root {
  --c-base: #fff;
  --c-beige: #f3f0e7;
  --c-corporate: #ffa000;
  --c-danger: #f70000;
  --c-text: #1c1100;
  --c-text-bk: #231815;
  --c-text-white: #fff;
}

:root {
  --box-shadow-bottom: 0px 4px 10px 0px rgba(35, 24, 21, 0.05);
}

:root {
  --z-index-modal: 50;
  --z-index-overlay: 40;
  --z-index-sp-menu: 30;
  --z-index-header: 10;
}

:root {
  --triangle-to-right: polygon(0 0, 0% 100%, 100% 50%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

ul,
ol {
  padding: 0;
}

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

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

ul,
ol {
  list-style: none;
}

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

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

button {
  padding: 0;
  border: none;
  font: inherit;
  color: inherit;
  background: none;
}

[type=text],
[type=email],
[type=tel],
select,
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  box-shadow: none;
  border: none;
  border-radius: 0;
  width: 100%;
  background-color: var(--c-base);
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  padding: 0;
}

textarea {
  resize: none;
}

@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
input[type=radio] {
  margin: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: var(--base-font);
  font-size: 16px;
  color: var(--c-text);
  background-color: var(--c-base);
  line-height: 1.75;
  letter-spacing: 0.1em;
}

body.is-drawerActive {
  overflow-y: hidden;
}

a {
  transition: opacity 0.3s;
  cursor: pointer;
}

@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}
.heading-main {
  text-align: center;
  font-family: var(--second-font);
  font-size: 55px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .heading-main {
    font-size: 90px;
  }
}

.heading-main--lh-small {
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .heading-main--lh-small {
    line-height: 1.5;
  }
}

.heading-sub {
  color: var(--c-text-bk);
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .heading-sub {
    font-size: 34px;
  }
}

.heading-bg {
  display: inline-block;
  color: var(--c-text-bk);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  border-bottom: 2px solid #000;
  background-color: var(--c-base);
  padding: 0 10px 1px 10px;
}
@media screen and (min-width: 768px) {
  .heading-bg {
    font-size: min(36px, 3.6vw);
    padding: 0 15px;
  }
}

.heading-painting {
  color: var(--c-text-white);
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  background-color: var(--c-text);
  padding: 0.5972em;
}
@media screen and (min-width: 768px) {
  .heading-painting {
    font-size: 20px;
    padding: 10px;
  }
}

.heading-underline-fit {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  border-bottom: 3px solid var(--c-text);
  padding-bottom: 14px;
}
@media screen and (min-width: 768px) {
  .heading-underline-fit {
    font-size: 24px;
  }
}

.heading-underline-wide {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  border-bottom: 1px solid #ccc;
  padding-bottom: 7px;
}
@media screen and (min-width: 768px) {
  .heading-underline-wide {
    padding-bottom: 10px;
  }
}

.heading-c-corporate {
  color: var(--c-corporate);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.btn-round-icon {
  border-radius: 30px;
  background-color: var(--c-corporate);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 0.6563em;
  border: 1px solid var(--c-corporate);
  transition: background-color 0.3s;
}

.btn-round-icon__icon {
  display: flex;
}

.btn-round-icon__icon svg path {
  transition: fill 0.3s;
}

.btn-round-icon__text {
  color: var(--c-text-white);
  font-family: var(--second-font);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

@media (any-hover: hover) {
  .btn-round-icon:hover {
    opacity: 1;
    background-color: var(--c-base);
  }
  .btn-round-icon:hover .btn-round-icon__text {
    color: var(--c-corporate);
  }
  .btn-round-icon:hover .btn-round-icon__icon svg path {
    fill: var(--c-corporate);
  }
}
.btn-round-arrow {
  display: block;
  width: 100%;
  border-radius: 50px;
  background-color: var(--c-corporate);
  text-align: center;
  padding: calc(1.0156em - 1px);
  border: 1px solid var(--c-corporate);
  transition: background-color 0.3s;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .btn-round-arrow {
    padding: calc(1.2031em - 1px);
  }
}

.btn-round-arrow__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .btn-round-arrow__inner {
    gap: 20px;
    transform: translateX(10px);
  }
}

.btn-round-arrow__text {
  color: var(--c-text-white);
  font-size: min(18px, 4.6153846154vw);
  font-weight: 700;
  transition: color 0.3s;
}

.btn-round-arrow__icon {
  display: flex;
}

.btn-round-arrow__icon svg path {
  transition: fill 0.3s;
}

.btn-round-arrow--small {
  padding: calc(0.5781em - 1px);
}

.btn-round-arrow--ghost {
  background-color: var(--c-base);
}

.btn-round-arrow--ghost .btn-round-arrow__text {
  color: var(--c-corporate);
}

.btn-round-arrow--icon-left .btn-round-arrow__inner {
  transform: translateX(-10px);
}

@media (any-hover: hover) {
  .btn-round-arrow:hover {
    opacity: 1;
    background-color: var(--c-base);
  }
  .btn-round-arrow:hover .btn-round-arrow__text {
    color: var(--c-corporate);
  }
  .btn-round-arrow:hover .btn-round-arrow__icon svg path {
    fill: var(--c-corporate);
  }
  .btn-round-arrow--ghost:hover {
    background-color: var(--c-corporate);
  }
  .btn-round-arrow--ghost:hover .btn-round-arrow__text {
    color: var(--c-base);
  }
  .btn-round-arrow--ghost:hover .btn-round-arrow__icon svg path {
    fill: var(--c-base);
  }
}
.link-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
@media screen and (min-width: 768px) {
  .link-phone {
    gap: 12px;
  }
}

.link-phone__icon {
  flex-shrink: 0;
}

.link-phone__text {
  color: var(--c-text-white);
  font-family: var(--second-font);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.5%;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .link-phone__text {
    font-size: 46px;
  }
}

.link-arrow-underline {
  font-size: 14px;
  -webkit-text-decoration: revert;
          text-decoration: revert;
  text-underline-offset: 5px;
}
@media screen and (min-width: 768px) {
  .link-arrow-underline {
    font-size: 12px;
    letter-spacing: 0.06em;
  }
}

.link-window {
  --size: 28px;
  color: var(--c-text-bk);
  text-decoration-line: underline;
  text-underline-offset: 2px;
  display: inline-flex;
  position: relative;
  padding-right: 23px;
}
@media screen and (min-width: 768px) {
  .link-window {
    padding-right: 28px;
  }
}

.link-window::after {
  display: inline-block;
  content: "";
  width: var(--size);
  height: var(--size);
  background-image: url(../img/common/icon_window.svg);
  background-repeat: no-repeat;
  background-size: contain;
  transform: translate(0, 2px);
  position: absolute;
  right: 0;
}

.text-radio {
  font-size: 14px;
}

.text-radio__wrapper {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.text-checkbox [type=checkbox] {
  opacity: 0;
  position: absolute;
}

.text-checkbox__text {
  display: inline-block;
  padding-left: 30px;
  position: relative;
  font-size: 14px;
  cursor: pointer;
}

.text-checkbox__text::before {
  --size: 20px;
  content: "";
  width: var(--size);
  height: var(--size);
  background-color: transparent;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  border: 1px solid var(--c-text);
}

.text-checkbox__text::after {
  position: absolute;
  top: 7px;
  left: 3px;
  transform: translateY(-50%);
  display: none;
  content: "";
  width: 14px;
  height: 7px;
  border-left: 2px solid var(--c-text);
  border-bottom: 2px solid var(--c-text);
  transform: rotate(-45deg);
}

.text-checkbox [type=checkbox]:checked + .text-checkbox__text::after {
  display: block;
}

.text-number {
  color: var(--c-corporate);
  font-family: var(--second-font);
  font-size: 75px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .text-number {
    font-size: min(90px, 9vw);
  }
}

.text-round-number {
  --size: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  color: var(--c-text-white);
  font-family: var(--second-font);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  background-color: var(--c-corporate);
}
@media screen and (min-width: 768px) {
  .text-round-number {
    --size: 50px;
    font-size: 24px;
  }
}

.logo {
  display: block;
}

.logo__copy {
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .logo__copy {
    font-size: 12px;
  }
}

.logo__img {
  margin-top: -2px;
  width: 228px;
}
@media screen and (min-width: 768px) {
  .logo__img {
    width: 257px;
  }
}

.arrow-circle {
  --size: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--c-text);
  width: var(--size);
  height: var(--size);
}
@media screen and (min-width: 768px) {
  .arrow-circle {
    --size: 36px;
  }
}

.arrow-circle__icon {
  --size: 17px;
  display: inline-block;
  width: var(--size);
  height: var(--size);
}
@media screen and (min-width: 768px) {
  .arrow-circle__icon {
    --size: 24px;
  }
}

.hamburger {
  --size: 45px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
  width: var(--size);
  height: var(--size);
}

.hamburger__line {
  position: absolute;
  top: 6px;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 36px;
  height: 2px;
  background-color: var(--c-text);
}

.hamburger__line::before,
.hamburger__line::after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: inherit;
  content: "";
  transition: transform 0.3s, top 0.3s;
}

.hamburger__line::before {
  top: -11px;
}

.hamburger__line::after {
  top: 11px;
}

.hamburger[aria-expanded=true] .hamburger__line {
  background-color: transparent;
}

.hamburger[aria-expanded=true] .hamburger__line::before,
.hamburger[aria-expanded=true] .hamburger__line::after {
  top: 0;
  background-color: var(--c-text);
}

.hamburger[aria-expanded=true] .hamburger__line::before {
  transform: rotate(45deg);
}

.hamburger[aria-expanded=true] .hamburger__line::after {
  transform: rotate(-45deg);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--c-base);
  box-shadow: var(--box-shadow-bottom);
  z-index: var(--z-index-header);
}

.header__inner {
  padding: 5px 20px 7px 25px;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding: 15px 25px;
    position: relative;
  }
}

@media screen and (min-width: 768px) {
  .header__logo {
    position: absolute;
    top: 7px;
    left: 25px;
  }
}

.header__nav {
  display: none;
}
@media screen and (min-width: 910px) {
  .header__nav {
    margin-left: auto;
    display: flex;
    gap: 17px;
  }
}

.header__nav-list {
  display: flex;
  gap: 10px;
}

.header__nav-item a {
  display: inline-block;
  font-family: var(--second-font);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  padding: 10px;
  position: relative;
}

.header__nav-item a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--c-corporate);
  transition: 0.45s;
}

@media (hover: hover) {
  .header__nav-item a:hover {
    opacity: 1;
  }
  .header__nav-item a:hover::before {
    width: 100%;
  }
}
.header__nav-cta {
  width: 180px;
}

.header__hamburger {
  margin-left: auto;
  position: relative;
  display: block;
}
@media screen and (min-width: 910px) {
  .header__hamburger {
    display: none;
  }
}

.header__sp-menu {
  position: fixed;
  top: 63px;
  right: 0;
  bottom: 0;
  overflow: auto;
  width: 100vw;
  visibility: hidden;
  z-index: var(--z-index-sp-menu);
}
@media screen and (min-width: 768px) {
  .header__sp-menu {
    top: 75px;
  }
}
@media screen and (min-width: 910px) {
  .header__sp-menu {
    display: none;
  }
}

.footer {
  background-color: var(--c-text);
  text-align: center;
  padding: 28px 0;
  color: var(--c-text-white);
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 32px 0 36px;
  }
}

.footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px 40px;
}

.footer__nav-item a {
  display: inline-block;
  font-family: var(--second-font);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  padding: 10px;
}

.footer__copy {
  font-size: 10px;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .footer__copy {
    margin-top: 17px;
  }
}

.inner {
  width: min(var(--sp-max-width), 100%);
  padding: 0 var(--padding-sp);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .inner {
    width: min(var(--inner) + var(--padding-pc) * 2, 100%);
    padding: 0 var(--padding-pc);
  }
}

@media screen and (min-width: 768px) {
  .inner--s {
    width: min(var(--inner-s) + var(--padding-pc) * 2, 100%);
  }
}

@media screen and (min-width: 768px) {
  .inner--xs {
    width: min(var(--inner-xs) + var(--padding-pc) * 2, 100%);
  }
}

.main {
  margin-top: 65px;
}
@media screen and (min-width: 768px) {
  .main {
    margin-top: 75px;
  }
}
@media screen and (min-width: 910px) {
  .main {
    margin-top: 80px;
  }
}

.wrapper {
  overflow-x: hidden;
}

.bg-on {
  background: linear-gradient(180deg, var(--c-base) 0%, var(--c-base) 40px, var(--c-beige) 40px, var(--c-beige) 100%);
}
@media screen and (min-width: 768px) {
  .bg-on {
    background: linear-gradient(180deg, var(--c-base) 0%, var(--c-base) 65px, var(--c-beige) 65px, var(--c-beige) 100%);
  }
}

.sp-menu {
  background-color: var(--c-text);
  color: var(--c-text-white);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
  overflow: auto;
  padding: 100px 0;
  text-align: center;
  font-family: var(--second-font);
}

.sp-menu.is-clicked {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.5s, visibility 0.5s;
}

.sp-menu__list {
  display: grid;
  gap: 12px;
}

.sp-menu__item a {
  display: block;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.sp-menu__link {
  margin-top: 45px;
}

.sp-menu__link a {
  display: block;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.common-cta {
  text-align: center;
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .common-cta {
    padding-bottom: 160px;
  }
}

.common-cta__copy {
  margin-top: 40px;
  font-weight: 700;
  line-height: 1.5;
  font-size: 22px;
}
@media screen and (min-width: 768px) {
  .common-cta__copy {
    margin-top: 62px;
    font-size: 44px;
  }
}

.common-cta__lead {
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .common-cta__lead {
    margin-top: 32px;
  }
}

.common-cta__bg-area {
  margin-top: 33px;
  background-color: var(--c-text);
  color: var(--c-text-white);
}
@media screen and (min-width: 768px) {
  .common-cta__bg-area {
    margin-top: 52px;
  }
}
@media screen and (min-width: 910px) {
  .common-cta__bg-area {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

.common-cta__box {
  --margin-top: 20px;
  padding: 35px 20px 34px;
}
@media screen and (min-width: 768px) {
  .common-cta__box {
    --margin-top: 30px;
    padding: 44px 20px;
  }
}

.common-cta__box + .common-cta__box {
  border-top: 2px solid var(--c-base);
}
@media screen and (min-width: 910px) {
  .common-cta__box + .common-cta__box {
    border-top: none;
    border-left: 2px solid var(--c-base);
  }
}

.common-cta__tel {
  margin-top: var(--margin-top);
}

.common-cta__text {
  margin-top: var(--margin-top);
}

.common-cta__text strong {
  font-weight: 400;
}

.common-cta__btn {
  margin: var(--margin-top) auto 0;
  max-width: 340px;
}

.common-section {
  background-color: var(--c-beige);
  padding: 56px 0 44px;
}
@media screen and (min-width: 768px) {
  .common-section {
    background-color: initial;
    padding: 78px 0 120px;
    background: linear-gradient(180deg, var(--c-base) 0%, var(--c-base) 140px, var(--c-beige) 140px, var(--c-beige) 100%);
  }
}

.common-section--bg-off {
  background: initial;
}

.common-section__lead {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .common-section__lead {
    margin-top: 55px;
    text-align: center;
  }
}

.index-mv {
  position: relative;
  padding: 77px 0 calc(100dvh - 70px - 77px - 176px);
  min-height: 325px;
  max-height: 625px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .index-mv {
    min-height: 475px;
    max-height: 900px;
    height: calc(100dvh - 80px);
  }
}

.index-mv__inner {
  width: 100%;
  padding: 0 23px;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .index-mv__inner {
    height: inherit;
  }
}
@media screen and (min-width: 1024px) {
  .index-mv__inner {
    padding: 0 80px;
  }
}

@media screen and (min-width: 768px) {
  .index-mv__body {
    position: absolute;
    top: 50%;
    transform: translateY(calc(-50% - 12dvh));
  }
}

.index-mv__text {
  display: inline-block;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  background-color: var(--c-base);
  border-bottom: 2px solid var(--c-text);
  padding: 3px 10px 5px;
}
@media screen and (min-width: 768px) {
  .index-mv__text {
    font-size: 36px;
    padding: 6px 20px 10px;
    letter-spacing: 0.1em;
  }
}

@media screen and (min-width: 768px) {
  .index-mv__text.u-desktop,
  .index-mv__text .u-desktop {
    display: inline-block;
  }
}

.index-mv__text--mt {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .index-mv__text--mt {
    margin-top: 24px;
  }
}

.index-mv__copy {
  margin-top: 15px;
  display: inline-block;
  color: var(--c-corporate);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  padding: 4px 10px 5px;
  background-color: var(--c-base);
  border-bottom: 2px solid var(--c-corporate);
}
@media screen and (min-width: 768px) {
  .index-mv__copy {
    margin-top: 24px;
    font-size: 36px;
    letter-spacing: 0.1em;
    padding: 8px 20px 10px;
  }
}

.index-mv__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 87.1795%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .index-mv__bg {
    width: 76.3889%;
  }
}

.index-mv__bg img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.index-mv__scroll {
  display: inline-flex;
  flex-direction: row-reverse;
  position: absolute;
  bottom: 29px;
  right: 25px;
}
@media screen and (min-width: 768px) {
  .index-mv__scroll {
    right: 60px;
    bottom: 18px;
  }
}

.index-mv__scroll-text {
  color: var(--c-text-white);
  font-family: var(--second-font);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  writing-mode: vertical-rl;
  position: relative;
}

.index-mv__scroll-icon {
  display: inline-block;
  position: absolute;
  width: 164px;
  transform: rotate(90deg);
  top: 65px;
  right: -60px;
}

.index-mv__scroll-line01 {
  height: 1px;
  background-color: var(--c-text);
  position: relative;
  animation: floating-line01 1.25s ease-in-out infinite alternate-reverse;
}

.index-mv__scroll-line01::before {
  content: "";
  width: calc(100% - 73px);
  height: 100%;
  background-color: var(--c-base);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  animation: floating-line01-before 1.25s ease-in-out infinite alternate-reverse;
}
@media screen and (min-width: 768px) {
  .index-mv__scroll-line01::before {
    width: calc(100% - 84px);
    animation: floating-line01-before-pc 1.25s ease-in-out infinite alternate-reverse;
  }
}

.index-mv__scroll-line02 {
  position: absolute;
  top: 0;
  right: 0;
  transform-origin: right bottom;
  width: 20px;
  height: 1px;
  transform: rotate(45deg);
  background-color: var(--c-text);
  animation: floating-line02 1.25s ease-in-out infinite alternate-reverse;
}

@keyframes floating-line01 {
  0% {
    width: 100%;
  }
  100% {
    width: calc(100% + 20px);
  }
}
@keyframes floating-line02 {
  0% {
    right: 0;
  }
  100% {
    right: -20px;
  }
}
@keyframes floating-line01-before {
  0% {
    width: calc(100% - 73px);
  }
  100% {
    width: calc(100% - 93px);
  }
}
@keyframes floating-line01-before-pc {
  0% {
    width: calc(100% - 84px);
  }
  100% {
    width: calc(100% - 104px);
  }
}
.index-about {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .index-about {
    margin-top: 50px;
  }
}

.index-about__inner {
  display: flex;
  flex-direction: column;
  gap: 45px;
}
@media screen and (min-width: 768px) {
  .index-about__inner {
    width: min(1186px + var(--padding-pc) * 2, 100%);
    transform: translateX(-13px);
    flex-direction: row;
    justify-content: space-between;
    gap: 1em;
  }
}
@media screen and (min-width: 1024px) {
  .index-about__inner {
    align-items: flex-end;
  }
}

@media screen and (min-width: 768px) {
  .index-about__img-area {
    width: 38.7858%;
  }
}

@media screen and (min-width: 768px) {
  .index-about__body {
    width: 56.0708%;
  }
}
@media screen and (min-width: 1024px) {
  .index-about__body {
    padding-bottom: 22px;
  }
}

.index-about__copy {
  display: inline-block;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  border-bottom: 1px solid var(--c-text);
  padding-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .index-about__copy {
    font-size: min(34px, 3.4vw);
  }
}

.index-about__copy:nth-of-type(n + 2) {
  margin-top: 4px;
}

.index-about__text {
  margin-top: 22px;
  text-align: justify;
}

.index-about__text strong {
  color: var(--c-danger);
  font-weight: 400;
}

.index-service {
  margin-top: 60px;
  padding-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .index-service {
    margin-top: 105px;
    padding-bottom: 120px;
  }
}

.index-service__lead {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .index-service__lead {
    margin-top: 60px;
    text-align: center;
  }
}

.index-service__list {
  margin-top: 34px;
  display: grid;
  gap: 35px;
}
@media screen and (min-width: 768px) {
  .index-service__list {
    margin-top: 74px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 45px 22px;
  }
}

.index-service__item-body {
  padding: 10px 10px 0 10px;
}
@media screen and (min-width: 768px) {
  .index-service__item-body {
    padding: 16px 10px 0 10px;
  }
}

.index-service__item-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.index-service__item-label {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .index-service__item-label {
    font-size: 22px;
  }
}

.index-service__item-text {
  margin-top: 10px;
  font-size: 14px;
}

.index-service__btn {
  margin: 40px auto 0;
  width: min(310px, 100%);
}
@media screen and (min-width: 768px) {
  .index-service__btn {
    margin: 55px auto 0;
    width: min(340px, 100%);
  }
}

.index-common {
  --margin: calc(50% - 50vw);
  --position-x: -25px;
}

.index-common__inner {
  padding: 0 30px;
}
@media screen and (min-width: 768px) {
  .index-common__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: min(1200px + var(--padding-pc) * 2, 100%);
    gap: min(100px, 8.3333333333vw);
    padding: 0 var(--padding-pc);
  }
}

@media screen and (min-width: 768px) {
  .index-common--reverse .index-common__inner {
    flex-direction: row-reverse;
  }
}

.index-common__img {
  margin-left: var(--margin);
  max-width: 600px;
  position: relative;
  z-index: 1;
  left: var(--position-x);
  width: 100vw;
  max-height: 192px;
}
@media screen and (min-width: 768px) {
  .index-common__img {
    width: 47.9166666667vw;
    max-width: initial;
    left: auto;
    bottom: 100px;
    max-height: 388px;
  }
}

.index-common--reverse .index-common__img {
  margin-left: auto;
  margin-right: var(--margin);
  left: auto;
  right: var(--position-x);
}
@media screen and (min-width: 768px) {
  .index-common--reverse .index-common__img {
    right: auto;
  }
}

@media screen and (min-width: 768px) {
  .index-common__img--upper {
    bottom: 120px;
  }
}

.index-common__img img {
  max-height: inherit;
  -o-object-fit: cover;
     object-fit: cover;
}

.index-common__body {
  margin-top: -100px;
  padding: 125px 0 60px 25px;
  background-color: var(--c-beige);
  position: relative;
}
@media screen and (min-width: 768px) {
  .index-common__body {
    --bg-height: min(70px, calc(70 / 1200 * 100vw));
    margin-top: 0;
    padding: 0 0 106px 0;
    width: 44.167%;
    background-color: initial;
    background: linear-gradient(180deg, var(--c-base) 0%, var(--c-base) var(--bg-height), var(--c-beige) var(--bg-height), var(--c-beige) 100%);
  }
}

.index-common--reverse .index-common__body {
  padding: 125px 25px 60px 0;
}
@media screen and (min-width: 768px) {
  .index-common--reverse .index-common__body {
    padding: 0 0 106px 0;
  }
}

.index-common__body::before,
.index-common__body::after {
  content: "";
  height: 100%;
  background-color: var(--c-beige);
  position: absolute;
  top: 0;
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .index-common__body::before,
  .index-common__body::after {
    height: calc(100% - var(--bg-height));
  }
}

.index-common__body::before {
  margin-right: var(--margin);
  width: 100vw;
  left: 100%;
}
@media screen and (min-width: 768px) {
  .index-common__body::before {
    top: auto;
  }
}

.index-common--reverse .index-common__body::before {
  margin-right: auto;
  margin-left: var(--margin);
  left: auto;
  right: 100%;
}

@media screen and (min-width: 768px) {
  .index-common__body::after {
    display: block;
    width: 43.0555555556vw;
    top: auto;
    right: 100%;
  }
}

@media screen and (min-width: 768px) {
  .index-common--reverse .index-common__body::after {
    right: auto;
    left: 100%;
  }
}

.index-common__body > * {
  position: relative;
  z-index: 1;
}

.index-common__title {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .index-common__title {
    font-size: min(90px, 7.5vw);
  }
}

.index-common__headline {
  margin-top: 10px;
  display: block;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .index-common__headline {
    margin-top: 24px;
    font-size: 24px;
  }
}

.index-common__text {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .index-common__text {
    margin-top: 15px;
  }
}

.index-common__btn {
  margin-top: 34px;
  width: min(310px, 100%);
}
@media screen and (min-width: 768px) {
  .index-common__btn {
    width: min(340px, 100%);
  }
}

.index-company {
  margin-top: 80px;
}
@media screen and (min-width: 768px) {
  .index-company {
    margin-top: 140px;
  }
}

.index-recruit {
  margin-top: 80px;
}
@media screen and (min-width: 768px) {
  .index-recruit {
    margin-top: 160px;
  }
}

.index-recruit__text {
  margin-top: 18px;
}

.page-index__cta {
  margin-top: 65px;
}
@media screen and (min-width: 768px) {
  .page-index__cta {
    margin-top: 178px;
  }
}

.service__cta {
  margin-top: 42px;
}
@media screen and (min-width: 768px) {
  .service__cta {
    margin-top: 187px;
  }
}

.service-item {
  margin-top: 34px;
}
@media screen and (min-width: 768px) {
  .service-item {
    margin-top: 74px;
  }
}

@media screen and (min-width: 768px) {
  .service-item + .service-item {
    margin-top: 60px;
  }
}

.service-item__cols {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .service-item__cols {
    flex-direction: row;
    justify-content: space-between;
    gap: 1em;
  }
}

@media screen and (min-width: 768px) {
  .service-item__img {
    width: 54.5454%;
  }
}

@media screen and (min-width: 768px) {
  .service-item__body {
    width: 41.8181%;
    padding-top: min(68px, 4.7222222222vw);
  }
}

@media screen and (min-width: 768px) {
  .service-item__title {
    transform: translateX(-80px);
  }
}

.service-item__body-text {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .service-item__body-text {
    margin-top: min(48px, 3.3333333333vw);
  }
}

.service-item__body-strong {
  margin-top: 25px;
  color: var(--c-corporate);
  font-size: 15px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .service-item__body-strong {
    margin-top: 30px;
  }
}

.service-item__body-btn {
  margin-top: 15px;
}

.service-item__list {
  margin-top: 40px;
  display: grid;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .service-item__list {
    margin-top: 60px;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
}

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

.service-item__item-img {
  margin: 0 auto;
  width: 70.5882%;
}
@media screen and (min-width: 768px) {
  .service-item__item-img {
    width: 100%;
  }
}

.service-item__item-main {
  margin-top: 10px;
  display: block;
  font-size: 15px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .service-item__item-main {
    font-size: min(15px, 1.875vw);
  }
}

.service-item__item-sub {
  margin-top: 5px;
  display: block;
  font-size: 14px;
}

.service-strength {
  margin-top: 74px;
}
@media screen and (min-width: 768px) {
  .service-strength {
    margin-top: 136px;
  }
}

.service-strength__list {
  margin-top: 54px;
  display: grid;
  gap: 64px;
}
@media screen and (min-width: 768px) {
  .service-strength__list {
    margin-top: 132px;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
}

.service-strength__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .service-strength__item {
    gap: 24px;
  }
}

.service-strength__item-header {
  position: relative;
}

.service-strength__item-number {
  position: absolute;
  top: -0.5em;
  left: -4px;
}
@media screen and (min-width: 768px) {
  .service-strength__item-number {
    top: -0.725em;
    left: 0;
  }
}

.service-strength__item-title {
  display: block;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .service-strength__item-title {
    font-size: 24px;
  }
}

.service-strength__item-text {
  margin-top: 14px;
}
@media screen and (min-width: 768px) {
  .service-strength__item-text {
    margin-top: 18px;
  }
}

.service-flow {
  margin-top: 44px;
}
@media screen and (min-width: 768px) {
  .service-flow {
    margin-top: 89px;
  }
}

.service-flow__bg-area {
  border-bottom: 6px solid var(--c-text);
  background: var(--c-beige);
  padding: 40px 20px 80px;
}
@media screen and (min-width: 768px) {
  .service-flow__bg-area {
    margin: 0 auto;
    width: min(760px, 100%);
    padding: 40px min(50px, 6.1728395062vw) 80px;
  }
}

.service-flow__title {
  margin: 0 auto;
}

.service-flow__container {
  margin-top: 40px;
  background-color: var(--c-base);
  padding: 16px 19px;
}
@media screen and (min-width: 768px) {
  .service-flow__container {
    margin-top: 60px;
    padding: 62px 20px;
  }
}

.service-flow__list {
  display: flex;
  justify-content: center;
  gap: 28px;
}
@media screen and (min-width: 768px) {
  .service-flow__list {
    margin: 0 auto;
    gap: 44px;
    width: 516px;
    width: min(516px, 100%);
  }
}

.service-flow__item {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .service-flow__item {
    gap: 20px;
  }
}

.service-flow__item-text {
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  border-radius: 50px;
  border: 1px solid var(--c-text);
  background-color: var(--c-base);
  padding: 12px 7px;
  min-height: 150px;
  display: flex;
  justify-content: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .service-flow__item-text {
    min-height: 280px;
    padding: 30px 23px;
    font-size: 20px;
    letter-spacing: 0.1em;
  }
}

.service-flow__item-text span {
  writing-mode: vertical-rl;
  text-align: center;
}

.service-flow__item:nth-of-type(n + 2) .service-flow__item-text:before {
  content: "";
  width: 10px;
  height: 21px;
  background-color: var(--c-corporate);
  -webkit-clip-path: var(--triangle-to-right);
          clip-path: var(--triangle-to-right);
  position: absolute;
  top: 50%;
  left: -18px;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .service-flow__item:nth-of-type(n + 2) .service-flow__item-text:before {
    width: 20px;
    height: 40px;
    left: -30px;
  }
}

.service-flow__text {
  margin-top: 34px;
}
@media screen and (min-width: 768px) {
  .service-flow__text {
    margin-top: 54px;
    text-align: center;
  }
}

.service-flow__cases {
  margin: 16px auto 0;
  width: 260px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .service-flow__cases {
    margin-top: 54px;
    width: 100%;
    gap: 12px;
    flex-wrap: wrap;
  }
}

.service-flow__case {
  --size: 80px;
  width: var(--size);
  height: var(--size);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--c-corporate);
  background-color: var(--c-base);
}
@media screen and (min-width: 768px) {
  .service-flow__case {
    --size: 100px;
  }
}

.service-flow__case span {
  display: inline-block;
  color: var(--c-corporate);
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .service-flow__case span {
    font-size: 22px;
  }
}

.about__cta {
  margin-top: 65px;
}
@media screen and (min-width: 768px) {
  .about__cta {
    margin-top: 78px;
  }
}

.about-message__title {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .about-message__title {
    margin-top: 114px;
  }
}

.about-outline__bg-area {
  margin-top: 34px;
  padding: 40px 20px 60px;
}
@media screen and (min-width: 768px) {
  .about-outline__bg-area {
    margin-top: 74px;
    padding: 80px 60px;
  }
}

.common-box {
  background-color: var(--c-base);
  border-bottom: 6px solid var(--c-text);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}

.common-box__item {
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .common-box__item {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1em;
  }
}

.common-box__item:not(:last-of-type) {
  border-bottom: 1px solid #ccc;
}

.common-box__term {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .common-box__term {
    width: 26.25%;
  }
}

.common-box__desctiption {
  color: var(--c-text-bk);
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .common-box__desctiption {
    width: 68.75%;
  }
}

.about-message {
  margin-top: 74px;
}
@media screen and (min-width: 768px) {
  .about-message {
    margin-top: 132px;
  }
}

.about-message__bg-area {
  margin-top: 34px;
  padding: 34px 20px 60px;
}
@media screen and (min-width: 768px) {
  .about-message__bg-area {
    margin-top: 72px;
    padding: 74px 60px 40px;
  }
}

.about-message__sign {
  margin: 25px 0 0 auto;
  width: 160px;
}
@media screen and (min-width: 768px) {
  .about-message__sign {
    margin: 0 0 0 auto;
    width: 227px;
  }
}

.recruit__cta {
  margin-top: 65px;
}
@media screen and (min-width: 768px) {
  .recruit__cta {
    margin-top: 78px;
  }
}

.recruit-main__cols {
  margin-top: 25px;
  display: flex;
  flex-direction: column-reverse;
  gap: 34px;
}
@media screen and (min-width: 768px) {
  .recruit-main__cols {
    margin-top: 62px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1em;
  }
}

@media screen and (min-width: 768px) {
  .recruit-main__body {
    width: 51.8182%;
  }
}

.recruit-main__headline {
  display: block;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .recruit-main__headline {
    font-size: 24px;
  }
}

.recruit-main__text {
  margin-top: 18px;
}
@media screen and (min-width: 768px) {
  .recruit-main__text {
    margin-top: 28px;
  }
}

@media screen and (min-width: 768px) {
  .recruit-main__img {
    width: 42.7273%;
  }
}

.recruit-block {
  margin-top: 73px;
}
@media screen and (min-width: 768px) {
  .recruit-block {
    margin-top: 126px;
  }
}

.recruit-block + .recruit-block {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .recruit-block + .recruit-block {
    margin-top: 80px;
  }
}

.recruit-block__occupation {
  margin-top: 32px;
  padding: 40px 20px 80px;
}
@media screen and (min-width: 768px) {
  .recruit-block__occupation {
    margin: 72px auto 0;
    width: min(920px, 100%);
    padding: 80px 60px;
  }
}

.recruit-block__occupation .common-box__desctiption p + p {
  margin-top: 1.5em;
}

.recruit-block__list {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .recruit-block__list {
    margin-top: 40px;
  }
}

.recruit-block__list .common-box__item:last-of-type {
  border-bottom: 1px solid #ccc;
}

@media screen and (min-width: 768px) {
  .recruit-block__list .common-box__term {
    padding-left: 1em;
  }
}

.recruit-block__section {
  margin-top: 55px;
}
@media screen and (min-width: 768px) {
  .recruit-block__section {
    margin-top: 94px;
  }
}

.recruit-block__title-underline {
  margin: 0 auto;
}

.recruit-block__btn {
  margin: 20px auto 0;
  width: min(340px, 100%);
}
@media screen and (min-width: 768px) {
  .recruit-block__btn {
    margin: 40px auto 0;
  }
}

.privacy-block {
  margin-top: 62px;
}

.privacy-block__item {
  margin-top: 23px;
}

.privacy-block__item + .privacy-block__item.privacy-block__item--mt--large {
  margin-top: 56px;
}

.privacy-block__item + .privacy-block__item {
  margin-top: 28px;
}

.privacy-block__body {
  margin-top: 8px;
}

.privacy-block__body a {
  -webkit-text-decoration: revert;
          text-decoration: revert;
}

.privacy-block__link a {
  font-size: 16px;
}

@media screen and (min-width: 768px) {
  .contact-main__inner {
    width: min(800px + var(--padding-pc) * 2, 100%);
  }
}

.contact-form {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .contact-form {
    margin-top: 80px;
  }
}

.contact-form__item {
  --gap: 5px;
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}
@media screen and (min-width: 768px) {
  .contact-form__item {
    --gap: 35px;
    flex-direction: row;
    justify-content: space-between;
  }
}

.contact-form__item--wide {
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .contact-form__item--wide {
    gap: var(--gap);
  }
}

.contact-form__item + .contact-form__item {
  margin-top: 36px;
}
@media screen and (min-width: 768px) {
  .contact-form__item + .contact-form__item {
    margin-top: 32px;
  }
}

.contact-form__term {
  color: var(--c-text-bk);
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .contact-form__term {
    width: 215px;
    flex-shrink: 0;
  }
}

.contact-form__term span {
  display: inline-block;
  color: var(--c-corporate);
}

.contact-form__description {
  line-height: 1.5;
  word-break: break-all;
}
@media screen and (min-width: 768px) {
  .contact-form__description {
    width: calc(100% - 250px);
  }
}

.contact-form__radios {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-form__item [type=text],
.contact-form__item [type=email],
.contact-form__item [type=tel],
.contact-form__item textarea {
  --gray: #ccc;
  border: 1px solid var(--gray);
  font-size: 15px;
  padding: 6px 20px;
}

.contact-form__item textarea {
  height: 200px;
}

.contact-form__item [type=text]::-moz-placeholder, .contact-form__item [type=email]::-moz-placeholder, .contact-form__item [type=tel]::-moz-placeholder, .contact-form__item textarea::-moz-placeholder {
  color: var(--gray);
}

.contact-form__item [type=text]::placeholder,
.contact-form__item [type=email]::placeholder,
.contact-form__item [type=tel]::placeholder,
.contact-form__item textarea::placeholder {
  color: var(--gray);
}

.contact-form__privacy {
  margin-top: 34px;
  text-align: center;
}

.contact-form__checkbox {
  margin-top: 14px;
  text-align: center;
}

.contact-form__btn {
  margin: 40px auto 0;
  width: min(210px, 100%);
}

.contact-form__btn .btn-round-arrow__inner {
  transform: translateX(10px);
}

.contact-confirm .contact-form__item {
  --gap: 18px;
  padding-bottom: 25px;
  border-bottom: 1px solid #ccc;
}
@media screen and (min-width: 768px) {
  .contact-confirm .contact-form__item {
    align-items: center;
    padding-bottom: 30px;
  }
}

.contact-confirm .contact-form__item:nth-of-type(6) {
  display: none;
}

.contact-confirm .contact-form__item:nth-of-type(4) .contact-form__term span {
  display: none;
}

.contact-confirm .contact-form__item:not(:first-of-type) {
  margin-top: 30px;
}

.contact-confirm .contact-main__btns {
  margin: 60px auto 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .contact-confirm .contact-main__btns {
    flex-direction: row;
  }
}

.contact-confirm .contact-main__btn {
  width: 210px;
}

.contact-confirm .btn-round-arrow__inner {
  transform: translateX(10px);
}

.contact-confirm .btn-round-arrow--icon-left .btn-round-arrow__inner {
  transform: translateX(-10px);
}

.contact-thanks__text-area {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .contact-thanks__text-area {
    margin-top: 55px;
  }
}

.contact-thanks__text {
  letter-spacing: 0.2em;
}

.contact-thanks__text + .contact-thanks__text {
  margin-top: 1.5em;
}

.contact-thanks__btn {
  margin: 34px auto 0;
  width: 210px;
}
@media screen and (min-width: 768px) {
  .contact-thanks__btn {
    margin: 74px auto 0;
  }
}

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

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

.u-dib {
  display: inline-block;
}

.u-fz22 {
  font-size: 22px;
}
@media screen and (min-width: 768px) {
  .u-fz22 {
    font-size: 24px;
  }
}

.u-fz18 {
  font-size: 18px;
}