/*######################################################################

		Base CSS

************************************************************************/

*,
*::before,
*::after {
  box-sizing: border-box;
  min-inline-size: 0;
}

:root {
  --font-size-12: .75rem;
  --font-size-14: .875rem;
  --font-size-16: 1rem;
  --font-size-18: 1.125rem;
  --font-size-21: 1.3125rem;
  --font-size-24: 1.5rem;
  --font-size-26: 1.625rem;
  --font-size-32: 2rem;
  --font-size-40: 2.5rem;
  --font-size-48: 3rem;
  --font-size-56: 3.5rem;
  --font-size-64: 4rem;
  --font-size-72: 4.5rem;
  --font-size-80: 5rem;
  --font-size-88: 5.5rem;
  --font-size-128: 8rem;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

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

body {
  color: #111;
  font-size: var(--font-size-18);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  line-height: 1.8;
  min-height: 100vh;
  overflow-x: clip;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

@media not all and (min-width: 768px){
  body {
    font-size: var(--font-size-15);
  }
}

.__serif {
  font-family: "Zen Old Mincho", serif;
}

h1, h2, h3, h4 {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
}

:where(ul, ol) {
  list-style: none;
  list-style-type: '';
  padding: unset;
  margin: 0;
}

h1, h2, h3, h4, button, input, label {
  line-height: 1.4;
}

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

:where(:any-link, button, [type='button'], [type='reset'], [type='submit'], label[for], select, summary, [role='tab'], [role='button']) {
  cursor: pointer;
}

:where(button, [type='button'], [type='reset'], [type='submit']) {
  touch-action: manipulation;
}

legend, fieldset {
  all: unset;
}

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

:target {
  scroll-margin-block: 5ex;
}

:focus:not(:focus-visible) {
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after, ::backdrop {
    background-attachment: scroll !important;
    transition-delay: 0s !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-delay: 0s !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

a {
  color: #111;
  text-decoration: none;
  transition: .3s;
}

a:hover {
  color: #111;
  text-decoration: none;
}

strong {
  color: #3077CB;
}


/*######################################################################

		Header

************************************************************************/
/*
	header-area
/////////////////////////////////////////////////////////*/

.header {
  position: fixed;
  top: 20px;
  left: 20px;
  width: calc(100% - 40px);
  z-index: 100;
}

.header__wrap {
  display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
  margin-inline: auto;
  padding: 20px 40px;
  width: 1300px;
  background-color: #fff;
  box-shadow: 0 4px 10px rgb(170 201 237 / .7);
  border-radius: 8px;
}

@media not all and (min-width: 1340px){
  .header__wrap {
    padding: 20px;
    width: 100%;
  }
}

.header__gnav-list {
  display: flex;
	justify-content: flex-end;
  align-items: center;
	flex-wrap: wrap;
  gap: 0 40px;
  font-weight: 700;
}

.header__gnav-list .__contact a {
  display: block;
  padding: 8px 24px;
  color: #fff;
  background-image: radial-gradient(#31A2E2 0%, #186A99 100%);
  border-radius: 50vh;
  transition: .3s;
}

@media (any-hover: hover) {
  .header__gnav-list .__contact a:hover {
    text-decoration: none;
    background-image: radial-gradient(#2189c4 0%, #04314b 100%);
  }
}

.header__gnav-list .__contact a:focus-visible {
  text-decoration: none;
  background-image: radial-gradient(#2189c4 0%, #04314b 100%);
}

@media not all and (min-width: 940px){
  .header__gnav-list .__text {
    display: block !important;
    position: absolute;
    margin: -1px;
    padding: 0;
    width: 1px;
    height: 1px;
    white-space: nowrap;
    border: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    contain: strict !important;
    opacity: 0 !important;
  }
}



/*######################################################################

		Contents

************************************************************************/

/*
	general
/////////////////////////////////////////////////////////*/

.hotels-lp-section {
  margin-bottom: 160px;
}

@media not all and (min-width: 768px){
  .hotels-lp-section {
    margin-bottom: 80px;
  }
}

.hotels-lp-section__area {
  margin-inline: auto;
  padding-inline: 20px;
  max-width: 1200px;
}

.hotels-lp-section__hgroup {
  display: flex;
  flex-direction: column;
  margin-bottom: 80px;
}

@media not all and (min-width: 768px){
  .hotels-lp-section__hgroup {
    margin-bottom: 40px;
  }
}

.hotels-lp-section__heading {
  order: 2;
  margin-bottom: 40px;
  font-size: var(--font-size-56);
  font-weight: 500;
  line-height: 1.2;
}

@media not all and (min-width: 940px){
  .hotels-lp-section__heading {
    margin-bottom: 30px;
    font-size: var(--font-size-40);
  }
}

@media not all and (min-width: 768px){
  .hotels-lp-section__heading {
    font-size: var(--font-size-32);
  }

  .hotels-lp-section__heading br {
    display: none;
  }
}

.hotels-lp-about__heading {
  color: #3077CB;
}

.hotels-lp-section__heading-en {
  order: 1;
  margin-bottom: 10px;
  color: #C8AD37;
  font-family: "Zen Old Mincho", serif;
}

.hotels-lp-section__text {
  order: 3;
}


/*
	lp
/////////////////////////////////////////////////////////*/

.hotels-lp-mv {
  position: relative;
  margin-bottom: 200px;
  padding-top: 120px;
}

@media not all and (min-width: 768px){
  .hotels-lp-mv {
    margin-bottom: 100px;
    padding-top: 100px;
  }
}

.hotels-lp-mv::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100vh;
  background-color: #E1EFFF;
  z-index: -1;
}

@media not all and (min-width: 768px){
  .hotels-lp-mv::after {
    top: auto;
    bottom: -40px;
    right: 0;
    width: 50%;
    height: 50vh;
  }
}

.hotels-lp-mv__wrap {
  display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.hotels-lp-mv__contents {
  display: flex;
  flex-direction: column;
  width: 35%;
  margin-top: 40px;
}

.hotels-lp-mv__image {
  width: 60%;
}

@media not all and (min-width: 1100px){
  .hotels-lp-mv__contents {
    width: 40%;
  }

  .hotels-lp-mv__image {
    width: 55%;
  }
}

@media not all and (min-width: 768px){
  .hotels-lp-mv__contents {
    margin-bottom: 40px;
    width: 100%;
  }

  .hotels-lp-mv__image {
    width: 100%;
  }
}

.hotels-lp-mv__heading {
  order: 2;
  margin-bottom: 40px;
  font-size: var(--font-size-56);
  font-weight: 500;
  line-height: 1.2;
}

.hotels-lp-mv__heading-en {
  order: 1;
  margin-bottom: 20px;
  color: #3077CB;
  font-weight: 600;
  text-transform: uppercase;
}

.hotels-lp-mv__text {
  order: 3;
  margin-bottom: 40px;
  font-size: var(--font-size-21);
}

@media not all and (min-width: 1100px){
  .hotels-lp-mv__heading {
    margin-bottom: 40px;
    font-size: var(--font-size-48);
  }
}

@media not all and (min-width: 768px){
  .hotels-lp-mv__heading {
    margin-bottom: 30px;
  }

  .hotels-lp-mv__heading-en {
    margin-bottom: 20px;
  }

  .hotels-lp-mv__text {
    margin-bottom: 30px;
    font-size: var(--font-size-18);
  }
}

@media not all and (min-width: 390px){
  .hotels-lp-mv__heading {
    font-size: var(--font-size-40);
  }

  .hotels-lp-mv__heading-en {
    font-size: var(--font-size-14);
  }

  .hotels-lp-mv__text {
    font-size: var(--font-size-16);
  }
}

.hotels-lp-mv__button {
  order: 4;
}

.hotels-lp-mv__button a {
  display: flex;
	justify-content: space-between;
  align-items: center;
	flex-wrap: wrap;
  padding: 20px 30px;
  color: #fff;
  font-size: var(--font-size-21);
  font-weight: 700;
  background-color: #316199;
  border-radius: 8px;
}

.hotels-lp-mv__button a::after {
  content: '';
  display: inline-block;
  width: 23px;
  height: 15px;
  background-image: url(../image/hotel-cleaning2601/hotels-lp-arrow.svg);
  background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

@media (any-hover: hover) {
  .hotels-lp-mv__button a:hover {
    background-color: #113155;
  }
}

.hotels-lp-mv__button a:focus-visible {
  background-color: #113155;
}

@media not all and (min-width: 768px){
  .hotels-lp-mv__button a {
    padding: 20px;
    font-size: var(--font-size-18);
  }
}

.hotels-lp-mv__image img {
  border-radius: 8px;
}

.hotels-lp-about__text {
  margin-bottom: 120px;
  max-width: 800px;
  font-size: var(--font-size-21);
}

.hotels-lp-about__text p {
  margin-bottom: 40px;
}

@media not all and (min-width: 768px){
  .hotels-lp-about__text {
    margin-bottom: 60px;
    font-size: var(--font-size-16);
  }

  .hotels-lp-about__text p {
    margin-bottom: 30px;
  }
}

.hotels-lp-about__flow-list {
  display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
  position: relative;
  margin-bottom: 80px;
  padding-bottom: 30px;
}

@media not all and (min-width: 768px){
  .hotels-lp-about__flow-list {
    margin-bottom: 40px;
    padding-left: 20px;
  }
}

.hotels-lp-about__flow-list::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 943px;
  height: 47px;
  background-image: url(../image/hotel-cleaning2601/hotels-lp-flow-arrow02.svg);
  background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
  z-index: 1;
}

@media not all and (min-width: 1000px){
  .hotels-lp-about__flow-list::after {
    width: 90%;
  }
}

@media not all and (min-width: 768px){
  .hotels-lp-about__flow-list::after {
    top: 50%;
    bottom: auto;
    left: 20px;
    transform: translateX(-50%) translateY(-50%) rotate(90deg);
    width: 600px;
  }
}

@media not all and (min-width: 568px){
  .hotels-lp-about__flow-list::after {
    width: 500px;
  }
}

.hotels-lp-about__flow-list li {
  position: relative;
  padding: 0 10px 40px;
  width: 24%;
  text-align: center;
  border-radius: 8px;
}

@media not all and (min-width: 768px){
  .hotels-lp-about__flow-list li {
    padding: 0 10px 30px;
    width: 100%;
  }
}

.hotels-lp-about__flow-list li:nth-child(1){
  background-color: #EEF5FC;
}
.hotels-lp-about__flow-list li:nth-child(2){
  background-color: #D6E8FE;
}
.hotels-lp-about__flow-list li:nth-child(3){
  background-color: #BDDBFF;
}
.hotels-lp-about__flow-list li:nth-child(4){
  background-color: #AAD0FE;
}

.hotels-lp-about__flow-list li:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  width: 41px;
  height: 64px;
  background-image: url(../image/hotel-cleaning2601/hotels-lp-flow-arrow01.svg);
  background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
  z-index: 1;
}

@media not all and (min-width: 768px){
  .hotels-lp-about__flow-list li:not(:last-child)::after {
    display: none;
  }
}

.hotels-lp-about__flow-list .__num {
  margin-block: -50px 10px;
  color: #3077CB;
  font-size: var(--font-size-48);
}

.hotels-lp-about__flow-list .__heading {
  margin-bottom: 20px;
  font-size: var(--font-size-26);
}

@media not all and (min-width: 1000px){
  .hotels-lp-about__flow-list .__num {
    margin-block: -30px 10px;
    font-size: var(--font-size-32);
  }

  .hotels-lp-about__flow-list .__heading {
    font-size: var(--font-size-21);
  }

  .hotels-lp-about__flow-list .__text {
    font-size: var(--font-size-16);
  }
}

.hotels-lp-about__box {
  padding: 40px;
  border: 8px solid #3077CB;
  border-radius: 8px;
}

.hotels-lp-about__box-heading {
  margin-bottom: 30px;
  font-size: var(--font-size-26);
  text-align: center;
}

.hotels-lp-about__box-text {
  font-size: var(--font-size-32);
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

@media not all and (min-width: 768px){
  .hotels-lp-about__box {
    padding: 30px 20px;
  }

  .hotels-lp-about__box-heading {
    margin-bottom: 20px;
    font-size: var(--font-size-21);
  }

  .hotels-lp-about__box-text {
    font-size: var(--font-size-26);
  }
}

@media not all and (min-width: 568px){
  .hotels-lp-about__box-text {
    text-align: left;
  }

  .hotels-lp-about__box-text br {
    display: none;
  }
}

.hotels-lp-problem__section {
  padding-block: 160px;
  background-color: #092545;
}

@media not all and (min-width: 768px){
  .hotels-lp-problem__section {
    padding-block: 80px;
  }
}

.hotels-lp-problem__hgroup {
  margin-inline: auto;
  max-width: 800px;
  color: #fff;
}

.hotels-lp-problem__contents {
  margin-inline: auto;
  max-width: 1000px;
}

.hotels-lp-problem__contents li {
  padding: 40px 80px;
  background-color: #EEF5FC;
  border-radius: 8px;
}

@media not all and (min-width: 768px){
  .hotels-lp-problem__contents li {
    padding: 30px 20px;
    background-color: #EEF5FC;
    border-radius: 8px;
  }
}

.hotels-lp-problem__contents li:not(:last-child) {
  margin-bottom: 20px;
}

.hotels-lp-problem__contents-heading {
  display: flex;
  align-items: flex-end;
	flex-wrap: wrap;
  gap: 0 10px;
  margin-bottom: 20px;
  color: #316199;
}

.hotels-lp-problem__contents-heading .__num {
  font-size: var(--font-size-21);
}

.hotels-lp-problem__contents-heading .__text {
  font-size: var(--font-size-32);
}

@media not all and (min-width: 768px){
  .hotels-lp-problem__contents-heading {
    align-items: flex-start;
    margin-bottom: 10px;
  }

  .hotels-lp-problem__contents-heading .__num {
    margin-top: 10px;
    width: 20px;
    font-size: var(--font-size-14);
  }

  .hotels-lp-problem__contents-heading .__text {
    width: calc(100% - 30px);
    font-size: var(--font-size-24);
  }
}

.hotels-lp-problem__contents-text {
  padding-inline: 35px;
}

@media not all and (min-width: 768px){
  .hotels-lp-problem__contents-text {
    padding-inline: 30px 0;
  }
}

.hotels-lp-cta__section {
  padding: 80px 0;
  background-image: url(../image/hotel-cleaning2601/hotels-lp-cta-bg.png);
  background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

@media not all and (min-width: 468px){
  .hotels-lp-cta__section {
    padding: 40px 0;
  }
}

.hotels-lp-cta-section__area {
  margin-inline: auto;
  padding-inline: 20px;
  max-width: 1000px;
}

.hotels-lp-cta__button a {
  display: flex;
	justify-content: space-between;
  align-items: center;
	flex-wrap: wrap;
  padding: 40px 80px;
  width: 100%;
  font-size: var(--font-size-32);
  background-color: #fff;
  border: 4px solid #fff;
  border-radius: 8px;
}

.hotels-lp-cta__button a::after {
  content: '';
  display: inline-block;
  width: 80px;
  height: 68px;
  background-image: url(../image/hotel-cleaning2601/hotels-lp-arrow-button.svg);
  background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

@media (any-hover: hover) {
  .hotels-lp-cta__button a:hover {
    border: 4px solid #316199;
  }
}

.hotels-lp-cta__button a:focus-visible {
  border: 4px solid #316199;
}

@media not all and (min-width: 940px){
  .hotels-lp-cta__button a {
    padding: 40px;
    font-size: var(--font-size-26);
  }
}

@media not all and (min-width: 768px){
  .hotels-lp-cta__button a {
    padding: 30px 20px;
    font-size: var(--font-size-21);
    line-height: 1.4;
  }

  .hotels-lp-cta__button a::after {
    width: 47px;
    height: 40px;
  }
}

@media not all and (min-width: 568px){
  .hotels-lp-cta__button a {
    font-size: var(--font-size-18);
  }

  .hotels-lp-cta__button a .__text {
    width: calc(100% - 67px);
  }

  .hotels-lp-cta__button a br {
    display: none;
  }
}

@media not all and (min-width: 390px){
  .hotels-lp-cta__button a .__text {
    margin-bottom: 20px;
    width: 100%;
  }

  .hotels-lp-cta__button a br {
    display: none;
  }

  .hotels-lp-cta__button a::after {
    margin-inline: auto;
  }
}

.hotels-lp-core-value__wrap {
  display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
  position: relative;
}

.hotels-lp-core-value__item {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 80px;
  width: 46%;
  background-image: linear-gradient(#F1F7FF 0, #B3D5FE 100%);
  border-radius: 48px;
}

.hotels-lp-core-value__icon {
  display: grid;
  place-content: center;
  width: 8%;
  color: #C8AD37;
  font-size: var(--font-size-56);
}

@media not all and (min-width: 940px){
  .hotels-lp-core-value__item {
    padding: 40px;
  }
}

@media not all and (min-width: 768px){
  .hotels-lp-core-value__item {
    padding: 40px;
    width: 100%;
    border-radius: 24px;
  }

  .hotels-lp-core-value__icon {
    width: 100%;
    font-size: var(--font-size-32);
  }
}

.hotels-lp-core-value__item .__heading {
  order: 2;
  margin-bottom: 40px;
  font-size: var(--font-size-56);
  text-align: center;
}

@media not all and (min-width: 940px){
  .hotels-lp-core-value__item .__heading {
    margin-bottom: 30px;
    font-size: var(--font-size-40);
  }
}

@media not all and (min-width: 768px){
  .hotels-lp-core-value__item .__heading {
    margin-bottom: 20px;
    font-size: var(--font-size-32);
  }
}

.hotels-lp-core-value__item .__heading-en {
  order: 1;
  margin-bottom: 10px;
  color: #3077CB;
  text-align: center;
}

.hotels-lp-core-value__item .__text {
  order: 3;
}

.hotels-lp-technique__wrap {
  display: flex;
	justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
	flex-wrap: wrap;
}

@media not all and (min-width: 568px){
  .hotels-lp-technique__wrap {
    align-items: flex-start;
    flex-direction: column;
  }
}

.hotels-lp-technique__wrap:not(:last-child) {
  margin-bottom: 40px;
}

@media not all and (min-width: 568px){
  .hotels-lp-technique__wrap:not(:last-child) {
    margin-bottom: 64px;
  }
}

.hotels-lp-technique__contents {
  width: 65%;
}

.hotels-lp-technique__image {
  width: 30%;
}

.hotels-lp-technique__heading {
  margin-bottom: 30px;
  font-size: var(--font-size-32);
}

@media not all and (min-width: 768px){
  .hotels-lp-technique__contents {
    width: 55%;
  }

  .hotels-lp-technique__image {
    margin-bottom: 30px;
    width: 40%;
  }

  .hotels-lp-technique__heading {
    margin-bottom: 20px;
    font-size: var(--font-size-24);
  }
}

@media not all and (min-width: 568px){
  .hotels-lp-technique__contents {
    display: contents;
    width: 100%;
  }

  .hotels-lp-technique__image {
    order: 2;
    width: 100%;
  }

  .hotels-lp-technique__heading {
    order: 1;
  }

  .hotels-lp-technique__text {
    order: 3;
  }
}

.hotels-lp-technique__image img {
  width: 100%;
  border-radius: 8px;
}

.hotels-lp-partner {
  position: relative;
  padding-top: 80px;
}

@media not all and (min-width: 768px){
  .hotels-lp-partner {
    margin-bottom: 0;
    padding-top: 0;
  }
}

.hotels-lp-partner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background-image: url(../image/hotel-cleaning2601/hotels-lp-partner-image.jpg);
  background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
  z-index: -1;
}

.hotels-lp-partner__box {
  margin-left: auto;
  padding: 80px;
  width: 70%;
  background-color: #fff;
}

@media not all and (min-width: 1100px){
  .hotels-lp-partner__box {
    padding: 64px 0 64px 40px;
  }
}

@media not all and (min-width: 768px){
  .hotels-lp-partner__box {
    padding: 0;
    width: 100%;
  }

  .hotels-lp-partner::after {
    display: block;
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: 480px;
  }
}

.hotels-lp-partner__heading {
  margin-bottom: 20px;
  font-size: var(--font-size-26);
}

.hotels-lp-partner__list {
  margin-bottom: 80px;
}

@media not all and (min-width: 768px){
  .hotels-lp-partner__heading {
    font-size: var(--font-size-21);
  }

  .hotels-lp-partner__list {
    margin-bottom: 40px;
  }
}

.hotels-lp-partner__list li {
  margin-bottom: 4px;
}

.hotels-lp-contact {
  padding-block: 160px;
  background-color: #092545;
}

@media not all and (min-width: 768px){
  .hotels-lp-contact {
    padding-block: 80px;
  }
}

.hotels-lp-contact .hotels-lp-section__hgroup {
  margin-inline: auto;
  width: 800px;
  color: #fff;
}

@media not all and (min-width: 868px){
  .hotels-lp-contact .hotels-lp-section__hgroup {
    width: 100%;
  }
}

.hotels-lp-contact__form {
  margin-inline: auto;
  padding: 80px 0;
  max-width: 1000px;
  background-color: #fff;
  border-radius: 8px;
}

@media not all and (min-width: 768px){
  .hotels-lp-contact__form {
    padding: 40px 0;
  }
}

.hotels-lp-contact__form-inner {
  margin-inline: auto;
  padding-inline: 20px;
  max-width: 800px;
}


/*######################################################################

		Footer

************************************************************************/

.footer__company {
  padding: 60px 10px;
  color: #fff;
  text-align: center;
  background-color: #333;
}

.footer__company--title {
  font-size: 14px;
}

.footer__company a {
  display: block;
  margin-inline: auto;
  width: fit-content;
  color: #fff;
  text-decoration: underline;
}

.footer__company a:hover {
  text-decoration: none;
}

.footer__company p {
  margin-bottom: 20px;
  font-size: 16px;
}

.footer__company p span {
  font-weight: bold;
}

@media not all and (min-width: 768px){
  .footer__company {
    padding: 40px 10px;
  }
}

.footer__group {
  padding: 60px 10px;
}

.footer__group--title {
  margin-bottom: 20px;
  text-align: center;
}

.footer__group ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.footer__group li:not(:last-child) {
  margin-right: 40px;
}

@media not all and (min-width: 568px){
  .footer__group li {
    width: 100%;
    text-align: center;
  }

  .footer__group li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.copyright {
  padding-bottom: 40px;
  font-size: 12px;
  text-align: center;
}

.totop {
  position: fixed;
  bottom: 210px;
  right: 10px;
  width: 40px;
  z-index: 100;
}

.totop a {
  display: block;
}

.totop img {
  display: block;
  width: 100%;
  height: auto;
}

.footer__section {
  position: relative;
  background-color: #fff;
}

.footer__ban {
  position: absolute;
  bottom: 0;
  right: 0;
}

.overlay,
.drawer-menu-container {
  display: none;
}

@media not all and (min-width: 868px){
  .overlay,
  .drawer-menu-container {
    display: block;
  }

  .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
  }

  .drawer-menu-container {
    position: fixed;
    left: 1rem;
    bottom: 1rem;
    z-index: 2;
  }

  .toggle-button {
    display: grid;
    place-content: center;
    width: 128px;
    height: 48px;
    color: #ffffff;
    background-image: radial-gradient(#31A2E2 0%, #186A99 100%);
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .drawer-menu {
    display: none;
    position: absolute;
    bottom: 100%;
    left: 0;
    margin-bottom: 0.5rem;
    padding: 32px;
    width: 240px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }

  .drawer-menu li {
    margin-bottom: 0.5rem;
  }

  .drawer-menu a {
    display: block;
    padding: 0.5rem 1rem;
    text-decoration: none;
    transition: background-color 0.3s;
  }
}

