@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&family=Sawarabi+Gothic&display=swap");
:root {
  --red: #d95f23;
  --yellow: #ffdb29;
  --light_blue_primary: #00a0e9;
  --light_blue_secondary: #239dda;
  --deep_blue_primary: #0068b7;
  --deep_blue_secondary: #1d50a2;
  --white: #fff;
  font-size: 10px;
}

.fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s;
}

body {
  color: #1d50a2;
  font-size: 1.6rem;
  line-height: 2;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

main {
  padding-top: 8rem;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 765px) {
  main {
    padding-top: 6rem;
  }
}

li {
  list-style: none;
}

.wrap_primary {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 2rem;
}
.wrap_primary.wide {
  max-width: 1000px;
}

.paragraph p {
  font-family: "Sawarabi Gothic", sans-serif;
}

.link_btn {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1rem;
  min-width: 17rem;
  border: 1px solid var(--red);
  background-color: var(--red);
  color: var(--white);
  font-weight: bold;
  text-align: center;
  height: 4rem;
  line-height: 4rem;
  margin: 2rem auto 0 auto;
}
.link_btn:hover {
  background-color: transparent;
  color: var(--red);
}

h1,
h2,
h3,
p,
li {
  font-family: "Noto Sans JP", sans-serif;
}

.service_section_header {
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
}

.service_section_header:after {
  content: "";
  display: block;
  width: 10rem;
  height: 2px;
  background-color: #1d50a2;
  margin: 0 auto;
  margin-top: 4rem;
  margin-bottom: 6rem;
}

.default_btn {
  display: table-cell;
  vertical-align: middle;
  background: #1d50a2;
  color: #fff;
  height: 6rem;
  padding: 0.5rem pxtovw(18);
  text-align: center;
  vertical-align: middle;
  box-sizing: border-box;
  font-size: 1.6rem;
  line-height: 1.2;
  white-space: nowrap;
}

.section_header {
  font-size: 3.2rem;
  letter-spacing: 0.1rem;
  font-weight: 900;
  text-align: center;
  display: inline-block;
  line-height: 1.75;
  color: #0068b7;
}

.section {
  margin-bottom: 10rem;
}

.column2 {
  display: flex;
}
@media screen and (max-width: 765px) {
  .column2 {
    flex-direction: column;
  }
}
.column2.reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 765px) {
  .column2.reverse {
    flex-direction: column;
  }
}

.btn_blue {
  display: inline-block;
  background-color: #00a0e9;
  height: 10.5rem;
  line-height: 10.5rem;
  margin-top: 6rem;
  padding: 0 2rem;
  width: 80%;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
  text-align: center;
  border-radius: 1rem;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.btn_blue:hover {
  opacity: 0.8;
}

.read_more_btn {
  margin: 0 auto;
  text-align: center;
}

.cta_btn_area {
  padding-top: 1rem;
  margin-bottom: 6rem;
}
.cta_btn_area .balloon3-right-btm {
  margin-bottom: -2rem;
  z-index: 10;
  position: relative;
}

.cta_btn {
  display: block;
  background: #ffdb29;
  color: #d95f23;
  font-weight: 700;
  border-radius: 0.1rem;
  box-sizing: border-box;
  transition-duration: 0.3s;
  font-family: "Noto Sans JP", sans-serif;
  margin-top: -2rem;
}
.cta_btn strong {
  font-weight: bold;
}
.cta_btn:hover {
  background-color: var(--light_blue_primary);
  color: #fff;
  transition-duration: 0.3s;
}
.cta_btn:hover strong {
  color: var(--white);
  transition-duration: 0.3s;
}
.cta_btn.btn_wide {
  position: relative;
  text-align: center;
  line-height: 3rem;
  font-size: 2.4rem;
  border-radius: 1rem;
  color: var(--deep_blue_primary);
  padding: 3rem 1rem;
  transition-duration: 0.3s;
}
@media screen and (max-width: 765px) {
  .cta_btn.btn_wide {
    font-size: 1.8rem;
  }
}
.cta_btn.btn_wide strong {
  color: var(--red);
  transition-duration: 0.3s;
}
.cta_btn.btn_wide span {
  display: block;
}
.cta_btn.btn_wide .small {
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 765px) {
  .cta_btn.btn_wide .small {
    font-size: 1.4rem;
  }
}
.cta_btn.btn_wide::before {
  content: "";
  display: block;
  background-image: url(../image/point_red.svg);
  height: 12rem;
  width: 10rem;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  bottom: -5rem;
  transform: rotate(-45deg);
}
@media screen and (max-width: 765px) {
  .cta_btn.btn_wide::before {
    height: 8rem;
    width: 6rem;
  }
}
.cta_btn.btn_wide:hover {
  color: var(--white);
}
.cta_btn.btn_wide:hover strong {
  color: var(--white);
  transition-duration: 0.3s;
}

.balloon3-right-btm {
  position: relative;
  display: table-cell;
  vertical-align: middle;
  margin: 15rem 15px 15rem 0;
  padding: 0 5px;
  width: 27rem;
  height: 15rem;
  text-align: center;
  color: #fff;
  font-weight: bold;
  background: var(--red);
  border-radius: 50%;
  box-sizing: border-box;
  color: var(--white);
  line-height: 1.5;
  font-size: 2rem;
}
@media screen and (max-width: 765px) {
  .balloon3-right-btm {
    font-size: 1.6rem;
    width: 20rem;
    height: 10rem;
  }
}

.balloon3-right-btm:before {
  content: "";
  position: absolute;
  bottom: -8px;
  right: -8px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-left: 45px solid var(--red);
  z-index: 0;
  transform: rotate(45deg);
}

#first_view {
  margin: 0 auto;
}

#section01 {
  margin: 0 auto 1rem auto;
}

#section02_01 {
  margin: 0 auto 1rem auto;
}

#section02_02 {
  margin: 0 auto 1rem auto;
}

#section05 {
  margin: 0 auto 1rem auto;
  padding-top: 2rem;
}

#section06 {
  margin: 0 auto;
  padding-top: 2rem;
}

#section07 {
  margin: 0 auto;
  padding-top: 2rem;
}

.tel_btn {
  position: absolute;
  border-radius: 50%;
  background-color: #ffdb29;
  width: 12.7rem;
  height: 12.7rem;
  padding: 2rem;
  box-sizing: border-box;
  z-index: 100;
}
.tel_btn .text {
  font-size: 1.4rem;
  color: var(--red);
  text-align: center;
  font-weight: bold;
  line-height: 1.8;
}
.tel_btn .icon {
  text-align: center;
  font-size: 3.8rem;
  margin-top: 0.2rem;
  line-height: 1;
}

#mail_form_area {
  margin-top: 2rem;
}
#mail_form_area .title {
  font-size: 3.2rem;
  color: #fff;
  text-align: center;
  padding: 2rem 0 0 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, "Helvetica Neue", Arial, sans-serif;
}
@media screen and (max-width: 765px) {
  #mail_form_area .title {
    font-size: 1.8rem;
    padding-top: 4rem;
  }
}
#mail_form_area .attention {
  font-size: 1.6rem;
  text-align: center;
  color: var(--white);
}
#mail_form_area .title::before,
#mail_form_area .title::after {
  content: "▼";
  padding: 0 1rem;
}
#mail_form_area .container {
  background-color: #0068b7;
  padding: 7rem;
  box-sizing: border-box;
}
@media screen and (max-width: 765px) {
  #mail_form_area .container {
    padding: 0;
  }
}
#mail_form_area .form {
  text-align: left;
}
#mail_form_area .form .inner_wrap {
  padding: 6rem;
  background-color: #fff;
  margin-top: 4rem;
}
@media screen and (max-width: 765px) {
  #mail_form_area .form .inner_wrap {
    padding: 1rem;
  }
}
#mail_form_area .form .column2 {
  justify-content: flex-start;
  width: inherit;
}
@media screen and (max-width: 765px) {
  #mail_form_area .form .column2 {
    align-items: baseline;
  }
}
#mail_form_area .form .form_title {
  flex: 0 0 17rem;
  width: 17rem;
  padding-left: 1rem;
  font-family: "Sawarabi Gothic", sans-serif;
  font-size: 1.8rem;
}
@media screen and (max-width: 765px) {
  #mail_form_area .form .form_title {
    flex: 1 1 100%;
    font-size: 1.8rem;
  }
}
#mail_form_area .form .form_contents {
  width: 98%;
  box-sizing: border-box;
}
#mail_form_area .form .table {
  height: 6.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 2rem;
}
@media screen and (max-width: 765px) {
  #mail_form_area .form .table {
    margin-bottom: 3rem;
  }
}
#mail_form_area .form .double_item {
  flex-wrap: wrap;
  margin-bottom: 2rem;
  height: initial;
  gap: 2rem;
}
#mail_form_area .form .double_item .column2 {
  flex: 1 1 48%;
  margin-bottom: 2rem;
}
#mail_form_area .form .double_item .form_title {
  min-width: 13.5rem;
}
#mail_form_area .form input,
#mail_form_area .form select {
  height: 100%;
  width: -webkit-fill-available;
  font-size: 16.5px;
  padding: 10px;
  border-radius: 10px;
  color: #1d50a2;
  border: 1px solid #0068b7;
  box-sizing: border-box;
}
#mail_form_area .form .textarea_table .form_title {
  width: 100%;
  margin-bottom: 0.4rem;
}
#mail_form_area .form .textarea_table textarea {
  height: 12em;
  width: 100%;
  border-radius: 10px;
  border: 1px solid #0068b7;
  color: #1d50a2;
  font-size: 16.5px;
  padding: 1rem;
  box-sizing: border-box;
}
@media screen and (min-width: 766px) {
  #mail_form_area .form .textarea_table textarea {
    margin-left: 1rem;
  }
}
#mail_form_area .form select {
  background-image: linear-gradient(45deg, transparent 50%, #1d50a2 50%), linear-gradient(135deg, #1d50a2 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), 100% 0;
  background-size: 5px 5px, 5px 5px, 2.5em 2.5em;
  background-repeat: no-repeat;
  margin: 0;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
#mail_form_area .form select::-ms-expand {
  display: none;
}
#mail_form_area .form select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}
#mail_form_area .form .submit_area {
  text-align: center;
}
#mail_form_area .form .submit_area .submit_btn {
  background-color: #239dda;
  color: #fff;
  letter-spacing: 0.5em;
  font-weight: 700;
  font-size: 2rem;
  max-width: 35rem;
  height: 8rem;
  width: 100%;
  margin-bottom: 6rem;
  cursor: pointer;
  transition-duration: 0.3s;
}
#mail_form_area .form .submit_area .submit_btn:hover {
  background-color: var(--yellow);
  color: var(--deep_blue_secondary);
  transition-duration: 0.3s;
}
#mail_form_area .form .submit_area p {
  padding: 5rem 0;
}
#mail_form_area .form .submit_area p .agree_check {
  height: 3rem;
  width: 3rem;
  padding: 1rem;
  margin-right: 2rem;
  vertical-align: middle;
}
#mail_form_area .form .submit_area .agree_check_link {
  vertical-align: middle;
  font-size: 2rem;
  color: #fff;
}
@media screen and (max-width: 765px) {
  #mail_form_area .form .submit_area .agree_check_link {
    font-size: 1.6rem;
  }
}
#mail_form_area .form .submit_area .agree_check_link a {
  text-decoration: underline;
  color: #fff;
}

#thanks,
#privacypolicy {
  margin-top: 1rem;
}
#thanks h2:after,
#privacypolicy h2:after {
  display: none;
}
#thanks h2,
#privacypolicy h2 {
  margin: 0.5rem 0;
  text-align: left;
}
#thanks h3,
#privacypolicy h3 {
  font-size: 0.24rem;
  margin: 0.5rem 0;
}
#thanks ul,
#privacypolicy ul {
  padding-left: 1.5em;
}
#thanks li,
#privacypolicy li {
  list-style: disc;
}

@media screen and (max-width: 765px) {
  img {
    width: 100%;
  }
  body {
    min-width: 320px;
    color: var(--deep_blue_secondary);
  }
}
@media screen and (max-width: 765px) and (max-width: 320px) {
  body {
    min-width: 200px;
  }
}
@media screen and (max-width: 765px) {
  input[type=submit],
  input[type=button] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    -moz-appearance: button;
         appearance: button;
    border: none;
    box-sizing: border-box;
  }
  input[type=submit]::-webkit-search-decoration,
  input[type=button]::-webkit-search-decoration {
    display: none;
  }
  input[type=submit]::focus,
  input[type=button]::focus {
    outline-offset: -2px;
  }
  .wrap {
    width: 100vw;
    overflow: hidden;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  li {
    list-style: none;
  }
  .container {
    padding: 0 0.2rem;
  }
  .paragraph p {
    font-family: "Sawarabi Gothic", sans-serif;
    font-size: 0.16rem;
  }
  h1,
  h2,
  h3,
  p {
    font-family: "Noto Sans JP", sans-serif;
  }
  .service_section_header {
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.5;
    padding: 0 0.2rem;
  }
  .service_section_header:after {
    content: "";
    display: block;
    width: 10rem;
    height: 2px;
    background-color: var(--deep_blue_secondary);
    margin: 0 auto;
    margin-top: 4rem;
    margin-bottom: 6rem;
  }
  .default_btn {
    display: table-cell;
    vertical-align: middle;
    background: var(--deep_blue_secondary);
    color: var(--white);
    height: 6rem;
    padding: 0.5rem 2rem;
    text-align: center;
    vertical-align: middle;
    box-sizing: border-box;
    font-size: 0.16rem;
    line-height: 1.2;
  }
  .section_header {
    font-size: 2rem;
    letter-spacing: 0.01em;
    font-weight: 700;
    text-align: left;
    display: inline-block;
    line-height: 1.75;
    color: var(--deep_blue_primary);
    padding: 2rem 2rem 0 2rem;
    width: 100%;
    box-sizing: border-box;
  }
  .section {
    margin-bottom: 1rem;
  }
  .btn_blue {
    display: inline-block;
    background-color: var(--light_blue_primary);
    height: 10.5rem;
    line-height: 10.5rem;
    margin-top: 6rem;
    color: var(--white);
    padding: 0 2rem;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2.4rem;
    font-weight: 500;
    text-align: center;
    border-radius: 1rem;
  }
  .btn_blue:hover {
    opacity: 0.8;
  }
  .read_more_btn {
    padding: 0 2rem;
    box-sizing: border-box;
    text-align: center;
  }
}
#thanks,
#privacypolicy {
  margin-top: 10rem;
  font-size: 1.6rem;
  line-height: 2;
  width: 100%;
  overflow: hidden;
}
#thanks .wrap_primary,
#privacypolicy .wrap_primary {
  margin-bottom: 8rem;
}
#thanks h2:after,
#privacypolicy h2:after {
  display: none;
}
#thanks h2,
#privacypolicy h2 {
  display: block;
  margin: 5rem 0;
  text-align: left;
  padding: 0;
}
#thanks h3,
#privacypolicy h3 {
  font-size: 2.4rem;
  margin: 5rem 0;
  padding: 0;
}
#thanks ul,
#privacypolicy ul {
  padding-left: 1.5em;
}
#thanks li,
#privacypolicy li {
  list-style: disc;
}

header.header {
  background-color: var(--deep_blue_secondary);
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  height: 8rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  align-items: center;
  color: var(--white);
  z-index: 9999;
}
@media screen and (max-width: 765px) {
  header.header {
    height: 6rem;
  }
}
header.header a {
  color: var(--white);
}
header .logo {
  max-width: 18rem;
}
header .logo a {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 765px) {
  header .logo {
    max-width: 10rem;
  }
}
header .logo img {
  width: 100%;
}
header .tel_btn_pc {
  font-size: 3rem;
  font-weight: bold;
  padding-top: 2rem;
  letter-spacing: -1px;
}
header .tel_btn_pc span {
  line-height: 0;
  font-weight: inherit;
  font-size: 1.6rem;
  text-align: center;
  display: block;
  letter-spacing: 2px;
}
@media screen and (max-width: 1200px) {
  header .tel_btn_pc {
    display: none;
  }
}
@media screen and (min-width: 1201px) {
  header .tel_btn_sp {
    display: none;
  }
}
header .tel_btn_sp a {
  position: relative;
  width: inherit;
  height: 10rem;
  padding: 2rem;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row-reverse;
  background-color: var(--yellow);
  width: 80%;
  margin: 2rem auto 0 auto;
  border-radius: 2rem;
}
@media screen and (max-width: 460px) {
  header .tel_btn_sp a {
    width: 98%;
  }
}
header .tel_btn_sp .text {
  font-weight: bold;
  text-align: center;
  font-size: 2rem;
  color: var(--deep_blue_secondary);
}
header .tel_btn_sp .icon {
  text-align: center;
  font-size: 3.8rem;
  margin-top: 0.05rem;
  color: var(--deep_blue_secondary);
  margin-right: 2rem;
}
header .tel_btn_sp .balloon3-right-btm {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1.5em 15px 1.5em 0;
  padding: 0 5px;
  width: 17.8rem;
  height: 10rem;
  text-align: center;
  color: #fff;
  font-size: 1.3rem;
  font-weight: bold;
  background: var(--red);
  border-radius: 50%;
  box-sizing: border-box;
  line-height: 1.5;
  bottom: -1.1rem;
  font-family: "Noto Sans JP", sans-serif;
  bottom: -12rem;
}
header .tel_btn_sp .balloon3-right-btm::before {
  display: none;
}
header .tel_btn_sp .balloon3-right-btm::after {
  content: "";
  position: absolute;
  top: -12px;
  left: -24px;
  margin-top: -4px;
  border: 15px solid transparent;
  border-left: 51px solid var(--red);
  z-index: 0;
  transform: rotate(230deg);
}

.menu_list {
  display: flex;
  align-items: stretch;
  gap: 1rem;
}
.menu_list .menu_item a {
  font-size: 1.3rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  height: 100%;
  box-sizing: border-box;
  line-height: 1.3;
}

@media screen and (max-width: 1200px) {
  .slide_menu {
    background-color: var(--deep_blue_secondary);
    position: absolute;
    top: 8rem;
    left: 0;
    width: 100%;
    height: 100vh;
    transform: translateX(200%);
    transition-duration: 0.3s;
  }
}
@media screen and (max-width: 765px) {
  .slide_menu {
    top: 6rem;
  }
}
@media screen and (max-width: 1200px) {
  .slide_menu .menu_list {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (max-width: 1200px) {
  .slide_menu .menu_list .menu_item a {
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 1201px) {
  .drawer_menu_icon {
    display: none;
  }
}

.drawer_open {
  display: flex;
  height: 10vh;
  width: 50px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 100;
  cursor: pointer;
}
.drawer_open span,
.drawer_open span::before,
.drawer_open span::after {
  content: "";
  display: block;
  height: 2px;
  width: 30px;
  border-radius: 3px;
  background: var(--white);
  transition: 0.5s;
  position: absolute;
}
.drawer_open span::before {
  bottom: 8px;
}
.drawer_open span::after {
  top: 8px;
}

@media screen and (min-width: 1201px) {
  .drawer_open {
    display: none;
  }
}

.nav_open {
  transform: translateX(0%);
  transition-duration: 0.3s;
}
.nav_open span {
  background: rgba(255, 255, 255, 0);
}
.nav_open span::before {
  bottom: 0;
  transform: rotate(45deg);
}
.nav_open span::after {
  top: 0;
  transform: rotate(-45deg);
}

footer {
  background-color: var(--light_blue_secondary);
  color: var(--white);
  text-align: center;
  font-size: 1.3rem;
  padding: 1rem 0;
}
footer .infomation {
  font-size: 2rem;
  text-align: center;
}
footer .infomation strong {
  font-weight: bold;
  margin-right: 1em;
}

.front-page .firstview {
  position: relative;
  overflow: hidden;
  color: var(--white);
  padding: 4rem 0 0 0;
}
@media screen and (max-width: 765px) {
  .front-page .firstview {
    padding: 2rem 0 0 0;
  }
}
@media screen and (max-width: 765px) {
  .front-page .firstview .wrap_primary {
    padding: 0;
  }
}
.front-page .firstview .column2 {
  justify-content: space-between;
  align-items: normal;
}
@media screen and (max-width: 895px) {
  .front-page .firstview .column2 {
    flex-direction: column-reverse;
  }
}
.front-page .firstview .column2 .col {
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 860px) {
  .front-page .firstview .column2 .col.primary {
    width: 100%;
  }
}
@media screen and (min-width: 896px) {
  .front-page .firstview .column2 .col {
    width: 50%;
  }
}
.front-page .firstview .sub_copy {
  font-size: 1.8rem;
  font-weight: bold;
}
@media screen and (max-width: 765px) {
  .front-page .firstview .sub_copy {
    padding: 0 2rem;
  }
}
.front-page .firstview .sub_copy::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--white);
  margin: 2rem 0;
}
@media screen and (max-width: 765px) {
  .front-page .firstview .sub_copy::after {
    margin: 1rem 0;
  }
}
.front-page .firstview .main_copy {
  font-size: 3.8rem;
  font-weight: bold;
  margin-bottom: 3.6rem;
}
@media screen and (max-width: 765px) {
  .front-page .firstview .main_copy {
    padding: 0 2rem;
    font-size: 2.4rem;
    margin-bottom: 1rem;
  }
}
.front-page .firstview .main_copy strong {
  color: var(--yellow);
  font-weight: inherit;
}
.front-page .firstview .info {
  display: flex;
  position: relative;
  padding-bottom: 20rem;
  padding-top: 3rem;
  box-sizing: border-box;
}
@media screen and (max-width: 765px) {
  .front-page .firstview .info {
    padding: 0 2rem 23rem 2rem;
  }
}
.front-page .firstview .info .deco_photo {
  max-width: 30rem;
  position: absolute;
  left: auto;
  right: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 765px) {
  .front-page .firstview .info .deco_photo {
    max-width: 20rem;
  }
}
.front-page .firstview .info .deco_photo img {
  width: 100%;
  vertical-align: bottom;
  position: relative;
  right: -13rem;
}
@media screen and (max-width: 895px) {
  .front-page .firstview .info .deco_photo img {
    right: 0;
  }
}
.front-page .firstview .info .area {
  font-weight: bold;
  line-height: 2;
}
.front-page .firstview .info .tel_btn {
  left: 0;
  bottom: 4rem;
}
@media screen and (max-width: 765px) {
  .front-page .firstview .info .tel_btn {
    left: 1rem;
  }
}
.front-page .firstview .info .tel_btn .icon {
  color: var(--deep_blue_secondary);
}
.front-page .firstview .service_item {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 895px) {
  .front-page .firstview .service_item {
    padding: 0 1rem 1rem 1rem;
    gap: 1rem;
  }
}
.front-page .firstview .service_item .item_list {
  width: 16.6rem;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.75);
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
}
@media screen and (max-width: 765px) {
  .front-page .firstview .service_item .item_list {
    width: 15.6rem;
  }
}
.front-page .firstview .service_item .item_list .image {
  width: 100%;
  height: 100%;
}
.front-page .firstview .service_item .item_list .image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 101%;
  height: 100%;
  vertical-align: middle;
}
.front-page .firstview .service_item .item_list .text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.5rem;
  box-sizing: border-box;
  background-color: var(--red);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
}
.front-page .firstview .background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -100;
}
.front-page .firstview .background::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(29, 80, 162, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: multiply;
}
.front-page .firstview .background img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.front-page .section01 {
  padding: 4rem 0 8rem 0;
}
@media screen and (max-width: 765px) {
  .front-page .section01 {
    padding: 4rem 0;
  }
}
.front-page .service_info {
  position: relative;
}
.front-page .service_info:not(:last-of-type) {
  margin-bottom: 4rem;
}
@media screen and (min-width: 889px) {
  .front-page .service_info:nth-of-type(even) .image_area {
    right: 0;
    left: auto;
  }
  .front-page .service_info:nth-of-type(even) .text_area {
    padding: 2rem 8rem 2rem 2rem;
    margin: 0;
  }
}
.front-page .service_info .image_area {
  flex: 0 0 30%;
  max-width: 30rem;
  height: 25rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
@media screen and (max-width: 890px) {
  .front-page .service_info .image_area {
    position: relative;
    width: 80%;
    margin: auto;
    z-index: -10;
  }
}
.front-page .service_info .image_area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.front-page .service_info .text_area {
  background-color: var(--white);
  flex: 0 0 60%;
  padding: 2rem 2rem 2rem 8rem;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
  color: var(--deep_blue_secondary);
  margin: 0 0 0 auto;
}
@media screen and (max-width: 890px) {
  .front-page .service_info .text_area {
    padding: 2rem;
    margin-top: -3rem;
  }
}
.front-page .service_info .text_area .title {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
.front-page .service_info .text_area .description {
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 890px) {
  .front-page .service_info .column2 {
    flex-direction: column;
  }
}

.lower_page .firstview {
  position: relative;
  overflow: hidden;
  color: var(--white);
  padding: 4rem 0;
}
@media screen and (max-width: 765px) {
  .lower_page .firstview {
    padding: 2rem 0 0 0;
  }
}
.lower_page .firstview .wrap_primary {
  position: relative;
}
@media screen and (max-width: 765px) {
  .lower_page .firstview .wrap_primary {
    padding: 0;
  }
}
@media screen and (min-width: 764px) {
  .lower_page .firstview .inner_wrap {
    display: flex;
  }
}
@media screen and (min-width: 764px) {
  .lower_page .firstview .inner_wrap div {
    flex: 0 0 50%;
  }
}
@media screen and (max-width: 765px) {
  .lower_page .firstview .inner_wrap .text_area {
    padding: 0 2rem;
  }
}
.lower_page .firstview .inner_wrap .image_area {
  padding: 0 2rem;
}
.lower_page .firstview .inner_wrap .image_area img {
  width: 30rem;
  height: 30rem;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 765px) {
  .lower_page .firstview .inner_wrap .image_area img {
    width: 20rem;
    height: 20rem;
    margin: 3rem 0;
  }
}
.lower_page .firstview .page_title {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 3.4rem;
}
@media screen and (max-width: 900px) {
  .lower_page .firstview .page_title {
    font-size: 2rem;
  }
}
.lower_page .firstview .main_copy {
  font-size: 3.8rem;
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 1.57;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, "Helvetica Neue", Arial, sans-serif;
}
@media screen and (max-width: 765px) {
  .lower_page .firstview .main_copy {
    font-size: 2.8rem;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 900px) {
  .lower_page .firstview .main_copy br {
    display: none;
  }
}
.lower_page .firstview .main_copy strong {
  color: var(--yellow);
  font-weight: inherit;
}
.lower_page .firstview .lead_text {
  font-size: 2rem;
}
.lower_page .firstview .lead_text.small {
  font-size: 1.4rem;
  font-weight: bold;
}
.lower_page .firstview .tel_btn {
  right: 1rem;
  bottom: 0;
}
.lower_page .firstview .tel_btn .icon {
  color: var(--deep_blue_secondary);
}
.lower_page .firstview .background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -100;
}
.lower_page .firstview .background::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(29, 80, 162, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: multiply;
}
.lower_page .firstview .background img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.lower_page .index_list {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: baseline;
  padding: 2rem 0;
  flex-wrap: wrap;
}
.lower_page .index_list .list_item a {
  white-space: nowrap;
  background-color: var(--deep_blue_secondary);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  flex-direction: column;
  flex: 1 0 auto;
  padding: 1rem 2rem;
  box-sizing: border-box;
}
.lower_page .index_list .list_item a:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-top: 13px solid #ffffff;
  border-bottom: 0;
}
.lower_page .section_headline {
  font-size: 4.2rem;
  font-weight: bold;
  padding: 3rem 0;
  text-align: center;
}
@media screen and (max-width: 765px) {
  .lower_page .section_headline {
    font-size: 3rem;
  }
}
.lower_page .add_attention {
  background-color: var(--yellow);
  color: var(--deep_blue_secondary);
  padding: 3rem 0;
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
}
@media screen and (max-width: 765px) {
  .lower_page .add_attention {
    font-size: 2rem;
  }
}
.lower_page .section {
  padding-bottom: 3rem;
}
.lower_page .section.target {
  position: relative;
  color: var(--white);
  padding: 7rem 0;
}
.lower_page .section.target .section_title {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
.lower_page .section.target .column2 {
  align-items: center;
}
@media screen and (min-width: 764px) {
  .lower_page .section.target .column2 div {
    width: 50%;
  }
}
@media screen and (max-width: 765px) {
  .lower_page .section.target .check_list {
    margin-bottom: 3rem;
  }
}
.lower_page .section.target .background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -100;
}
.lower_page .section.target .background::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.35);
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: multiply;
}
.lower_page .section.target .background img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.lower_page .section.price small {
  font-size: 1.4rem;
  line-height: 1.5;
  display: inline-block;
}
.lower_page .simple_list {
  background-color: var(--deep_blue_secondary);
  color: var(--white);
  padding: 2.5rem;
  width: 100%;
  box-sizing: border-box;
}
.lower_page .simple_list .list_item {
  font-size: 1.8rem;
  font-weight: bold;
}
.lower_page .check_list .list_item {
  color: var(--white);
  font-size: 1.8rem;
  font-weight: bold;
  display: flex;
  align-items: baseline;
}
.lower_page .check_list .list_item::before {
  content: "";
  flex: 0 0 2rem;
  width: 2rem;
  height: 2rem;
  display: block;
  background-image: url(../../image/checkbox_icon_white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 2rem;
  position: relative;
  top: 3px;
}
.lower_page .check_list.blue .list_item {
  color: var(--deep_blue_secondary);
}
.lower_page .check_list.blue .list_item::before {
  background-image: url(../../image/checkbox_icon_blue.svg);
}
.lower_page .circle_image {
  align-items: center;
}
@media screen and (max-width: 765px) {
  .lower_page .circle_image {
    gap: 3rem;
  }
}
.lower_page .circle_image .text_area {
  width: 50%;
  font-size: 2.4rem;
  color: var(--deep_blue_secondary);
  font-weight: bold;
  line-height: 2;
}
.lower_page .circle_image .text_area strong {
  color: var(--red);
  font-weight: bold;
}
.lower_page .circle_image .text_area.small {
  font-size: 2.2rem;
}
@media screen and (max-width: 765px) {
  .lower_page .circle_image .text_area {
    width: 100%;
    font-size: 2rem;
  }
}
.lower_page .circle_image .text_area a {
  text-decoration: underline;
  color: var(--red);
  display: inline-block;
  margin-top: 2rem;
}
.lower_page .circle_image .text_area a:hover {
  color: initial;
  text-decoration: none;
}
.lower_page .circle_image .imaeg_area {
  border-radius: 50%;
  max-width: 30rem;
  max-height: 30rem;
  overflow: hidden;
  margin: 0 auto;
}
.lower_page .circle_image .imaeg_area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.lower_page .add_text {
  margin-top: 2rem;
}
.lower_page .add_text .lead_text {
  font-size: 2.4rem;
  font-weight: bold;
}
.lower_page .add_text .check_list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}
@media screen and (min-width: 766px) {
  .lower_page .add_text .check_list .list_item {
    width: 48%;
  }
}
.lower_page .red {
  color: var(--red);
}
.lower_page .content_list {
  display: flex;
  justify-content: center;
  gap: 4rem;
  padding: 3rem 0;
  background-color: var(--deep_blue_secondary);
  flex-wrap: wrap;
}
.lower_page .content_list .content_item {
  flex: 0 0 30rem;
  margin-top: 0.5rem;
  width: 30rem;
  height: 30rem;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #1d50a2;
}
.lower_page .content_list .content_item .text_area {
  width: inherit;
  vertical-align: middle;
  border-bottom: 1px solid #1d50a2;
  padding: 1.5rem;
  background-color: var(--white);
  width: 100%;
  box-sizing: border-box;
}
.lower_page .content_list .content_item .text_area .title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 0.5rem;
  width: 100%;
}
.lower_page .content_list .content_item .text_area .desc {
  height: 6em;
  font-size: 1.6rem;
  text-align: left;
  letter-spacing: 0;
  line-height: 1.5;
}
.lower_page .content_list .content_item .img_area {
  width: 100%;
  height: 15rem;
}
.lower_page .content_list .content_item .img_area img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.lower_page .other_page_nav {
  margin-bottom: 8rem;
}
.lower_page .other_page_nav .wrap_primary {
  border-top: 2px solid var(--deep_blue_secondary);
}
.lower_page .other_page_nav .section_header {
  color: var(--red);
  font-size: 3.2rem;
  font-weight: bold;
  margin-bottom: 3rem;
  padding-top: 3rem;
}
.lower_page .banner_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 3rem;
}
@media screen and (max-width: 765px) {
  .lower_page .banner_list {
    justify-content: center;
  }
}
.lower_page .banner_list .list_item {
  flex: 0 0 30rem;
  position: relative;
  height: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lower_page .banner_list .list_item .title {
  font-size: 1.4rem;
  color: var(--white);
  font-weight: bold;
  text-align: center;
}
.lower_page .banner_list .list_item .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.7);
}
.lower_page .banner_list .list_item .background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.lower_page .banner_list .list_item .background::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--deep_blue_secondary);
  opacity: 0.5;
  mix-blend-mode: multiply;
  transition-duration: 0.3s;
}
.lower_page .banner_list a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.lower_page .banner_list a:hover .background::before {
  opacity: 0.2;
  transition-duration: 0.3s;
}

.cleaning_page .area {
  margin-bottom: 6rem;
}
.cleaning_page .area .title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1em;
}
.cleaning_page .area .detail {
  font-size: 1.6rem;
}
.cleaning_page main img {
  width: 100%;
  vertical-align: bottom;
}
.cleaning_page #section02,
.cleaning_page #section03,
.cleaning_page #section04,
.cleaning_page #section05 {
  margin-top: 8rem;
}
.cleaning_page .main_contents_area {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 8rem;
}
.cleaning_page .content_item {
  flex: 0 0 30rem;
  margin-top: 5rem;
  width: 30rem;
  height: 30rem;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #1d50a2;
}
@media screen and (max-width: 765px) {
  .cleaning_page .content_item {
    margin-top: 2rem;
  }
}
.cleaning_page .content_item .content_item:nth-child(3n) {
  margin-right: 0;
}
.cleaning_page .content_item .content_item:nth-child(5n) {
  margin-right: 0;
}
.cleaning_page .content_item .text_area {
  width: inherit;
  height: 12.5rem;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  border-bottom: 1px solid #1d50a2;
}
.cleaning_page .content_item .text_area p {
  font-size: 2rem;
  line-height: 1.6;
}
.cleaning_page .content_item .img_area {
  width: 100%;
}
.cleaning_page .content_item .img_area img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 120%;
}
.cleaning_page #section01 {
  width: 100%;
  height: 100vh;
  min-height: 700px;
  position: relative;
}
@media screen and (max-width: 765px) {
  .cleaning_page #section01 {
    height: initial;
  }
}
.cleaning_page #section01 h2::after {
  display: none;
}
.cleaning_page #section01 .background {
  background-image: url(../image/cleaning/section01_bg.jpg);
  background-size: cover;
  background-position: center;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -100;
}
.cleaning_page #section01 .background .overscreen {
  background-color: rgba(0, 0, 0, 0.2);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.cleaning_page #section01 .inner_container {
  max-width: 100rem;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
  padding: 0 2rem;
}
.cleaning_page #section01 .section_header {
  margin-bottom: 10vh;
  color: #fff;
}
@media screen and (max-width: 765px) {
  .cleaning_page #section01 .section_header {
    margin-bottom: 3rem;
  }
}
.cleaning_page #section01 .contents {
  width: 100%;
  max-width: 1000px;
}
.cleaning_page #section01 .contents li {
  font-size: 2rem;
  margin-bottom: 1.6rem;
  font-weight: 600;
  font-family: "Noto Sans JP" "Sawarabi Gothic" "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, "Helvetica Neue", Arial, sans-serif;
}
.cleaning_page #section01 .contents li:before {
  content: "\f14a";
  display: inline-block;
  margin-right: 2rem;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 2rem;
}
.cleaning_page #section01 .contents li:last-child {
  margin-bottom: 0;
}
.cleaning_page #section02_01,
.cleaning_page #section02_02 {
  margin-top: 8rem;
  max-width: 100rem;
}
.cleaning_page #section02_01 .header_area,
.cleaning_page #section02_02 .header_area {
  text-align: center;
}
@media screen and (max-width: 765px) {
  .cleaning_page #section02_01 .header_area,
  .cleaning_page #section02_02 .header_area {
    margin-bottom: 4rem;
  }
}
.cleaning_page #section02_01 .header_area span,
.cleaning_page #section02_02 .header_area span {
  color: var(--red);
  display: inline-block;
  position: relative;
  font-weight: bold;
}
.cleaning_page #section02_01 .header_area span::before, .cleaning_page #section02_01 .header_area span::after,
.cleaning_page #section02_02 .header_area span::before,
.cleaning_page #section02_02 .header_area span::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 1.5em;
  background-color: var(--red);
  position: relative;
  top: 0.5em;
}
.cleaning_page #section02_01 .header_area span::before,
.cleaning_page #section02_02 .header_area span::before {
  margin-right: 1rem;
  transform: rotate(-20deg);
}
.cleaning_page #section02_01 .header_area span::after,
.cleaning_page #section02_02 .header_area span::after {
  margin-left: 1rem;
  transform: rotate(20deg);
}
.cleaning_page #section02_01 .image_area,
.cleaning_page #section02_02 .image_area {
  margin-top: 4rem;
  width: 100%;
  min-height: 30rem;
}
.cleaning_page #section02_01 .image_area .col,
.cleaning_page #section02_02 .image_area .col {
  position: relative;
}
.cleaning_page #section02_01 .image_area .over_screen,
.cleaning_page #section02_02 .image_area .over_screen {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.cleaning_page #section02_01 .image_area .black,
.cleaning_page #section02_02 .image_area .black {
  background-color: rgba(0, 0, 0, 0.2);
}
.cleaning_page #section02_01 .image_area .white,
.cleaning_page #section02_02 .image_area .white {
  background-color: rgba(255, 255, 255, 0.2);
}
.cleaning_page #section02_01 .text_area,
.cleaning_page #section02_02 .text_area {
  padding: 5rem;
  border: 1px solid #1d50a2;
}
@media screen and (max-width: 765px) {
  .cleaning_page #section02_01 .text_area,
  .cleaning_page #section02_02 .text_area {
    padding: 3rem 2rem;
  }
}
.cleaning_page #section02_01 .text_area p,
.cleaning_page #section02_02 .text_area p {
  font-size: 1.6rem;
  line-height: 2.5;
}
.cleaning_page #section02_01 .text_area strong,
.cleaning_page #section02_02 .text_area strong {
  font-size: 2.4rem;
  line-height: 2;
}
@media screen and (max-width: 765px) {
  .cleaning_page #section02_01 .text_area strong,
  .cleaning_page #section02_02 .text_area strong {
    font-size: 1.8rem;
  }
}
.cleaning_page #section02_01 .text_area span,
.cleaning_page #section02_02 .text_area span {
  color: #d95f23;
  font-size: 2rem;
}
@media screen and (max-width: 765px) {
  .cleaning_page #section02_01 .text_area span,
  .cleaning_page #section02_02 .text_area span {
    font-size: 1.8rem;
  }
}
.cleaning_page #section02_01 .column2 {
  justify-content: center;
}
.cleaning_page #section02_01 .col {
  height: 30rem;
}
@media screen and (max-width: 765px) {
  .cleaning_page #section02_01 .col {
    height: initial;
  }
}
.cleaning_page #section02_01 .col img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
}
.cleaning_page #section02_02 .bg_yellow {
  background: #ffdb29;
}
.cleaning_page #section02_02 .col {
  width: 50%;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 765px) {
  .cleaning_page #section02_02 .col {
    width: 100%;
  }
}
.cleaning_page #section02_02 .col:first-child .col_head,
.cleaning_page #section02_02 .col:first-child .comment {
  border-right: none;
}
.cleaning_page #section02_02 .col_head {
  background-color: #239dda;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 600;
  height: 8rem;
  line-height: 8rem;
  border: 1px solid #1d50a2;
  text-align: center;
}
.cleaning_page #section02_02 .comment {
  border: 1px solid #1d50a2;
  border-top: none;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  font-family: "Sawarabi Gothic", sans-serif;
  color: #707070;
  font-size: 2.4rem;
  line-height: 2.08;
  height: 26rem;
  width: 48%;
}
.cleaning_page #section02_02 .comment strong {
  color: #d95f23;
  font-size: 3.2rem;
}
.cleaning_page #section02_02 .read_more_btn {
  text-align: center;
}
.cleaning_page #section03 {
  padding: 8rem auto;
  background-image: url(../image/cleaning/section03_bg.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
  height: auto;
  padding-bottom: 6rem;
}
.cleaning_page #section03 .main_text_area {
  background: #fff;
  max-width: 100rem;
  margin: 0 auto;
  text-align: center;
  box-sizing: border-box;
  padding: 6rem;
}
@media screen and (max-width: 765px) {
  .cleaning_page #section03 .main_text_area {
    padding: 2rem;
  }
}
.cleaning_page #section03 .main_text_area .primary {
  color: #707070;
  font-size: 2.4rem;
  line-height: 2.08;
  font-weight: 700;
}
@media screen and (max-width: 765px) {
  .cleaning_page #section03 .main_text_area .primary {
    font-size: 1.8rem;
  }
  .cleaning_page #section03 .main_text_area .primary br {
    display: none;
  }
}
.cleaning_page #section03 .main_text_area .secondary {
  font-size: 3.2rem;
  color: #1d50a2;
  line-height: 1.85;
  font-weight: 700;
  letter-spacing: 0.26em;
  margin-top: 2.4rem;
}
@media screen and (max-width: 765px) {
  .cleaning_page #section03 .main_text_area .secondary {
    font-size: 2.4rem;
    letter-spacing: 0.1em;
  }
  .cleaning_page #section03 .main_text_area .secondary br {
    display: none;
  }
}
.cleaning_page #section03 .sub_text_area {
  margin-left: -0.7rem;
  margin-bottom: -0.5rem;
  padding-top: 0.1rem;
  font-family: "Noto Sans JP", sans-serif;
}
.cleaning_page #section04 {
  padding: 1rem 0;
}
.cleaning_page #section04 .sub_text_area {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
}
.cleaning_page #section04 .img_area .img03 {
  width: 100% !important;
  height: 100%;
}
.cleaning_page #section04 .main_contents_area {
  gap: 3rem;
  justify-content: center;
}
.cleaning_page .eyecatch {
  width: 100%;
  height: 50rem;
  overflow: hidden;
  margin-top: 8rem;
}
@media screen and (max-width: 765px) {
  .cleaning_page .eyecatch {
    height: initial;
  }
}
.cleaning_page .eyecatch img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
  top: -6rem;
  position: relative;
}
.cleaning_page #section05 .table_area {
  position: relative;
}
.cleaning_page #section05 .balloon3-right-btm {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -10rem 0 -1rem auto;
  padding: 0 1rem;
  right: -10rem;
  width: 40rem;
  height: 15rem;
  text-align: center;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  background: #ffdb29;
  border-radius: 50%;
  box-sizing: border-box;
  color: #d95f23;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 900px) {
  .cleaning_page #section05 .balloon3-right-btm {
    margin: 0 1rem 0 auto;
    right: 0;
    width: 30rem;
  }
}
.cleaning_page #section05 .balloon3-right-btm::before {
  content: "";
  display: none;
}
.cleaning_page #section05 .balloon3-right-btm::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 8px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-left: 70px solid #ffdb29;
  z-index: 0;
  transform: rotate(-225deg);
}
@media screen and (max-width: 900px) {
  .cleaning_page #section05 .balloon3-right-btm::after {
    transform: rotate(38deg);
    right: 8px;
    left: auto;
  }
}
.cleaning_page #section05 .content_item {
  height: 25rem;
}
.cleaning_page #section05 .content_item .img_area {
  height: 15rem;
  overflow: hidden;
}
.cleaning_page #section05 .content_item .text_area {
  height: 9.5rem;
  border-bottom: none;
  border-top: 1px solid #1d50a2;
}
.cleaning_page #section05 .option_service {
  padding: 4rem 6rem;
  margin-top: 4rem;
  border: 1px solid #1d50a2;
}
.cleaning_page #section05 .option_service .head {
  margin-bottom: 4rem;
  font-size: 2rem;
}
.cleaning_page #section05 .commment {
  margin-top: 4rem;
}
.cleaning_page #section05 .prace_area {
  margin-top: 10rem;
}
.cleaning_page #section05 .prace_area .add_text {
  font-size: 2rem;
}
.cleaning_page .pattern_title {
  font-size: 2.4rem;
  display: block;
  margin: 0 auto;
  text-align: left;
  margin-bottom: 4rem;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 6rem;
}
.cleaning_page .pattern_table {
  width: 100%;
  font-size: 2rem;
}
.cleaning_page .pattern_table tr {
  height: 6.3rem;
  line-height: 6.3rem;
  text-align: center;
}
.cleaning_page .pattern_table th {
  background-color: #00a0e9;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
}
.cleaning_page .pattern_table th,
.cleaning_page .pattern_table td {
  border: 1px solid #1d50a2;
  font-family: "Noto Sans JP", sans-serif;
}
.cleaning_page #section05_add {
  position: relative;
  height: auto;
  padding-bottom: 6rem;
  margin-bottom: -10rem;
  margin-top: 8rem;
}
.cleaning_page #section05_add .wrap_primary {
  min-height: 30rem;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  max-width: 1040px;
}
.cleaning_page #section05_add .wrap_primary .background_image {
  height: 100%;
  width: inherit;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -100;
  right: 0;
}
.cleaning_page #section05_add .wrap_primary .background_image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 135%;
  height: 100%;
  top: 0;
  position: relative;
  -o-object-position: left;
     object-position: left;
}
.cleaning_page #section05_add .main_text_area {
  background: #fff;
  max-width: 61rem;
  text-align: left;
  box-sizing: border-box;
  padding: 4rem;
}
.cleaning_page #section05_add .main_text_area p {
  font-size: 2rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  line-height: 2;
}
.cleaning_page #section05_add .main_text_area strong {
  font-size: 2.4rem;
  color: #d95f23;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.cleaning_page #section05_add .sub_text_area {
  position: absolute;
  right: 0;
  top: 5rem;
  font-family: "Noto Sans JP", sans-serif;
  z-index: 100;
}
.cleaning_page #section06 .sub_comment {
  text-align: center;
  margin-top: 4rem;
  font-family: "Noto Sans JP", sans-serif;
}
.cleaning_page #section06 .pattern_item {
  margin-top: 6rem;
}
.cleaning_page #section06 th {
  text-align: left;
  padding-left: 6rem;
}
@media screen and (max-width: 765px) {
  .cleaning_page #section06 th {
    padding: 2rem;
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 2;
  }
}
.cleaning_page #section06 td {
  text-align: left;
  padding: 3rem;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0;
}
@media screen and (max-width: 765px) {
  .cleaning_page #section06 td {
    padding: 2rem;
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1.5;
  }
}
.cleaning_page #section07 .sub_comment {
  font-size: 2.4rem;
  margin-top: 10rem;
}
.cleaning_page #cta_tell_btn .balloon3-right-btm {
  background: #d95f23;
  color: #fff;
  bottom: -1em;
  z-index: 100;
  font-family: "Noto Sans JP", sans-serif;
}
.cleaning_page #cta_tell_btn .balloon3-right-btm::before {
  border-left: 45px solid #d95f23;
}
.cleaning_page #cta_tell_btn a {
  color: #1d50a2;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
}
.cleaning_page #cta_tell_btn a strong {
  color: #d95f23;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
}
.cleaning_page #cta_tell_btn a span {
  display: inline-block;
  position: absolute;
  bottom: -2em;
  left: 0;
  font-size: 1.6rem;
  text-align: center;
  width: 100%;
}
.cleaning_page #cta_tell_btn a:hover strong {
  color: #fff;
}
.cleaning_page #cta_tell_btn .btn_wide {
  font-family: "Noto Sans JP", sans-serif;
}
.cleaning_page #cta_tell_btn .btn_wide ::before {
  background-image: url(../image/cleaning/point_red.svg);
}
@media screen and (max-width: 765px) {
  .cleaning_page #section01 {
    margin: 0 auto 10rem auto;
  }
  .cleaning_page #section02_01 {
    margin: 0 auto 10rem auto;
  }
  .cleaning_page #section02_02 {
    margin: 0 auto 10rem auto;
  }
  .cleaning_page #section05 {
    margin: 0 auto 10rem auto;
    padding-top: 10rem;
  }
  .cleaning_page #section06 {
    margin: 0 auto 0 auto;
    padding-top: 10rem;
  }
  .cleaning_page #section07 {
    margin: 0 auto;
    padding-top: 10rem;
  }
}/*# sourceMappingURL=style.css.map */