@charset "UTF-8";
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: auto;
}

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

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@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;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 16px;
}
@media (max-width: 1200px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  color: #282828;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  a:hover {
    opacity: 0.8;
  }
}

.inner {
  margin: auto;
  padding: 0 25px;
  max-width: 1250px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 0 20px;
  }
}

.layout-header {
  position: sticky;
  z-index: 900;
  top: 0;
  right: 0;
  left: 0;
}

.layout-layer {
  margin-top: -125px;
}

.layout {
  margin-top: 55px;
}

/* アンカーリンク用のオフセット設定 */
#house-cleaning,
#office-cleaning,
#company,
#contact-form {
  scroll-margin-top: 200px;
}
@media screen and (max-width: 999px) {
  #house-cleaning,
  #office-cleaning,
  #company,
  #contact-form {
    scroll-margin-top: 340px;
  }
}
@media screen and (max-width: 399px) {
  #house-cleaning,
  #office-cleaning,
  #company,
  #contact-form {
    scroll-margin-top: 250px;
  }
}

/* まるごとキレイコースだけ少し上から表示 */
#full-cleaning {
  scroll-margin-top: 180px;
}
@media screen and (max-width: 999px) {
  #full-cleaning {
    scroll-margin-top: 340px;
  }
}
@media screen and (max-width: 399px) {
  #full-cleaning {
    scroll-margin-top: 250px;
  }
}

.xl-none {
  display: block;
}
@media screen and (max-width: 1199px) {
  .xl-none {
    display: none;
  }
}

.lg-none {
  display: block;
}
@media screen and (max-width: 999px) {
  .lg-none {
    display: none;
  }
}

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

.sm-none {
  display: block;
}
@media screen and (max-width: 399px) {
  .sm-none {
    display: none;
  }
}

.xl-show {
  display: none;
}
@media screen and (max-width: 1199px) {
  .xl-show {
    display: block;
  }
}

.lg-show {
  display: none;
}
@media screen and (max-width: 999px) {
  .lg-show {
    display: block;
  }
}

.md-show {
  display: none;
}
@media screen and (max-width: 767px) {
  .md-show {
    display: block;
  }
}

.c-title h2 {
  font-size: 46px;
  font-weight: 900;
  font-family: "Kaisei Opti", sans-serif;
  color: #0068B7;
  line-height: 1;
  letter-spacing: -0.08em;
  padding: 0 20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-title h2 {
    font-size: 44px;
  }
}
@media screen and (max-width: 600px) {
  .c-title h2 {
    font-size: 38px;
  }
}
@media screen and (max-width: 399px) {
  .c-title h2 {
    font-size: 32px;
  }
}

.c-title--space h2 {
  letter-spacing: 0.1em;
}

.c-title p {
  font-size: 24px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #0068B7;
  line-height: 1.2;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .c-title p {
    font-size: 31px;
  }
}
@media screen and (max-width: 600px) {
  .c-title p {
    font-size: 25px;
  }
}
@media screen and (max-width: 470px) {
  .c-title p {
    font-size: 23px;
  }
}
@media screen and (max-width: 440px) {
  .c-title p {
    font-size: 21px;
  }
}
@media screen and (max-width: 399px) {
  .c-title p {
    font-size: 18px;
  }
}

.c-title br {
  display: none;
}
@media screen and (max-width: 500px) {
  .c-title br {
    display: block;
  }
}

.c-title p br {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-title p br {
    display: block;
  }
}

.sub-title {
  margin-inline: auto;
}

.sub-title h3 {
  font-size: 28px;
  font-weight: 700;
  font-family: "Kaisei Opti", sans-serif;
  color: #ffffff;
  line-height: 1;
  letter-spacing: 0em;
  background-color: #00AFEC;
  padding: 15px 74px;
  border-radius: 40px;
  display: inline-block;
  width: 400px;
  margin-inline: auto;
}
@media screen and (max-width: 1199px) {
  .sub-title h3 {
    font-size: 28px;
  }
}
@media screen and (max-width: 500px) {
  .sub-title h3 {
    font-size: 24px;
    padding: 15px 55px;
    width: 350px;
  }
}
@media screen and (max-width: 399px) {
  .sub-title h3 {
    font-size: 20px;
    padding: 15px 35px;
    width: 280px;
  }
}

.sub-title--space h3 {
  letter-spacing: 0.1em;
}

.header {
  height: 200px;
  background-color: #ffffff;
  margin-bottom: 34px;
}
@media screen and (max-width: 999px) {
  .header {
    height: 347px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 400px) {
  .header {
    height: 347px;
  }
}
@media screen and (max-width: 399px) {
  .header {
    height: 250px;
  }
}
@media screen and (max-width: 371px) {
  .header {
    height: 250px;
  }
}

.header__inner {
  display: grid;
  height: inherit;
  justify-content: center;
}

.header__nav-top {
  height: 140px;
}
@media screen and (max-width: 999px) {
  .header__nav-top {
    height: auto;
    padding-bottom: 8px;
  }
}
@media screen and (max-width: 370px) {
  .header__nav-top {
    padding-bottom: 0;
  }
}

.header__nav-logo-sp {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  display: flex;
  justify-content: center;
  align-items: center;
}
.header__nav-logo-sp::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #00AFEC;
}

.header__logo-sp {
  padding: 20px;
}
@media screen and (max-width: 399px) {
  .header__logo-sp {
    padding: 5px 10px;
  }
}

.header__logo-sp img {
  max-width: 300px;
}
@media screen and (max-width: 767px) {
  .header__logo-sp img {
    max-width: 324px;
  }
}
@media screen and (max-width: 550px) {
  .header__logo-sp img {
    max-width: 280px;
  }
}
@media screen and (max-width: 370px) {
  .header__logo-sp img {
    max-width: 150px;
  }
}

.header__nav-top-list {
  padding: 0 25px;
  display: flex;
  height: 100%;
}
@media screen and (max-width: 999px) {
  .header__nav-top-list {
    height: auto;
    padding: 0 10px;
  }
}
@media screen and (max-width: 370px) {
  .header__nav-top-list {
    display: flex;
    flex-direction: column;
  }
}

.header__logo {
  max-width: 170px;
  height: inherit;
}

.header__logo a {
  height: inherit;
  display: flex;
  align-items: center;
}

.header__logo img {
  width: 100%;
  height: 100%;
  align-items: center;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 170px;
}
@media screen and (max-width: 1300px) {
  .header__logo img {
    max-width: 150px;
  }
}
@media screen and (max-width: 1199px) {
  .header__logo img {
    max-width: 123px;
  }
}

.header__contact {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media screen and (max-width: 999px) {
  .header__contact {
    display: block;
  }
}
@media screen and (max-width: 500px) {
  .header__contact {
    width: 75%;
  }
}
@media screen and (max-width: 370px) {
  .header__contact {
    width: 100%;
  }
}

.header__tel-label {
  position: relative;
  margin-left: 36px;
  font-size: 20px;
  font-weight: 900;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #0068B7;
  padding: 10px;
  line-height: 1.5;
  letter-spacing: -0.05em;
  background-color: #F0E127;
  height: 84px;
  width: 210px;
  text-align: center;
}
@media screen and (max-width: 1240px) {
  .header__tel-label {
    margin-left: 17px;
  }
}
@media screen and (max-width: 1199px) {
  .header__tel-label {
    width: 170px;
    font-size: 15px;
    margin-left: 10px;
    line-height: 1.9;
    font-weight: 700;
  }
}
.header__tel-label::after {
  content: "";
  position: absolute;
  top: 0;
  right: -15px; /* 矢印の飛び出し具合 */
  width: 0;
  height: 0;
  border-top: 42px solid transparent; /* 上の三角 */
  border-bottom: 42px solid transparent; /* 下の三角 */
  border-left: 15px solid #F0E127; /* 矢印の色（本体と同じ） */
}

.header__tel-label-sp {
  background-color: #F0E127;
  font-size: 18px;
  color: #0068B7;
  font-weight: 700;
  padding: 6px 6px;
}
@media screen and (max-width: 639px) {
  .header__tel-label-sp {
    font-size: 14px;
  }
}
@media screen and (max-width: 550px) {
  .header__tel-label-sp {
    font-size: 12px;
  }
}
@media screen and (max-width: 370px) {
  .header__tel-label-sp {
    text-align: center;
  }
}

.header__tel-label-sp br {
  display: none;
}
@media screen and (max-width: 470px) {
  .header__tel-label-sp br {
    display: block;
  }
}
@media screen and (max-width: 370px) {
  .header__tel-label-sp br {
    display: none;
  }
}

.header__tel-info {
  margin-left: 25px;
}
@media screen and (max-width: 1199px) {
  .header__tel-info {
    margin-left: 40px;
  }
}
@media screen and (max-width: 1240px) {
  .header__tel-info {
    margin-left: 27px;
  }
}
@media screen and (max-width: 999px) {
  .header__tel-info {
    margin-left: 20px;
    margin-left: 0;
  }
}

.header__tel-info img {
  aspect-ratio: 1;
  max-width: 43px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 700px) {
  .header__tel-info img {
    max-width: 35px;
  }
}
@media screen and (max-width: 550px) {
  .header__tel-info img {
    max-width: 26px;
  }
}
@media screen and (max-width: 470px) {
  .header__tel-info img {
    max-width: 20px;
  }
}
@media screen and (max-width: 370px) {
  .header__tel-info img {
    max-width: 25px;
  }
}

.header__tel-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  margin-top: 8px;
}
@media screen and (max-width: 399px) {
  .header__tel-content {
    display: flex;
    text-align: center;
    margin-inline: auto;
    justify-content: center;
  }
}

/* 電話アイコンのスタイル調整 */
.header__tel-icon {
  order: 1;
}

.header__tel-number {
  order: 2;
  font-size: 50px;
  font-weight: 900;
  font-family: "Urbanist", sans-serif;
  color: #00AFEC;
  line-height: 0.5;
  letter-spacing: 0em;
  margin-left: 10px;
}
@media screen and (max-width: 1199px) {
  .header__tel-number {
    font-size: 37px;
  }
}
@media screen and (max-width: 999px) {
  .header__tel-number {
    font-size: 48px;
  }
}
@media screen and (max-width: 700px) {
  .header__tel-number {
    font-size: 35px;
    margin-left: 5px;
  }
}
@media screen and (max-width: 600px) {
  .header__tel-number {
    font-size: 30px;
  }
}
@media screen and (max-width: 550px) {
  .header__tel-number {
    font-size: 26px;
  }
}
@media screen and (max-width: 470px) {
  .header__tel-number {
    font-size: 20px;
  }
}
@media screen and (max-width: 400px) {
  .header__tel-number {
    font-size: 16px;
  }
}
@media screen and (max-width: 370px) {
  .header__tel-number {
    font-size: 28px;
  }
}

.header__tel-hours {
  font-size: 22px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #282828;
  line-height: 1;
  letter-spacing: 0em;
  text-align: center;
  margin-top: 5px;
  font-feature-settings: "palt";
}
@media screen and (max-width: 639px) {
  .header__tel-hours {
    font-size: 19px;
  }
}
@media screen and (max-width: 550px) {
  .header__tel-hours {
    font-size: 15px;
  }
}
@media screen and (max-width: 470px) {
  .header__tel-hours {
    font-size: 12px;
  }
}
@media screen and (max-width: 370px) {
  .header__tel-hours {
    margin-bottom: 10px;
  }
}

.header__tel-hours br {
  display: none;
}
@media screen and (max-width: 399px) {
  .header__tel-hours br {
    display: block;
  }
}
@media screen and (max-width: 370px) {
  .header__tel-hours br {
    display: none;
  }
}

.header__mail-wrap {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 32px;
  margin-bottom: 20px;
  background-color: #0068B7;
  border-radius: 0 0 10px 10px;
  border-right: 4px solid #ffffff;
  border-bottom: 4px solid #ffffff;
  border-left: 4px solid #ffffff;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 0 #d6d6d6;
  transition: box-shadow 0.3s, transform 0.3s;
}
@media screen and (max-width: 1210px) {
  .header__mail-wrap {
    margin-left: 10px;
  }
}
@media screen and (max-width: 1199px) {
  .header__mail-wrap {
    margin-left: 20px;
  }
}
@media screen and (max-width: 1240px) {
  .header__mail-wrap {
    margin-left: 10px;
  }
}
@media screen and (max-width: 550px) {
  .header__mail-wrap {
    margin-left: 10px;
  }
}
@media screen and (max-width: 399px) {
  .header__mail-wrap {
    justify-content: center;
    margin-inline: auto;
  }
}
@media screen and (max-width: 370px) {
  .header__mail-wrap {
    margin-bottom: 10px;
  }
}

@media (any-hover: hover) {
  .header__mail-wrap:hover {
    box-shadow: none;
    transform: translateY(5px);
    opacity: 1;
  }
}
.header__mail-info {
  display: flex;
  width: 300px;
  align-items: center;
  justify-content: center;
  padding: 18px 5px 0 5px;
}
@media screen and (max-width: 1199px) {
  .header__mail-info {
    width: 270px;
  }
}
@media screen and (max-width: 767px) {
  .header__mail-info {
    width: 250px;
  }
}
@media screen and (max-width: 550px) {
  .header__mail-info {
    padding: 12px 5px 0 5px;
  }
}
@media screen and (max-width: 570px) {
  .header__mail-info {
    width: 230px;
  }
}
@media screen and (max-width: 550px) {
  .header__mail-info {
    width: 200px;
  }
}
@media screen and (max-width: 460px) {
  .header__mail-info {
    width: 185px;
  }
}
@media screen and (max-width: 370px) {
  .header__mail-info {
    width: 235px;
  }
}

.header__mail-info img {
  aspect-ratio: 1;
  max-width: 60px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .header__mail-info img {
    max-width: 50px;
  }
}
@media screen and (max-width: 550px) {
  .header__mail-info img {
    max-width: 40px;
  }
}
@media screen and (max-width: 460px) {
  .header__mail-info img {
    max-width: 30px;
  }
}
@media screen and (max-width: 399px) {
  .header__mail-info img {
    max-width: 30px;
  }
}

.header__mail-contact {
  font-size: 22px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #F0E127;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-left: 7px;
}
@media screen and (max-width: 1199px) {
  .header__mail-contact {
    font-size: 20px;
  }
}
@media screen and (max-width: 999px) {
  .header__mail-contact {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .header__mail-contact {
    font-size: 18px;
  }
}
@media screen and (max-width: 570px) {
  .header__mail-contact {
    font-size: 17px;
  }
}
@media screen and (max-width: 550px) {
  .header__mail-contact {
    font-size: 15px;
  }
}
@media screen and (max-width: 460px) {
  .header__mail-contact {
    font-size: 13px;
  }
}

.header__mail-text {
  padding: 2px 10px 8px;
}

.header__mail-note {
  font-size: 18px;
  font-weight: 500;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #ffffff;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .header__mail-note {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .header__mail-note {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .header__mail-note {
    font-size: 13px;
  }
}
@media screen and (max-width: 460px) {
  .header__mail-note {
    font-size: 12px;
  }
}

.header__mail-note br {
  display: none;
}
@media screen and (max-width: 350px) {
  .header__mail-note br {
    display: block;
  }
}
@media screen and (max-width: 399px) {
  .header__mail-note br {
    display: none;
  }
}

.header__nav-list {
  display: flex;
  padding: 20px 0;
  height: 70px;
  background-color: #00AFEC;
  justify-content: center;
  align-items: center;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  will-change: transform;
}
@media screen and (max-width: 1199px) {
  .header__nav-list {
    height: auto;
    padding: 0;
    flex-wrap: wrap;
  }
}

.header__nav-item {
  height: 70px;
  position: relative;
}
@media screen and (max-width: 999px) {
  .header__nav-item {
    width: 50%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (max-width: 399px) {
  .header__nav-item {
    height: 35px;
  }
}
.header__nav-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 90%;
  background-color: #ffffff;
}
@media screen and (max-width: 999px) {
  .header__nav-item:not(:last-child)::after {
    display: none !important;
  }
}
.header__nav-item:first-child::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 90%;
  background-color: #ffffff;
}
@media screen and (max-width: 999px) {
  .header__nav-item:first-child::before {
    display: none !important;
  }
}
.header__nav-item:last-child::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 90%;
  background-color: #ffffff;
}
@media screen and (max-width: 999px) {
  .header__nav-item:last-child::after {
    display: none !important;
  }
}
@media screen and (max-width: 999px) {
  .header__nav-item:nth-child(n+3)::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 80%;
    height: 1px;
    background-color: #ffffff;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 999px) and (max-width: 399px) {
  .header__nav-item:nth-child(n+3)::before {
    top: -2px;
  }
}
@media screen and (max-width: 999px) {
  .header__nav-item:nth-child(2n-1)::after {
    display: block !important;
    content: "";
    position: absolute;
    right: -0.5px;
    top: 50%;
    width: 1px;
    height: 80%;
    background-color: #ffffff;
    transform: translateY(-50%);
  }
}

.header__nav-item a {
  height: 70px;
  font-family: "Kaisei Opti", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 0.5;
  letter-spacing: 0em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 300px;
  color: #ffffff;
  padding: 0 10px;
  position: relative;
  overflow: hidden;
}
.header__nav-item a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  display: block;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
  z-index: 1;
}
@media screen and (max-width: 399px) {
  .header__nav-item a::before {
    top: 18px;
    height: 50%;
  }
}
@media screen and (max-width: 1199px) {
  .header__nav-item a {
    width: 240px;
    font-size: 20px;
  }
}
@media screen and (max-width: 999px) {
  .header__nav-item a {
    width: 100%;
    height: 80px;
    font-size: 26px;
    padding: 5px;
  }
}
@media screen and (max-width: 700px) {
  .header__nav-item a {
    font-size: 24px;
  }
}
@media screen and (max-width: 530px) {
  .header__nav-item a {
    font-size: 20px;
  }
}
@media screen and (max-width: 480px) {
  .header__nav-item a {
    font-size: 18px;
  }
}
@media screen and (max-width: 420px) {
  .header__nav-item a {
    font-size: 16px;
  }
}
@media screen and (max-width: 400px) {
  .header__nav-item a {
    font-size: 14px;
  }
}
@media screen and (max-width: 399px) {
  .header__nav-item a {
    width: 300px;
    height: 70px;
  }
}

@media (any-hover: hover) {
  .header__nav-item a:hover::before {
    animation: shine 1s;
  }
}
@keyframes shine {
  100% {
    left: 120%;
  }
}
.header__nav-item-corporate {
  letter-spacing: 0.1em !important;
}

.mv {
  width: 100%;
}
@media screen and (max-width: 375px) {
  .mv {
    margin-top: 32px;
  }
}

.mv__content {
  position: relative;
}

.mv__img picture {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.mv__inner {
  position: relative;
  height: inherit;
  width: 100%;
}

.mv__title-img {
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 990px;
}
@media screen and (max-width: 1690px) {
  .mv__title-img {
    top: 57%;
    max-width: 930px;
  }
}
@media screen and (max-width: 1399px) {
  .mv__title-img {
    top: 57%;
    max-width: 760px;
  }
}
@media screen and (max-width: 1199px) {
  .mv__title-img {
    top: 57%;
    max-width: 555px;
  }
}
@media screen and (max-width: 999px) {
  .mv__title-img {
    top: 43%;
    max-width: 711px;
  }
}
@media screen and (max-width: 800px) {
  .mv__title-img {
    top: 43%;
    max-width: 525px;
  }
}
@media screen and (max-width: 620px) {
  .mv__title-img {
    top: 43%;
    max-width: 395px;
  }
}
@media screen and (max-width: 450px) {
  .mv__title-img {
    top: 43%;
    max-width: 335px;
  }
}
@media screen and (max-width: 320px) {
  .mv__title-img {
    top: 45%;
    max-width: 262px;
  }
}

.mv__title-img-star {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.mv__title-img-star .star {
  position: absolute;
  width: 40px;
  height: 40px;
  animation: twinkle 2s linear infinite;
}
@media screen and (max-width: 1199px) {
  .mv__title-img-star .star {
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 767px) {
  .mv__title-img-star .star {
    width: 20px;
    height: 20px;
  }
}

@keyframes twinkle {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.mv__title-img-star .star-1 {
  top: -34px;
  left: 46px;
  transform: translate(-50%, -50%);
  animation-delay: 0s;
}
@media screen and (max-width: 1690px) {
  .mv__title-img-star .star-1 {
    top: -35px;
    left: 60px;
  }
}
@media screen and (max-width: 1399px) {
  .mv__title-img-star .star-1 {
    top: -32px;
    left: 48px;
  }
}
@media screen and (max-width: 1199px) {
  .mv__title-img-star .star-1 {
    top: -14px;
    left: 2px;
  }
}
@media screen and (max-width: 999px) {
  .mv__title-img-star .star-1 {
    top: -14px;
    left: 2px;
  }
}
@media screen and (max-width: 800px) {
  .mv__title-img-star .star-1 {
    top: -14px;
    left: 9px;
  }
}
@media screen and (max-width: 620px) {
  .mv__title-img-star .star-1 {
    top: -14px;
    left: 2px;
  }
}

.mv__title-img-star .star-2 {
  top: 74px;
  left: 278px;
  animation-delay: 0.6s;
}
@media screen and (max-width: 1690px) {
  .mv__title-img-star .star-2 {
    top: 70px;
    left: 263px;
  }
}
@media screen and (max-width: 1399px) {
  .mv__title-img-star .star-2 {
    top: 66px;
    left: 214px;
  }
}
@media screen and (max-width: 1199px) {
  .mv__title-img-star .star-2 {
    top: 50px;
    left: 151px;
  }
}
@media screen and (max-width: 999px) {
  .mv__title-img-star .star-2 {
    top: 50px;
    left: 200px;
  }
}
@media screen and (max-width: 800px) {
  .mv__title-img-star .star-2 {
    top: 50px;
    left: 151px;
  }
}
@media screen and (max-width: 620px) {
  .mv__title-img-star .star-2 {
    top: 30px;
    left: 108px;
  }
}
@media screen and (max-width: 450px) {
  .mv__title-img-star .star-2 {
    top: 26px;
    left: 85px;
  }
}
@media screen and (max-width: 320px) {
  .mv__title-img-star .star-2 {
    top: 18px;
    left: 66px;
  }
}

.mv__title-img-star .star-3 {
  top: -34px;
  left: 484px;
  animation-delay: 0.9s;
}
@media screen and (max-width: 1690px) {
  .mv__title-img-star .star-3 {
    top: -55px;
    left: 454px;
  }
}
@media screen and (max-width: 1399px) {
  .mv__title-img-star .star-3 {
    top: -36px;
    left: 372px;
  }
}
@media screen and (max-width: 1199px) {
  .mv__title-img-star .star-3 {
    top: -33px;
    left: 266px;
  }
}
@media screen and (max-width: 999px) {
  .mv__title-img-star .star-3 {
    top: -30px;
    left: 344px;
  }
}
@media screen and (max-width: 800px) {
  .mv__title-img-star .star-3 {
    top: -18px;
    left: 258px;
  }
}
@media screen and (max-width: 620px) {
  .mv__title-img-star .star-3 {
    top: -18px;
    left: 192px;
  }
}
@media screen and (max-width: 450px) {
  .mv__title-img-star .star-3 {
    top: -18px;
    left: 157px;
  }
}
@media screen and (max-width: 320px) {
  .mv__title-img-star .star-3 {
    top: -18px;
    left: 124px;
  }
}

.mv__title-img-star .star-4 {
  top: 80px;
  left: 720px;
  animation-delay: 1.3s;
}
@media screen and (max-width: 1690px) {
  .mv__title-img-star .star-4 {
    top: 71px;
    left: 675px;
  }
}
@media screen and (max-width: 1399px) {
  .mv__title-img-star .star-4 {
    top: 69px;
    left: 548px;
  }
}
@media screen and (max-width: 1199px) {
  .mv__title-img-star .star-4 {
    top: 43px;
    left: 398px;
  }
}
@media screen and (max-width: 999px) {
  .mv__title-img-star .star-4 {
    top: 50px;
    left: 514px;
  }
}
@media screen and (max-width: 800px) {
  .mv__title-img-star .star-4 {
    top: 44px;
    left: 379px;
  }
}
@media screen and (max-width: 620px) {
  .mv__title-img-star .star-4 {
    top: 31px;
    left: 283px;
  }
}
@media screen and (max-width: 450px) {
  .mv__title-img-star .star-4 {
    top: 28px;
    left: 240px;
  }
}
@media screen and (max-width: 320px) {
  .mv__title-img-star .star-4 {
    top: 21px;
    left: 190px;
  }
}

@keyframes twinkle {
  0%, 100% {
    opacity: 0;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}
.mv__sub {
  position: relative;
  width: 100%;
  z-index: 2;
  padding: 125px 20px 55px;
  background-image: url("../images/common/about-bg.webp");
  background-repeat: repeat-y;
  background-size: cover;
  margin-top: -50px;
}
@media screen and (max-width: 1199px) {
  .mv__sub {
    background-image: url("../images/common/about-bg-sp.webp");
    margin-top: -90px;
  }
}
@media screen and (max-width: 999px) {
  .mv__sub {
    margin-top: -74px;
  }
}
@media screen and (max-width: 767px) {
  .mv__sub {
    margin-top: -42px;
    padding: 125px 15px 55px;
  }
}
@media screen and (max-width: 399px) {
  .mv__sub {
    margin-top: -37px;
  }
}

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

.mv__sub-title-text h2 {
  font-size: 32px;
  font-weight: 700;
  font-family: "Kaisei Opti", sans-serif;
  color: #0068B7;
  line-height: 0.7272727273;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 999px) {
  .mv__sub-title-text h2 {
    font-size: 32px;
  }
}
@media screen and (max-width: 767px) {
  .mv__sub-title-text h2 {
    font-size: 28px;
  }
}
@media screen and (max-width: 550px) {
  .mv__sub-title-text h2 {
    font-size: 23px;
  }
}
@media screen and (max-width: 450px) {
  .mv__sub-title-text h2 {
    font-size: 20px;
  }
}
@media screen and (max-width: 350px) {
  .mv__sub-title-text h2 {
    font-size: 16px;
  }
}

.mv__sub-title-text span {
  font-size: 62px;
  line-height: 1.5;
  letter-spacing: -0.08em;
  font-weight: 900;
}
@media screen and (max-width: 999px) {
  .mv__sub-title-text span {
    font-size: 58px;
  }
}
@media screen and (max-width: 767px) {
  .mv__sub-title-text span {
    font-size: 50px;
  }
}
@media screen and (max-width: 550px) {
  .mv__sub-title-text span {
    font-size: 42px;
  }
}
@media screen and (max-width: 450px) {
  .mv__sub-title-text span {
    font-size: 33px;
  }
}
@media screen and (max-width: 350px) {
  .mv__sub-title-text span {
    font-size: 30px;
  }
}

.mv__text {
  font-size: 1.125rem;
  font-weight: 400;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #282828;
  line-height: 1.5;
  letter-spacing: 0em;
  text-align: center;
  margin-top: 28px;
}
@media screen and (max-width: 999px) {
  .mv__text {
    font-size: 24px;
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .mv__text {
    margin-top: 20px;
    font-size: 20px;
  }
}
@media screen and (max-width: 560px) {
  .mv__text {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 500px) {
  .mv__text {
    font-size: 16px;
  }
}
@media screen and (max-width: 380px) {
  .mv__text {
    font-size: 12px;
  }
}

.u-br {
  display: none;
}
@media screen and (max-width: 999px) {
  .u-br {
    display: block;
  }
}

.footer {
  background-color: #00AFEC;
  padding-bottom: 60px;
  margin-top: 55px;
}
@media screen and (max-width: 1199px) {
  .footer {
    padding-top: 20px;
  }
}
@media screen and (max-width: 600px) {
  .footer {
    padding-bottom: 120px;
  }
}
@media screen and (max-width: 399px) {
  .footer {
    padding-bottom: 15px;
  }
}

.footer__inner {
  margin: auto;
  padding: 0 25px;
  max-width: 950px;
}
@media screen and (max-width: 767px) {
  .footer__inner {
    padding: 0 15px;
    max-width: 630px;
    width: 100%;
  }
}

.footer__container {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  position: relative;
}
@media screen and (max-width: 999px) {
  .footer__container {
    display: block;
  }
}

.footer__title {
  position: relative;
  margin-right: 235px;
  margin-top: 37px;
}
@media screen and (max-width: 600px) {
  .footer__title {
    margin-right: 0;
  }
}
@media screen and (max-width: 399px) {
  .footer__title {
    margin-right: 0;
  }
}

.footer__wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 1199px) {
  .footer__wrap {
    display: inline-block;
    margin-top: 25px;
  }
}
@media screen and (max-width: 600px) {
  .footer__wrap {
    display: grid;
    margin-top: 15px;
    justify-content: center;
    margin-inline: auto;
    text-align: center;
    align-items: center;
    margin-bottom: 200px;
  }
}
.footer__title-text {
  font-size: 24px;
  font-weight: 700;
  font-family: "Kaisei Opti", sans-serif;
  color: #ffffff;
  line-height: 1.5;
  letter-spacing: -0.07em;
  line-height: 1;
  text-transform: uppercase;
  border: 1px solid #ffffff;
  border-radius: 50px;
  padding: 10px 107px;
}
@media screen and (max-width: 999px) {
  .footer__title-text {
    padding: 10px 15px;
    font-size: 20px;
    text-align: center;
    max-width: 500px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  .footer__title-text {
    padding: 10px 15px;
    font-size: 24px;
    text-align: center;
    max-width: 438px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 399px) {
  .footer__title-text {
    font-size: 14px;
  }
}

.footer__name {
  color: #ffffff;
  font-family: "Zen Maru Gothic", sans-serif;
  line-height: 1.5;
  letter-spacing: 0em;
}

.footer__name-sub {
  font-size: 18px;
  font-weight: 500;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .footer__name-sub {
    font-size: 19px;
    margin-top: 0;
  }
}

.footer__name-main {
  font-size: 32px;
  font-weight: 700;
}
@media screen and (max-width: 999px) {
  .footer__name-main {
    margin-top: 0px;
  }
}
@media screen and (max-width: 767px) {
  .footer__name-main {
    font-size: 35px;
  }
}
@media screen and (max-width: 330px) {
  .footer__name-main {
    font-size: 33px;
  }
}

.footer__logo {
  text-align: center;
  display: flex;
  justify-content: center;
}

.footer__logo img {
  width: 100%;
  max-width: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-left: 65px;
  margin-top: 10px;
}
@media screen and (max-width: 1199px) {
  .footer__logo img {
    margin-top: 20px;
    margin-left: 0;
    margin-inline: auto;
    display: block;
  }
}
@media screen and (max-width: 999px) {
  .footer__logo img {
    margin-top: 20px;
    margin-inline: auto;
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .footer__logo img {
    margin-top: 12px;
    max-width: 200px;
    margin-inline: auto;
    display: block;
  }
}

.footer__catchphrase {
  top: -15%;
  left: 74%;
  z-index: 10;
  position: absolute;
  height: 200px;
}
@media screen and (max-width: 1199px) {
  .footer__catchphrase {
    top: 11%;
    left: 70%;
    height: 200px;
    max-width: 340px;
  }
}
@media screen and (max-width: 999px) {
  .footer__catchphrase {
    top: -1%;
    left: 70%;
  }
}
@media screen and (max-width: 767px) {
  .footer__catchphrase {
    top: 0%;
    left: 63%;
  }
}
@media screen and (max-width: 600px) {
  .footer__catchphrase {
    top: 114%;
    left: 43%;
  }
}
@media screen and (max-width: 399px) {
  .footer__catchphrase {
    top: 110%;
    left: 40%;
  }
}

.footer__catchphrase img {
  max-width: 340px;
}
@media screen and (max-width: 999px) {
  .footer__catchphrase img {
    max-width: 250px;
  }
}
@media screen and (max-width: 767px) {
  .footer__catchphrase img {
    max-width: 220px;
  }
}
@media screen and (max-width: 399px) {
  .footer__catchphrase img {
    max-width: 140px;
  }
}

.course {
  z-index: 2;
}

.course__inner {
  width: 100%;
}

.full-cleaning {
  padding: 80px 0 47px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .full-cleaning {
    padding-top: 50px;
  }
}
@media screen and (max-width: 370px) {
  .full-cleaning {
    padding-top: 80px;
  }
}

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

.full-cleaning__catchphrase {
  position: absolute;
  top: -23%;
  left: 75%;
  z-index: 10;
  text-align: center;
  max-width: 161px;
  animation: hurueru 0.8s infinite;
}
@media screen and (max-width: 1615px) {
  .full-cleaning__catchphrase {
    top: -23%;
    left: 80%;
  }
}
@media screen and (max-width: 1199px) {
  .full-cleaning__catchphrase {
    top: 7%;
    left: 82%;
    max-width: 180px;
  }
}
@media screen and (max-width: 999px) {
  .full-cleaning__catchphrase {
    top: 9%;
    left: 33%;
    max-width: 400px;
    overflow: hidden;
    height: 400px;
  }
}
@media screen and (max-width: 767px) {
  .full-cleaning__catchphrase {
    top: 228px;
    right: 10%;
    z-index: 1;
    text-align: center;
    max-width: 300px;
    height: 300px;
  }
}
@media screen and (max-width: 500px) {
  .full-cleaning__catchphrase {
    height: 250px;
    top: 270px;
    left: 26%;
  }
}
@media screen and (max-width: 370px) {
  .full-cleaning__catchphrase {
    top: 280px;
    left: 13%;
  }
}

@keyframes hurueru {
  0% {
    transform: translate(0px, 0px) rotateZ(0deg);
  }
  25% {
    transform: translate(2px, 2px) rotateZ(1deg);
  }
  50% {
    transform: translate(0px, 2px) rotateZ(0deg);
  }
  75% {
    transform: translate(2px, 0px) rotateZ(-1deg);
  }
  100% {
    transform: translate(0px, 0px) rotateZ(0deg);
  }
}
.full-cleaning__catchphrase img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .full-cleaning__catchphrase img {
    -o-object-position: center top;
       object-position: center top;
  }
}

.full-cleaning__plans {
  display: flex;
  position: relative;
  margin-top: 74px;
  justify-content: center;
  z-index: 10;
}
@media screen and (max-width: 999px) {
  .full-cleaning__plans {
    flex-direction: column;
    align-items: center;
    margin-top: 315px;
  }
}
@media screen and (max-width: 767px) {
  .full-cleaning__plans {
    margin-top: 225px;
  }
}

.full-cleaning__plans-day {
  max-width: 600px;
}
.full-cleaning__plans-half-day {
  max-width: 600px;
  margin-left: 50px;
}
@media screen and (max-width: 999px) {
  .full-cleaning__plans-half-day {
    margin-left: 0;
    margin-top: 30px;
  }
}

.full-cleaning__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  -moz-column-gap: 12px;
       column-gap: 12px;
  row-gap: 5px;
  margin-top: 42px;
  align-items: end;
  justify-items: center;
}
@media screen and (max-width: 1199px) {
  .full-cleaning__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 999px) {
  .full-cleaning__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 700px) {
  .full-cleaning__list {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 11px;
    row-gap: 10px;
  }
}
@media screen and (max-width: 600px) {
  .full-cleaning__list {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 11px;
    row-gap: 32px;
  }
}

.cleaning-course__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 8px;
  height: 100%;
  padding: 10px;
}
@media screen and (max-width: 767px) {
  .cleaning-course__item {
    max-width: 300px;
  }
}
@media screen and (max-width: 399px) {
  .cleaning-course__item {
    max-width: 330px;
  }
}

.cleaning-course__image-wrapper {
  width: 100%;
  aspect-ratio: 300/345;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .cleaning-course__image-wrapper {
    aspect-ratio: 4/4;
  }
}

.cleaning-course__item img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain; /* 切らずに全部表示 */
  display: block;
}
@media screen and (max-width: 767px) {
  .cleaning-course__item img {
    min-height: 300px;
  }
}
@media screen and (max-width: 399px) {
  .cleaning-course__item img {
    min-height: 220px;
  }
}

.cleaning-course__item p {
  font-size: 26px;
  font-weight: 700;
  font-family: "Kaisei Opti", sans-serif;
  color: #0068B7;
  line-height: 1;
  letter-spacing: -0.15em;
  text-align: center;
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 620px) {
  .cleaning-course__item p {
    font-size: 26px;
  }
}

.cleaning-course__item p br {
  display: none;
}
@media screen and (max-width: 999px) {
  .cleaning-course__item p br {
    display: block;
  }
}

.cleaning-course__item-comment {
  font-size: 12px;
  font-weight: 500;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #282828;
  line-height: 1;
  letter-spacing: 0em;
  text-align: center;
  display: block;
  margin-top: 5px;
}
@media screen and (max-width: 999px) {
  .cleaning-course__item-comment {
    font-size: 19px;
  }
}

.cleaning-course__item-comment br {
  display: none;
}
@media screen and (max-width: 999px) {
  .cleaning-course__item-comment br {
    display: block;
  }
}

.house-cleaning {
  position: relative;
  width: 100%;
  z-index: 2;
  padding: 80px 0 80px;
  background-image: url("../images/common/bg-img.webp");
  background-repeat: repeat-y;
  background-size: cover;
}
@media screen and (max-width: 1199px) {
  .house-cleaning {
    background-image: url("../images/common/bg-img-sp.webp");
  }
}
@media screen and (max-width: 767px) {
  .house-cleaning {
    padding: 50px 0 80px;
  }
}
@media screen and (max-width: 370px) {
  .house-cleaning {
    padding-top: 80px;
  }
}

.house-cleaning__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.house-cleaning__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.house-cleaning__inner {
  position: relative;
  z-index: 2;
}

.house-cleaning__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.house-cleaning__heading {
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 999px) {
  .house-cleaning__heading {
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .house-cleaning__heading {
    padding-left: 0;
  }
}

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

.house-cleaning__catchphrase {
  position: absolute;
  left: -195px;
  bottom: -76px;
  max-width: 195px;
}
@media screen and (max-width: 999px) {
  .house-cleaning__catchphrase {
    left: -90px;
    bottom: -100px;
  }
}
@media screen and (max-width: 767px) {
  .house-cleaning__catchphrase {
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.house-cleaning__catchphrase img {
  width: 100%;
  height: auto;
}

.house-cleaning__calendar img {
  max-width: 100%;
  height: auto;
  margin-top: 35px;
}
@media screen and (max-width: 999px) {
  .house-cleaning__calendar img {
    margin-top: 17px;
  }
}

.house-cleaning__menu-title {
  margin-top: 78px;
  text-align: center;
  justify-content: center;
  display: flex;
  max-width: 400px;
}
@media screen and (max-width: 999px) {
  .house-cleaning__menu-title {
    margin-top: 71px;
  }
}

.house-cleaning__menu-price {
  margin-top: 35px;
  display: flex;
}
@media screen and (max-width: 999px) {
  .house-cleaning__menu-price {
    display: block;
  }
}

.house-cleaning__price-list-right {
  width: 100%;
  height: auto;
}

.house-cleaning__price-list-left {
  width: 100%;
  height: auto;
  margin-left: 25px;
}
@media screen and (max-width: 999px) {
  .house-cleaning__price-list-left {
    margin-left: 0px;
    margin-top: 40px;
  }
}

.house-cleaning__price-list-item:nth-child(n+2) {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .house-cleaning__price-list-item:nth-child(n+2) {
    margin-top: 28px;
  }
}

.house-cleaning__price-list-image {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.office__cleaning {
  width: 100%;
  height: auto;
  padding: 80px 0 27px;
}
@media screen and (max-width: 767px) {
  .office__cleaning {
    padding: 50px 0 27px;
  }
}
@media screen and (max-width: 370px) {
  .office__cleaning {
    padding-top: 80px;
  }
}

.office-cleaning__title {
  text-align: center;
}
.office-cleaning__menu-heading {
  position: relative;
}

.office-cleaning__catchphrase {
  position: absolute;
  right: 2%;
  bottom: 6px;
  max-width: 160px;
  z-index: 2;
}
@media screen and (max-width: 1010px) {
  .office-cleaning__catchphrase {
    right: 3%;
  }
}
@media screen and (max-width: 999px) {
  .office-cleaning__catchphrase {
    top: -200px;
    left: 37%;
    bottom: 10px;
    overflow: hidden;
    height: 400%;
    max-width: 211px;
  }
}
@media screen and (max-width: 767px) {
  .office-cleaning__catchphrase {
    top: -231px;
    left: 21%;
    max-width: 275px;
  }
}
@media screen and (max-width: 530px) {
  .office-cleaning__catchphrase {
    top: -233px;
    left: 16%;
    max-width: 285px;
  }
}
@media screen and (max-width: 500px) {
  .office-cleaning__catchphrase {
    top: -216px;
    left: 15%;
    max-width: 254px;
  }
}
@media screen and (max-width: 430px) {
  .office-cleaning__catchphrase {
    top: -186px;
    left: 19%;
    max-width: 210px;
  }
}
@media screen and (max-width: 370px) {
  .office-cleaning__catchphrase {
    top: -157px;
    left: 18%;
    max-width: 175px;
  }
}
.office-cleaning__catchphrase img {
  width: 100%;
  height: auto;
}

.office-cleaning__menu-title {
  position: relative;
  margin-top: 36px;
  text-align: center;
  justify-content: center;
  display: flex;
  max-width: 400px;
  z-index: 10;
}
@media screen and (max-width: 999px) {
  .office-cleaning__menu-title {
    margin-top: 252px;
  }
}

.office-cleaning__info {
  position: relative;
  display: flex;
  margin-top: 50px;
}
@media screen and (max-width: 999px) {
  .office-cleaning__info {
    flex-direction: column;
    margin-top: 45px;
  }
}

.office-cleaning__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 575/428;
}
@media screen and (max-width: 767px) {
  .office-cleaning__img img {
    -o-object-position: center top;
       object-position: center top;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.office-cleaning__image {
  width: 100%;
  height: auto;
  aspect-ratio: 575/428;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.office-cleaning__wrapper {
  margin-left: 50px;
  width: 100%;
}
@media screen and (max-width: 999px) {
  .office-cleaning__wrapper {
    margin-left: 0;
    margin-top: 20px;
  }
}

.office-cleaning__point {
  font-size: 20px;
  font-weight: 400;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #282828;
  line-height: 1.5;
  letter-spacing: -0.1em;
  position: relative;
  padding-left: 25px;
}
@media screen and (max-width: 999px) {
  .office-cleaning__point {
    font-size: 25px;
  }
}
@media screen and (max-width: 767px) {
  .office-cleaning__point {
    font-size: 20px;
  }
}
@media screen and (max-width: 399px) {
  .office-cleaning__point {
    font-size: 16px;
  }
}

.office-cleaning__point br {
  display: block;
}
@media screen and (max-width: 999px) {
  .office-cleaning__point br {
    display: none;
  }
}

.office-cleaning__point::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 15px;
  height: 15px;
  background-color: #00AFEC;
  border-radius: 50%;
}
@media screen and (max-width: 999px) {
  .office-cleaning__point::before {
    width: 18px;
    height: 18px;
  }
}

.office-cleaning__recommend {
  font-size: 27px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #0068B7;
  line-height: 1.5;
  letter-spacing: -0.08em;
  margin-top: 30px;
}
@media screen and (max-width: 999px) {
  .office-cleaning__recommend {
    margin-top: 13px;
    font-size: 27px;
  }
}
@media screen and (max-width: 767px) {
  .office-cleaning__recommend {
    font-size: 22px;
  }
}
@media screen and (max-width: 399px) {
  .office-cleaning__recommend {
    font-size: 16px;
  }
}

.office-cleaning__areas {
  border: 1px solid #0068B7;
  border-radius: 8px;
  padding: 12px 16px;
  max-width: 554px;
  position: relative;
  margin-top: 45px;
}
@media screen and (max-width: 999px) {
  .office-cleaning__areas {
    margin-inline: auto;
    max-width: 1000px;
    padding: 12px 16px 26px;
  }
}
.office-cleaning__areas::before {
  content: "清掃箇所";
  position: absolute;
  top: -15px;
  left: 20px;
  background-color: #ffffff;
  padding: 0 10px;
  font-size: 24px;
  font-weight: 700;
  color: #0068B7;
  font-family: "Kaisei Opti", sans-serif;
}
@media screen and (max-width: 399px) {
  .office-cleaning__areas::before {
    font-size: 22px;
  }
}

.office-cleaning__description {
  font-size: 18px;
  font-weight: 400;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #282828;
  line-height: 1.5;
  letter-spacing: 0em;
  margin-top: 16px;
}

.office-cleaning__photo {
  margin-top: 100px;
  margin-inline: auto;
  display: grid;
  height: auto;
  max-width: 1200px;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 30px;
  padding: 0;
}
@media screen and (max-width: 999px) {
  .office-cleaning__photo {
    margin-top: 39px;
    max-width: 800px;
  }
}
@media screen and (max-width: 767px) {
  .office-cleaning__photo {
    row-gap: 20px;
    max-width: 600px;
  }
}
@media screen and (max-width: 399px) {
  .office-cleaning__photo {
    grid-template-columns: repeat(1, 1fr);
    max-width: 90%;
  }
}

.office-cleaning__item {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.office-cleaning__item img {
  aspect-ratio: 585/385;
}

.office-cleaning__item p {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #0068B7;
  color: #ffffff;
  padding: 10px 30px;
}
@media screen and (max-width: 999px) {
  .office-cleaning__item p {
    padding: 4px 22px;
  }
}
@media screen and (max-width: 767px) {
  .office-cleaning__item p {
    padding: 4px 17px;
  }
}

.office-cleaning__label {
  font-size: 18px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #0068B7;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .office-cleaning__label {
    font-size: 12px;
  }
}

.office-cleaning__example-img {
  margin-top: 80px;
}
@media screen and (max-width: 999px) {
  .office-cleaning__example-img {
    margin-top: 25px;
  }
}

.office-cleaning__company-list {
  display: flex;
  justify-content: space-between;
  margin-top: 74px;
  gap: 45px;
}
@media screen and (max-width: 999px) {
  .office-cleaning__company-list {
    flex-direction: column;
    gap: 26px;
    margin-top: 37px;
  }
}

.office-cleaning__company-list-group {
  width: 48%;
}
@media screen and (max-width: 999px) {
  .office-cleaning__company-list-group {
    width: 100%;
  }
}

.office-cleaning__company-list-heading {
  display: flex;
  align-items: center;
  gap: 2px;
}

.office-cleaning__company-list-title {
  position: relative;
  font-size: 22px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #00AFEC;
  line-height: 1;
  letter-spacing: 0em;
  white-space: nowrap;
  margin-right: 10px;
}

.office-cleaning__company-list-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 15px;
}
@media screen and (max-width: 399px) {
  .office-cleaning__company-list-items {
    grid-template-columns: repeat(1, 1fr);
  }
}

.office-cleaning__company-list-item {
  font-size: 16px;
  font-weight: 400;
  font-family: "Zen Maru Gothic", sans-serif;
  line-height: 1.5;
  display: flex;
  align-items: center;
}

.office-cleaning__company-list-item span {
  color: #00AFEC;
  margin-right: 5px;
}

.office-cleaning__company-list-line {
  flex-grow: 1;
  height: 1px;
  background-color: #00AFEC;
}

.office-cleaning__vacant-room {
  margin-top: 97px;
}
@media screen and (max-width: 999px) {
  .office-cleaning__vacant-room {
    margin-top: 47px;
  }
}

.office-cleaning__vacant-room-label {
  text-align: center;
  justify-content: center;
  display: flex;
  max-width: 400px;
}

.office-cleaning__vacant-room-content {
  display: flex;
  margin-top: 50px;
}
@media screen and (max-width: 999px) {
  .office-cleaning__vacant-room-content {
    flex-direction: column-reverse;
  }
}
.office-cleaning__vacant-room-info {
  width: 45%;
}
@media screen and (max-width: 999px) {
  .office-cleaning__vacant-room-info {
    width: 100%;
    margin-left: 30px;
  }
}
@media screen and (max-width: 600px) {
  .office-cleaning__vacant-room-info {
    margin-left: 0;
  }
}

.office-cleaning__vacant-room-image {
  width: 59%;
  margin-left: 10px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1199px) {
  .office-cleaning__vacant-room-image {
    width: 55%;
  }
}
@media screen and (max-width: 999px) {
  .office-cleaning__vacant-room-image {
    margin-left: 0;
    width: 100%;
    margin-bottom: 30px;
  }
}

.office-cleaning__vacant-room-image img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.office-cleaning__vacant-room-text {
  font-size: 24px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #0068B7;
  line-height: 1.5;
  letter-spacing: 0em;
}
@media screen and (max-width: 767px) {
  .office-cleaning__vacant-room-text {
    font-size: 20px;
  }
}
@media screen and (max-width: 399px) {
  .office-cleaning__vacant-room-text {
    font-size: 15px;
  }
}

.office-cleaning__vacant-room-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  max-width: 468px;
}

.office-cleaning__vacant-room-thead {
  background-color: #D9F3FC;
}

.office-cleaning__vacant-room-th {
  padding: 10px;
  font-size: 20px;
  text-align: center;
  font-weight: 500;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #282828;
  border: none;
  border-bottom: 1px solid #282828;
}
@media screen and (max-width: 399px) {
  .office-cleaning__vacant-room-th {
    font-size: 14px;
  }
}

.office-cleaning__vacant-room-th:first-child {
  border-right: 1px solid #282828;
}

.office-cleaning__vacant-room-tr {
  border-bottom: 1px solid #282828;
}

.office-cleaning__vacant-room-td {
  padding: 8px;
  font-size: 22px;
  font-weight: 500;
  text-align: left;
  border: none;
  border-bottom: 1px solid #282828;
  font-family: "Urbanist", sans-serif;
}
@media screen and (max-width: 399px) {
  .office-cleaning__vacant-room-td {
    font-size: 14px;
  }
}

.office-cleaning__vacant-room-td:first-child {
  border-right: 1px solid #282828;
}

.office-cleaning__vacant-room-tr:nth-child(even) {
  background-color: #f8f8f8;
}

.company {
  position: relative;
  width: 100%;
  z-index: 2;
  padding: 80px 0 80px;
  background-image: url("../images/common/bg-img.webp");
  background-repeat: repeat-y;
  background-size: cover;
}
@media screen and (max-width: 1199px) {
  .company {
    background-image: url("../images/common/bg-img-sp.webp");
  }
}
@media screen and (max-width: 767px) {
  .company {
    padding: 50px 0 80px;
  }
}
@media screen and (max-width: 370px) {
  .company {
    padding-top: 80px;
  }
}

.company__bg-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.company__bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; /* 背景は下 */
}

.company__inner {
  position: relative;
  z-index: 2; /* コンテンツは上に重ねる */
}

.company__title {
  text-align: center;
}

.company__subtitle {
  margin-top: 16px;
}

.company__content {
  margin-top: 40px;
}

.company__profile img {
  margin-top: 23px;
  margin-left: -27px;
  max-width: 1250px;
  width: 100%;
  aspect-ratio: 1216/678;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 999px) {
  .company__profile img {
    aspect-ratio: 590/1703;
    margin-left: 0;
    max-width: 800px;
    margin-inline: auto;
  }
}

.company__activity {
  margin-top: 94px;
}
@media screen and (max-width: 999px) {
  .company__activity {
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .company__activity {
    margin-top: 74px;
  }
}

@media screen and (max-width: 999px) {
  .company__activity-area-text {
    margin-top: 66px;
  }
}

.company__activity-area-title {
  text-align: center;
  justify-content: center;
  display: flex;
  max-width: 400px;
}

.company__activity-area-content {
  margin-top: -18px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 999px) {
  .company__activity-area-content {
    display: block;
  }
}

.company__activity-area-map {
  margin-left: 60px;
}
@media screen and (max-width: 999px) {
  .company__activity-area-map {
    margin-left: 0;
    margin-top: -26px;
  }
}

.company__info {
  margin-top: 80px;
}
@media screen and (max-width: 999px) {
  .company__info {
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .company__info {
    margin-top: 37px;
  }
}

.company__info-title {
  text-align: center;
  justify-content: center;
  display: flex;
  max-width: 400px;
}

.company__catchphrase {
  position: absolute;
  max-width: 308px;
  top: 71%;
  left: -3%;
  z-index: 10;
  animation: hurueru 0.8s infinite;
}
@media screen and (max-width: 1199px) {
  .company__catchphrase {
    max-width: 500px;
    top: 77%;
    left: 34%;
    transform: translate(-50%, -50%);
    z-index: 1;
    overflow: hidden;
    height: 375px;
  }
}
@media screen and (max-width: 999px) {
  .company__catchphrase {
    top: 91%;
    left: 23%;
    width: 100%;
    height: 366px;
    max-width: 470px;
  }
}
@media screen and (max-width: 767px) {
  .company__catchphrase {
    top: 89%;
    left: 19%;
    height: 380px;
    max-width: 525px;
  }
}
@media screen and (max-width: 620px) {
  .company__catchphrase {
    top: 88%;
    left: 19%;
    height: 380px;
    max-width: 389px;
  }
}
@media screen and (max-width: 550px) {
  .company__catchphrase {
    top: 88%;
    left: 19%;
    height: 380px;
    max-width: 308px;
  }
}
@media screen and (max-width: 400px) {
  .company__catchphrase {
    top: 88%;
    left: 19%;
    height: 380px;
    max-width: 294px;
  }
}
@media screen and (max-width: 399px) {
  .company__catchphrase {
    max-width: 220px;
    top: 89%;
    height: 265px;
  }
}

@keyframes hurueru {
  0% {
    transform: translate(0px, 0px) rotateZ(0deg);
  }
  25% {
    transform: translate(5px, 5px) rotateZ(5deg);
  }
  50% {
    transform: translate(0px, 0px) rotateZ(0deg);
  }
  75% {
    transform: translate(5px, 5px) rotateZ(-5deg);
  }
  100% {
    transform: translate(0px, 0px) rotateZ(0deg);
  }
}
.company__info-content {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 999px) {
  .company__info-content {
    margin-top: 40px;
  }
}

.company__info-list {
  margin-inline: auto;
  max-width: 585px;
  width: 100%;
}

.company__info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}

.company__info-label {
  width: 100px;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 24px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #00AFEC;
  line-height: 1.5;
  letter-spacing: 0.16em;
  text-align: justify;
}
@media screen and (max-width: 399px) {
  .company__info-label {
    font-size: 18px;
    width: 80px;
  }
}

.company__info-value {
  flex: 1;
  font-size: 24px;
  font-weight: 400;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #282828;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 399px) {
  .company__info-value {
    font-size: 16px;
  }
}

.company__info-contact {
  margin-top: 57px;
  border: 2px solid #F0E127;
  background-color: #ffffff;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin-inline: auto;
}
@media screen and (max-width: 1199px) {
  .company__info-contact {
    margin-top: 236px;
    z-index: 10;
  }
}
@media screen and (max-width: 767px) {
  .company__info-contact a[href^="tel:"] {
    pointer-events: none;
  }
}
@media screen and (max-width: 399px) {
  .company__info-contact {
    margin-top: 148px;
  }
}

.company__info-contact-heading {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #0068B7;
  line-height: 1.5;
  letter-spacing: -0.07em;
  background-color: #F0E127;
  border-radius: 20px 20px 0 0;
  padding: 12px;
}
@media screen and (max-width: 999px) {
  .company__info-contact-heading {
    font-size: 25px;
  }
}
@media screen and (max-width: 500px) {
  .company__info-contact-heading {
    font-size: 18px;
  }
}
@media screen and (max-width: 399px) {
  .company__info-contact-heading {
    font-size: 12px;
    padding: 10px 5px;
  }
}

.company__info-contact-tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 0;
}
@media screen and (max-width: 999px) {
  .company__info-contact-tel {
    padding: 0;
  }
}

.company__info-tel-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
@media screen and (max-width: 767px) {
  .company__info-tel-link {
    margin-top: 10px;
  }
}

@media screen and (max-width: 999px) {
  .company__tel-icon {
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 767px) {
  .company__tel-icon {
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 440px) {
  .company__tel-icon {
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 399px) {
  .company__tel-icon {
    width: 25px;
    height: 25px;
  }
}

.company__info-tel-number {
  font-size: 100px;
  font-weight: 900;
  font-family: "Urbanist", sans-serif;
  color: #00AFEC;
  line-height: 1;
  letter-spacing: 0em;
  margin-left: 10px;
}
@media screen and (max-width: 1199px) {
  .company__info-tel-number {
    font-size: 68px;
  }
}
@media screen and (max-width: 640px) {
  .company__info-tel-number {
    font-size: 65px;
  }
}
@media screen and (max-width: 590px) {
  .company__info-tel-number {
    font-size: 55px;
  }
}
@media screen and (max-width: 520px) {
  .company__info-tel-number {
    font-size: 45px;
  }
}
@media screen and (max-width: 450px) {
  .company__info-tel-number {
    font-size: 30px;
  }
}

.company__info-tel-hours {
  margin-top: 5px;
  font-size: 30px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #282828;
  line-height: 1.5;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 999px) {
  .company__info-tel-hours {
    font-size: 26px;
    margin-top: 0;
  }
}
@media screen and (max-width: 450px) {
  .company__info-tel-hours {
    font-size: 18px;
  }
}
@media screen and (max-width: 399px) {
  .company__info-tel-hours {
    font-size: 12px;
  }
}

.contact-form {
  padding-top: 80px;
}

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

.contact-form__read p {
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .contact-form__read p {
    -moz-text-align-last: left;
         text-align-last: left;
  }
}

.contact-form__read p {
  font-size: 18px;
  font-weight: 400;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #282828;
  line-height: 1.5;
  letter-spacing: -0.05em;
  margin-top: 60px;
}
@media screen and (max-width: 999px) {
  .contact-form__read p {
    font-size: 24px;
    margin-top: 32px;
  }
}
@media screen and (max-width: 399px) {
  .contact-form__read p {
    font-size: 18px;
  }
}

.contact-form__lead br {
  display: block;
}

.form {
  padding: 50px 0;
  margin-inline: auto;
}

.form__label {
  font-size: 24px;
}
@media screen and (max-width: 399px) {
  .form__label {
    font-size: 16px;
  }
}

.form__required {
  color: #00AFEC;
  margin-left: 30px;
}
@media screen and (max-width: 399px) {
  .form__required {
    margin-left: 10px;
  }
}

.form__data-radio {
  margin-top: 30px;
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .form__data-radio {
    font-size: 20px;
  }
}
@media screen and (max-width: 399px) {
  .form__data-radio {
    font-size: 14px;
  }
}

.form__data-radio input {
  margin-left: 30px;
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 999px) {
  .form__data-radio input {
    margin-left: 0;
  }
}

.form__field + .form__field,
.form__acceptance {
  margin-top: 48px;
}
@media screen and (max-width: 999px) {
  .form__field + .form__field,
  .form__acceptance {
    margin-top: 42px;
  }
}

.form__input::-moz-placeholder {
  color: #a9a9a9;
}

.form__input::placeholder {
  color: #a9a9a9;
}

.form__textarea {
  font-size: 24px;
  width: 100%;
  padding: 30px;
  border: 1px solid #000;
  border-radius: 4px;
  height: 300px;
}
@media screen and (max-width: 399px) {
  .form__textarea {
    font-size: 16px;
  }
}

.wpcf7-not-valid-tip {
  font-size: 20px;
}
@media screen and (max-width: 399px) {
  .wpcf7-not-valid-tip {
    font-size: 14px;
  }
}

.form__input,
.form__select,
.form__acceptance-text {
  font-size: 24px;
  width: 100%;
  padding: 30px;
  border: 1px solid #000;
  border-radius: 4px;
}
@media screen and (max-width: 399px) {
  .form__input,
  .form__select,
  .form__acceptance-text {
    font-size: 16px;
  }
}

.form__acceptance-text {
  overflow-y: auto;
  height: 120px;
  background-color: #f2f2f2;
}

.form__select {
  padding-right: 35px;
}

.form__data-select {
  position: relative;
}

.form__data-select::after {
  position: absolute;
  top: 46%;
  right: 15px;
  width: 10px;
  height: 10px;
  content: "";
  transform: translateY(-50%) rotate(135deg);
  border-top: solid 2px #000;
  border-right: solid 2px #000;
}

.form__data-radio {
  display: flex;
  flex-wrap: wrap;
}

.form__data,
.form__data-radio,
.form__data-select,
.form__data-check {
  margin-top: 20px;
}
@media screen and (max-width: 999px) {
  .form__data,
  .form__data-radio,
  .form__data-select,
  .form__data-check {
    font-size: 24px;
  }
}
@media screen and (max-width: 500px) {
  .form__data,
  .form__data-radio,
  .form__data-select,
  .form__data-check {
    font-size: 22px;
  }
}
@media screen and (max-width: 399px) {
  .form__data,
  .form__data-radio,
  .form__data-select,
  .form__data-check {
    font-size: 16px;
  }
}

.wpcf7-list-item {
  margin: 0;
}

.wpcf7-form-control-wrap[data-name=radio-category] .wpcf7-list-item + .wpcf7-list-item {
  margin-left: 20px;
}

.wpcf7-form-control-wrap[data-name=radio-category] .wpcf7-list-item-label {
  position: relative;
  display: inline-block;
  padding-left: 16px;
}

.wpcf7-form-control-wrap[data-name=radio-category] .wpcf7-list-item-label::before {
  position: absolute;
  top: 56%;
  left: 0;
  width: 14px;
  height: 14px;
  content: "";
  transform: translateY(-50%);
  border: 1px solid #000;
  border-radius: 7px;
}

.wpcf7-form-control-wrap[data-name=radio-category] .wpcf7-list-item-label::after {
  position: absolute;
  top: 56%;
  left: 3px;
  width: 8px;
  height: 8px;
  content: "";
  transform: translateY(-50%);
  opacity: 0;
  border-radius: 4px;
  background-color: #000;
}

.wpcf7-form-control-wrap[data-name=radio-category] .wpcf7-list-item input:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

.wpcf7-form-control-wrap[data-name=privacy] .wpcf7-list-item-label {
  position: relative;
  display: inline-block;
  padding-left: 24px;
}

.wpcf7-form-control-wrap[data-name=privacy] .wpcf7-list-item-label::before {
  position: absolute;
  top: 3.25px;
  left: 0;
  width: 20px;
  height: 20px;
  content: "";
  border: 1px solid #000;
  border-radius: 3px;
}

.wpcf7-form-control-wrap[data-name=privacy] .wpcf7-list-item-label::after {
  position: absolute;
  top: 9.25px;
  left: 5px;
  width: 10px;
  height: 5px;
  content: "";
  transform: rotate(-45deg);
  opacity: 0;
  border-bottom: 2px solid #000;
  border-left: 2px solid #000;
}

.form__submit-button {
  position: relative;
  text-align: center;
}

.form__submit-button input {
  position: relative;
  margin-top: 67px;
  text-align: center;
  background-color: #0068B7;
  max-width: 1000px;
  padding: 5px 157px;
  border: 3px solid #ffffff;
  border-radius: 10px;
  box-shadow: 0px 1px 6px #b6a9a9;
  font-size: 28px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #ffffff;
  line-height: 1.5;
  letter-spacing: 0em;
  font-family: "Font Awesome 6 Free";
}
@media screen and (max-width: 700px) {
  .form__submit-button input {
    margin-top: 44px;
  }
}
@media screen and (max-width: 639px) {
  .form__submit-button input {
    padding: 5px 70px;
    font-size: 24px;
  }
}
@media screen and (max-width: 470px) {
  .form__submit-button input {
    padding: 5px 45px;
    font-size: 23px;
  }
}
@media screen and (max-width: 399px) {
  .form__submit-button input {
    max-width: 500px;
    font-size: 16px;
    padding: 5px 36px;
  }
}

.form__submit-input {
  position: relative;
  display: inline-block;
  width: 100%;
  font-size: 28px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #ffffff;
  line-height: 0.9333333333;
  letter-spacing: 0.05em;
  max-width: 500px;
  padding: 16px 20px;
  transition: opacity 0.3s;
  color: #fff;
  border-radius: 10px;
  filter: drop-shadow(5px 5px 5px #afafaf);
  border: 3px solid #ffffff;
  z-index: 1;
  background-color: #0068B7;
}
.form__submit-input:hover {
  transition: opacity 0.3s;
  opacity: 0.7;
}

.wpcf7-spinner {
  display: none;
}

.error-page__container {
  background-image: url("../images/common/404-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 690px;
  position: relative;
  z-index: 1;
}

.error-page {
  position: relative;
}

.error-page-content__inner {
  margin: 0 auto;
  padding: 0 25px;
  max-width: 1150px;
  width: 100%;
  display: inline-block;
  display: flex;
  justify-content: center;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .error-page-content__inner {
    justify-content: center;
    margin-left: 10px;
  }
}

.error-page-content__list {
  margin-top: 300px;
  display: inline-block;
  display: flex;
  height: auto;
  max-width: 1270px;
}
@media screen and (max-width: 767px) {
  .error-page-content__list {
    margin-top: 150px;
  }
}

.error-page-content__list img {
  display: block;
  width: 100%;
  height: auto;
}

.error-page-content__title {
  font-size: 70px;
  font-weight: 700;
  line-height: 1.485;
  color: #0068B7;
}
@media screen and (max-width: 1199px) {
  .error-page-content__title {
    font-size: 60px;
  }
}
@media screen and (max-width: 999px) {
  .error-page-content__title {
    font-size: 50px;
  }
}
@media screen and (max-width: 767px) {
  .error-page-content__title {
    font-size: 35px;
  }
}
@media screen and (max-width: 399px) {
  .error-page-content__title {
    font-size: 30px;
  }
}

.error-page-content__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 2.375;
  color: #0068B7;
  margin-top: 20px;
}
@media screen and (max-width: 1199px) {
  .error-page-content__text {
    font-size: 15px;
  }
}
@media screen and (max-width: 999px) {
  .error-page-content__text {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .error-page-content__text {
    font-size: 14px;
    font-weight: 400;
    margin-top: 40px;
    text-align: center;
  }
}
@media screen and (max-width: 399px) {
  .error-page-content__text {
    font-size: 13px;
    margin-top: 10px;
  }
}

.error__button {
  margin-top: 23px;
}
@media screen and (max-width: 1199px) {
  .error__button {
    margin-top: 25px;
  }
}
@media screen and (max-width: 999px) {
  .error__button {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .error__button {
    margin-top: 41px;
    display: flex;
    justify-content: center;
  }
}
@media screen and (max-width: 399px) {
  .error__button {
    margin-top: 35px;
  }
}

.error__button-link {
  color: #0068B7;
  font-size: 14px;
  line-height: 1.5;
  padding: 12px 31px;
}
@media screen and (max-width: 767px) {
  .error__button-link {
    color: #0068B7;
    border-color: #0068B7;
    padding: 12px 34px;
  }
}

.error__button-link i {
  margin-right: 10px;
}

.error__arrow {
  display: inline-block;
  transition: transform 0.3s;
}

.error__button-link:hover .error__arrow {
  transform: translateX(-5px);
}

.error-page__md {
  margin: 0 20px;
  position: relative;
  z-index: 20;
}
/*# sourceMappingURL=style.css.map */
