@charset "UTF-8";
:root {
  --font-family-text: "M PLUS Rounded 1c", serif;
  --font-family-title: "M PLUS Rounded 1c", serif;
  --font-family-en: "M PLUS Rounded 1c", serif;
  --text-color: #000000;
  --text-dark-color: #666666;
  --loud-color: #199c7a;
  --loud-color2: #a08e04;
  --title-color: #000000;
  --menu-color: #6f6f6f;
  --primary-btn-color: #ffffff;
  --background-primary-btn: #1d1f23;
  --background-loud: #e8e7e3;
  --background-footer: #483923;
  --base-font-size: 3rem;
  --h1-font-size: 3.5rem;
  --h2-font-size: 5.6rem;
  --h3-font-size: 6rem;
}
@media (min-width: 768px) and (max-width: 991px) {
  .class {
    width: 60%;
  }
}
a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
button {
  background-color: transparent;
  outline: 0;
  border: 0;
  cursor: pointer;
  padding: 0;
  font-family: var(--font-family-text);
}
input {
  padding: 0;
  font-family: var(--font-family-text);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-title);
  font-weight: 900;
  color: var(--title-color);
  line-height: 1.4;
}
h1 {
  font-size: var(--h1-font-size);
}
h2 {
  font-size: var(--h2-font-size);
}
h3 {
  font-size: var(--h3-font-size);
}
a {
  color: var(--text-color);
  text-decoration: none;
}
a:visited {
  color: var(--text-color);
  text-decoration: none;
}
a:hover,
a:visited:hover {
  color: var(--loud-color);
  text-decoration: none;
}
a:focus {
  outline: 0;
  text-decoration: none;
}
.more {
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
@media (min-width: 769px) {
  .nav-bar-menu ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4rem;
  }
  .nav-bar-menu ul li a {
    display: block;
    font-size: 2.5rem;
    line-height: 4rem;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
  }
}
@media (max-width: 768px) {
  .nav-bar-menu {
    background: #fff;
    position: absolute;
    top: 9.1rem;
    left: 0;
    width: 100%;
    overflow: hidden;
    height: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    z-index: 9999;
  }
  .nav-bar-menu.is_active {
    opacity: 1;
    visibility: visible;
    height: auto;
  }
  .nav-bar-menu ul li {
    border-bottom: 1px solid var(--text-color);
  }
  .nav-bar-menu ul li a {
    display: block;
    line-height: 8rem;
    padding: 0 3rem;
    color: var(--text-color);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
  }
  .nav-bar-menu ul li a:hover {
    color: var(--loud-color);
  }
}
@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(200px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(200px);
  }
} /*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 0 0;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 0.7;
}
.hamburger.is-active:hover {
  opacity: 0.7;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::after,
.hamburger.is-active .hamburger-inner::before {
  background-color: #231815;
}
.hamburger-box {
  width: 5.8rem;
  height: 3.9rem;
  display: inline-block;
  position: relative;
}
.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -0.15rem;
}
.hamburger-inner,
.hamburger-inner::after,
.hamburger-inner::before {
  width: 5.8rem;
  height: 0.3rem;
  background-color: #231815;
  border-radius: 0;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::after,
.hamburger-inner::before {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -1.8rem;
}
.hamburger-inner::after {
  bottom: -1.8rem;
}
.hamburger--3dx .hamburger-box {
  perspective: 11.6rem;
}
.hamburger--3dx .hamburger-inner {
  transition:
    transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),
    background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx .hamburger-inner::after,
.hamburger--3dx .hamburger-inner::before {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(180deg);
}
.hamburger--3dx.is-active .hamburger-inner::before {
  transform: translate3d(0, 1.8rem, 0) rotate(45deg);
}
.hamburger--3dx.is-active .hamburger-inner::after {
  transform: translate3d(0, -1.8rem, 0) rotate(-45deg);
}
.hamburger--3dx-r .hamburger-box {
  perspective: 11.6rem;
}
.hamburger--3dx-r .hamburger-inner {
  transition:
    transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),
    background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx-r .hamburger-inner::after,
.hamburger--3dx-r .hamburger-inner::before {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(-180deg);
}
.hamburger--3dx-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 1.8rem, 0) rotate(45deg);
}
.hamburger--3dx-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -1.8rem, 0) rotate(-45deg);
}
.hamburger--3dy .hamburger-box {
  perspective: 11.6rem;
}
.hamburger--3dy .hamburger-inner {
  transition:
    transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),
    background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy .hamburger-inner::after,
.hamburger--3dy .hamburger-inner::before {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(-180deg);
}
.hamburger--3dy.is-active .hamburger-inner::before {
  transform: translate3d(0, 1.8rem, 0) rotate(45deg);
}
.hamburger--3dy.is-active .hamburger-inner::after {
  transform: translate3d(0, -1.8rem, 0) rotate(-45deg);
}
.hamburger--3dy-r .hamburger-box {
  perspective: 11.6rem;
}
.hamburger--3dy-r .hamburger-inner {
  transition:
    transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),
    background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy-r .hamburger-inner::after,
.hamburger--3dy-r .hamburger-inner::before {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 1.8rem, 0) rotate(45deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -1.8rem, 0) rotate(-45deg);
}
.hamburger--3dxy .hamburger-box {
  perspective: 11.6rem;
}
.hamburger--3dxy .hamburger-inner {
  transition:
    transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),
    background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy .hamburger-inner::after,
.hamburger--3dxy .hamburger-inner::before {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg);
}
.hamburger--3dxy.is-active .hamburger-inner::before {
  transform: translate3d(0, 1.8rem, 0) rotate(45deg);
}
.hamburger--3dxy.is-active .hamburger-inner::after {
  transform: translate3d(0, -1.8rem, 0) rotate(-45deg);
}
.hamburger--3dxy-r .hamburger-box {
  perspective: 11.6rem;
}
.hamburger--3dxy-r .hamburger-inner {
  transition:
    transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),
    background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy-r .hamburger-inner::after,
.hamburger--3dxy-r .hamburger-inner::before {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg);
}
.hamburger--3dxy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 1.8rem, 0) rotate(45deg);
}
.hamburger--3dxy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -1.8rem, 0) rotate(-45deg);
}
.hamburger--arrow.is-active .hamburger-inner::before {
  transform: translate3d(-1.16rem, 0, 0) rotate(-45deg) scale(0.7, 1);
}
.hamburger--arrow.is-active .hamburger-inner::after {
  transform: translate3d(-1.16rem, 0, 0) rotate(45deg) scale(0.7, 1);
}
.hamburger--arrow-r.is-active .hamburger-inner::before {
  transform: translate3d(1.16rem, 0, 0) rotate(45deg) scale(0.7, 1);
}
.hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(1.16rem, 0, 0) rotate(-45deg) scale(0.7, 1);
}
.hamburger--arrowalt .hamburger-inner::before {
  transition:
    top 0.1s 0.1s ease,
    transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt .hamburger-inner::after {
  transition:
    bottom 0.1s 0.1s ease,
    transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(-1.16rem, -1.45rem, 0) rotate(-45deg) scale(0.7, 1);
  transition:
    top 0.1s ease,
    transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-1.16rem, 1.45rem, 0) rotate(45deg) scale(0.7, 1);
  transition:
    bottom 0.1s ease,
    transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.hamburger--arrowalt-r .hamburger-inner::before {
  transition:
    top 0.1s 0.1s ease,
    transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt-r .hamburger-inner::after {
  transition:
    bottom 0.1s 0.1s ease,
    transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(1.16rem, -1.45rem, 0) rotate(45deg) scale(0.7, 1);
  transition:
    top 0.1s ease,
    transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(1.16rem, 1.45rem, 0) rotate(-45deg) scale(0.7, 1);
  transition:
    bottom 0.1s ease,
    transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.hamburger--arrowturn.is-active .hamburger-inner {
  transform: rotate(-180deg);
}
.hamburger--arrowturn.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}
.hamburger--arrowturn.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}
.hamburger--arrowturn-r.is-active .hamburger-inner {
  transform: rotate(-180deg);
}
.hamburger--arrowturn-r.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}
.hamburger--arrowturn-r.is-active .hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}
.hamburger--boring .hamburger-inner,
.hamburger--boring .hamburger-inner::after,
.hamburger--boring .hamburger-inner::before {
  transition-property: none;
}
.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg);
}
.hamburger--boring.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--boring.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse .hamburger-inner::after {
  top: -3.6rem;
  transition:
    top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    opacity 0.1s linear;
}
.hamburger--collapse .hamburger-inner::before {
  transition:
    top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -1.8rem, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition:
    top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    opacity 0.1s 0.22s linear;
}
.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-90deg);
  transition:
    top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse-r .hamburger-inner::after {
  top: -3.6rem;
  transition:
    top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    opacity 0.1s linear;
}
.hamburger--collapse-r .hamburger-inner::before {
  transition:
    top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse-r.is-active .hamburger-inner {
  transform: translate3d(0, -1.8rem, 0) rotate(45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition:
    top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    opacity 0.1s 0.22s linear;
}
.hamburger--collapse-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition:
    top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--elastic .hamburger-inner {
  top: 0.15rem;
  transition-duration: 275ms;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic .hamburger-inner::before {
  top: 1.8rem;
  transition: opacity 125ms 275ms ease;
}
.hamburger--elastic .hamburger-inner::after {
  top: 3.6rem;
  transition: transform 275ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 1.8rem, 0) rotate(135deg);
  transition-delay: 75ms;
}
.hamburger--elastic.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}
.hamburger--elastic.is-active .hamburger-inner::after {
  transform: translate3d(0, -3.6rem, 0) rotate(-270deg);
  transition-delay: 75ms;
}
.hamburger--elastic-r .hamburger-inner {
  top: 0.15rem;
  transition-duration: 275ms;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic-r .hamburger-inner::before {
  top: 1.8rem;
  transition: opacity 125ms 275ms ease;
}
.hamburger--elastic-r .hamburger-inner::after {
  top: 3.6rem;
  transition: transform 275ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 1.8rem, 0) rotate(-135deg);
  transition-delay: 75ms;
}
.hamburger--elastic-r.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}
.hamburger--elastic-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -3.6rem, 0) rotate(270deg);
  transition-delay: 75ms;
}
.hamburger--emphatic {
  overflow: hidden;
}
.hamburger--emphatic .hamburger-inner {
  transition: background-color 125ms 175ms ease-in;
}
.hamburger--emphatic .hamburger-inner::before {
  left: 0;
  transition:
    transform 125ms cubic-bezier(0.6, 0.04, 0.98, 0.335),
    top 50ms 125ms linear,
    left 125ms 175ms ease-in;
}
.hamburger--emphatic .hamburger-inner::after {
  top: 1.8rem;
  right: 0;
  transition:
    transform 125ms cubic-bezier(0.6, 0.04, 0.98, 0.335),
    top 50ms 125ms linear,
    right 125ms 175ms ease-in;
}
.hamburger--emphatic.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent !important;
}
.hamburger--emphatic.is-active .hamburger-inner::before {
  left: -11.6rem;
  top: -11.6rem;
  transform: translate3d(11.6rem, 11.6rem, 0) rotate(45deg);
  transition:
    left 125ms ease-out,
    top 50ms 125ms linear,
    transform 125ms 175ms cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hamburger--emphatic.is-active .hamburger-inner::after {
  right: -11.6rem;
  top: -11.6rem;
  transform: translate3d(-11.6rem, 11.6rem, 0) rotate(-45deg);
  transition:
    right 125ms ease-out,
    top 50ms 125ms linear,
    transform 125ms 175ms cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hamburger--emphatic-r {
  overflow: hidden;
}
.hamburger--emphatic-r .hamburger-inner {
  transition: background-color 125ms 175ms ease-in;
}
.hamburger--emphatic-r .hamburger-inner::before {
  left: 0;
  transition:
    transform 125ms cubic-bezier(0.6, 0.04, 0.98, 0.335),
    top 50ms 125ms linear,
    left 125ms 175ms ease-in;
}
.hamburger--emphatic-r .hamburger-inner::after {
  top: 1.8rem;
  right: 0;
  transition:
    transform 125ms cubic-bezier(0.6, 0.04, 0.98, 0.335),
    top 50ms 125ms linear,
    right 125ms 175ms ease-in;
}
.hamburger--emphatic-r.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent !important;
}
.hamburger--emphatic-r.is-active .hamburger-inner::before {
  left: -11.6rem;
  top: 11.6rem;
  transform: translate3d(11.6rem, -11.6rem, 0) rotate(-45deg);
  transition:
    left 125ms ease-out,
    top 50ms 125ms linear,
    transform 125ms 175ms cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hamburger--emphatic-r.is-active .hamburger-inner::after {
  right: -11.6rem;
  top: 11.6rem;
  transform: translate3d(-11.6rem, -11.6rem, 0) rotate(45deg);
  transition:
    right 125ms ease-out,
    top 50ms 125ms linear,
    transform 125ms 175ms cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hamburger--minus .hamburger-inner::after,
.hamburger--minus .hamburger-inner::before {
  transition:
    bottom 80ms 0s ease-out,
    top 80ms 0s ease-out,
    opacity 0s linear;
}
.hamburger--minus.is-active .hamburger-inner::after,
.hamburger--minus.is-active .hamburger-inner::before {
  opacity: 0;
  transition:
    bottom 80ms ease-out,
    top 80ms ease-out,
    opacity 0s 80ms linear;
}
.hamburger--minus.is-active .hamburger-inner::before {
  top: 0;
}
.hamburger--minus.is-active .hamburger-inner::after {
  bottom: 0;
}
.hamburger--slider .hamburger-inner {
  top: 0.15rem;
}
.hamburger--slider .hamburger-inner::before {
  top: 1.8rem;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}
.hamburger--slider .hamburger-inner::after {
  top: 3.6rem;
}
.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 1.8rem, 0) rotate(45deg);
}
.hamburger--slider.is-active .hamburger-inner::before {
  transform: rotate(-45deg) translate3d(-0.82857rem, -1.5rem, 0);
  opacity: 0;
}
.hamburger--slider.is-active .hamburger-inner::after {
  transform: translate3d(0, -3.6rem, 0) rotate(-90deg);
}
.hamburger--slider-r .hamburger-inner {
  top: 0.15rem;
}
.hamburger--slider-r .hamburger-inner::before {
  top: 1.8rem;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}
.hamburger--slider-r .hamburger-inner::after {
  top: 3.6rem;
}
.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 1.8rem, 0) rotate(-45deg);
}
.hamburger--slider-r.is-active .hamburger-inner::before {
  transform: rotate(45deg) translate3d(0.82857rem, -1.5rem, 0);
  opacity: 0;
}
.hamburger--slider-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -3.6rem, 0) rotate(90deg);
}
.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin .hamburger-inner::before {
  transition:
    top 0.1s 0.25s ease-in,
    opacity 0.1s ease-in;
}
.hamburger--spin .hamburger-inner::after {
  transition:
    bottom 0.1s 0.25s ease-in,
    transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition:
    top 0.1s ease-out,
    opacity 0.1s 0.12s ease-out;
}
.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition:
    bottom 0.1s ease-out,
    transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r .hamburger-inner::before {
  transition:
    top 0.1s 0.25s ease-in,
    opacity 0.1s ease-in;
}
.hamburger--spin-r .hamburger-inner::after {
  transition:
    bottom 0.1s 0.25s ease-in,
    transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition:
    top 0.1s ease-out,
    opacity 0.1s 0.12s ease-out;
}
.hamburger--spin-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
  transition:
    bottom 0.1s ease-out,
    transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spring .hamburger-inner {
  top: 0.15rem;
  transition: background-color 0s 0.13s linear;
}
.hamburger--spring .hamburger-inner::before {
  top: 1.8rem;
  transition:
    top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring .hamburger-inner::after {
  top: 3.6rem;
  transition:
    top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.22s;
  background-color: transparent !important;
}
.hamburger--spring.is-active .hamburger-inner::before {
  top: 0;
  transition:
    top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 1.8rem, 0) rotate(45deg);
}
.hamburger--spring.is-active .hamburger-inner::after {
  top: 0;
  transition:
    top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 1.8rem, 0) rotate(-45deg);
}
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r .hamburger-inner::after {
  top: -3.6rem;
  transition:
    top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    opacity 0s linear;
}
.hamburger--spring-r .hamburger-inner::before {
  transition:
    top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -1.8rem, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spring-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition:
    top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    opacity 0s 0.22s linear;
}
.hamburger--spring-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition:
    top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand .hamburger-inner {
  transition:
    transform 75ms 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19),
    background-color 0s 75ms linear;
}
.hamburger--stand .hamburger-inner::before {
  transition:
    top 75ms 75ms ease-in,
    transform 75ms 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand .hamburger-inner::after {
  transition:
    bottom 75ms 75ms ease-in,
    transform 75ms 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent !important;
  transition:
    transform 75ms 0s cubic-bezier(0.215, 0.61, 0.355, 1),
    background-color 0s 0.15s linear;
}
.hamburger--stand.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition:
    top 75ms 0.1s ease-out,
    transform 75ms 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition:
    bottom 75ms 0.1s ease-out,
    transform 75ms 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand-r .hamburger-inner {
  transition:
    transform 75ms 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19),
    background-color 0s 75ms linear;
}
.hamburger--stand-r .hamburger-inner::before {
  transition:
    top 75ms 75ms ease-in,
    transform 75ms 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand-r .hamburger-inner::after {
  transition:
    bottom 75ms 75ms ease-in,
    transform 75ms 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand-r.is-active .hamburger-inner {
  transform: rotate(-90deg);
  background-color: transparent !important;
  transition:
    transform 75ms 0s cubic-bezier(0.215, 0.61, 0.355, 1),
    background-color 0s 0.15s linear;
}
.hamburger--stand-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition:
    top 75ms 0.1s ease-out,
    transform 75ms 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition:
    bottom 75ms 0.1s ease-out,
    transform 75ms 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--squeeze .hamburger-inner {
  transition-duration: 75ms;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze .hamburger-inner::before {
  transition:
    top 75ms 0.12s ease,
    opacity 75ms ease;
}
.hamburger--squeeze .hamburger-inner::after {
  transition:
    bottom 75ms 0.12s ease,
    transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition:
    top 75ms ease,
    opacity 75ms 0.12s ease;
}
.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition:
    bottom 75ms ease,
    transform 75ms 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--vortex .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex .hamburger-inner::after,
.hamburger--vortex .hamburger-inner::before {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}
.hamburger--vortex .hamburger-inner::before {
  transition-property: top, opacity;
}
.hamburger--vortex .hamburger-inner::after {
  transition-property: bottom, transform;
}
.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex.is-active .hamburger-inner::after,
.hamburger--vortex.is-active .hamburger-inner::before {
  transition-delay: 0s;
}
.hamburger--vortex.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--vortex.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
}
.hamburger--vortex-r .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex-r .hamburger-inner::after,
.hamburger--vortex-r .hamburger-inner::before {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}
.hamburger--vortex-r .hamburger-inner::before {
  transition-property: top, opacity;
}
.hamburger--vortex-r .hamburger-inner::after {
  transition-property: bottom, transform;
}
.hamburger--vortex-r.is-active .hamburger-inner {
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex-r.is-active .hamburger-inner::after,
.hamburger--vortex-r.is-active .hamburger-inner::before {
  transition-delay: 0s;
}
.hamburger--vortex-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--vortex-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: 10px;
}
body {
  font-family: var(--font-family-text);
  color: var(--text-color);
  font-size: var(--base-font-size);
  line-height: 1.5;
  overflow-x: hidden;
  font-weight: 500;
  letter-spacing: 0;
  width: 100%;
  background-image: url(../images/body.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
hr {
  -moz-border-bottom-colors: none;
  -moz-border-left-colors: none;
  -moz-border-right-colors: none;
  -moz-border-top-colors: none;
  border-color: #000 -moz-use-text-color -moz-use-text-color;
  border-image: none;
  border-style: solid none none;
  border-width: 0.2em 0 0 0;
  margin: 0;
}
.container {
  width: 100%;
  padding: 0 3rem;
}
p {
  margin-bottom: 1.5rem;
}
input:focus {
  outline: 0;
}
a img {
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}
a img:hover {
  opacity: 0.7;
}
img {
  width: auto;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}
#wraper {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  background: #fff;
  overflow: hidden;
}
.head-box {
  width: 100%;
  max-width: 93rem;
  text-align: center;
  margin-bottom: 6rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 16rem;
  background: #a08e04;
  border-radius: 16rem;
  position: relative;
}
.head-box::after {
  content: "";
  width: calc(100% - 2.8rem);
  height: calc(100% - 2.8rem);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 16rem;
  border: 0.6rem solid #fff;
}
.head-box h2 {
  font-weight: 500;
  color: #fff;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
.head-box h2 span {
  font-weight: 600;
  font-size: 6.8rem;
  color: #a08e04;
  background: #fff;
  border-radius: 0.6rem;
  padding: 0 0.5rem 0.5rem;
  display: inline-block;
  line-height: 1;
}
.align-items-center {
  align-items: center !important;
}
.pt-0 {
  padding-top: 0 !important;
}
.pb-0 {
  padding-bottom: 0 !important;
}
.mg-0 {
  margin: 0 !important;
}
.mb-4 {
  margin-bottom: 4rem !important;
}
.mb-12 {
  margin-bottom: 12rem !important;
}
.mb-8 {
  margin-bottom: 8rem !important;
}
.mt-8 {
  margin-top: 8rem !important;
}
small {
  font-size: 60%;
  vertical-align: top;
}
.blue {
  color: var(--loud-color2) !important;
  margin-top: 8rem;
  display: block;
}
.yellow {
  color: var(--loud-color2) !important;
}
.blue2 {
  color: var(--loud-color) !important;
}
.text-center {
  text-align: center;
}
.bd-none {
  border: none !important;
}
.header .container {
  position: relative;
}
.header__main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 9.2rem;
}
.header__main .logo h1 {
  line-height: 1;
}
.header__main .logo h1 a {
  color: #333;
}
.header__main--right {
  display: grid;
  align-items: center;
  justify-content: end;
  grid-template-columns: auto 5.8rem;
  gap: 2.5rem;
}
.header__main--right span {
  font-size: 3rem;
  color: var(--text-dark-color);
  font-weight: 600;
}
.header__main--right .hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 769px) {
  .header__main--right {
    display: none;
  }
}
.banner__main img {
  width: 100%;
}
.leave-box {
  padding: 11.5rem 0 9rem;
  text-align: center;
}
.leave-box h2 {
  font-size: 4.4rem;
  line-height: 9rem;
  font-weight: 700;
}
.leave-box h2 span {
  color: #199c7a;
  font-weight: 700;
}
.smile-box {
  padding: 9rem 0 13rem;
  background: #fff5e0;
}
.smile-box h2 {
  font-size: 4rem;
  line-height: 2;
  font-weight: 700;
  text-align: center;
  margin-bottom: 9rem;
}
.smile-box h2 span {
  font-weight: 700;
  color: var(--text-color);
}
.smile-box h2 strong {
  color: var(--loud-color);
}
.smile-box__main {
  font-size: 4rem;
  line-height: 2;
  text-align: center;
  margin-bottom: 9rem;
}
.smile-box__questions {
  margin-bottom: 9rem;
}
.smile-box__questions--head {
  text-align: center;
  margin-bottom: 6rem;
}
.smile-box__questions--head span {
  font-size: 6.4rem;
  line-height: 12.9rem;
  display: inline-block;
  font-weight: 700;
  padding: 0 2rem;
  border-bottom: 0.4rem solid var(--loud-color);
}
.smile-box__leave--head {
  text-align: center;
  margin-bottom: 8rem;
  font-size: 4.3rem;
  line-height: 2;
}
.smile-box__leave--head span {
  border-bottom: 0.4rem solid var(--loud-color);
}
.smile-box__leave ul {
  background: #fff;
  border-radius: 1.2rem;
  border: 0.3rem solid var(--loud-color);
  padding: 3rem;
  display: grid;
  align-items: start;
  gap: 6rem;
}
.smile-box__leave ul li {
  display: grid;
  align-items: start;
  gap: 1rem;
  grid-template-columns: auto 1fr;
  font-size: 4rem;
  line-height: 7rem;
}
.smile-box__leave ul li::before {
  content: "";
  width: 2rem;
  height: 2rem;
  background: var(--loud-color);
  border-radius: 50%;
  margin-top: 2.7rem;
}
.inheritance-box {
  padding-top: 8rem;
}
.inheritance-box h2 {
  margin-bottom: 2rem;
  text-align: center;
  font-size: 5.5rem;
  line-height: 9rem;
  font-weight: 700;
  color: #a08e04;
}
.inheritance-box h2 span {
  font-size: 5rem;
  font-weight: 700;
  color: var(--text-color);
}
.reliable-box {
  padding-top: 18rem;
}
.responsibility-box {
  padding: 10rem 0 0;
}
.responsibility-box h2 {
  text-align: center;
  margin-bottom: 6rem;
  font-size: 4.9rem;
  line-height: 9rem;
  font-weight: 400;
}
.responsibility-box h2 span {
  color: #a08e04;
  font-size: 6.4rem;
  line-height: 9rem;
  font-weight: 700;
}
.responsibility-box__main {
  margin-bottom: 2rem;
}
.responsibility-box__main p {
  margin-bottom: 8rem;
  font-size: 4rem;
  line-height: 2;
}
.responsibility-box__main p span {
  font-weight: 600;
  color: var(--loud-color);
}
.responsibility-box__main figure {
  margin-bottom: 8rem;
}
.support-box {
  padding-top: 24rem;
}
.support-box .head-box {
  margin-bottom: 2rem;
}
.support-box__main--des {
  margin-bottom: 8rem;
  font-size: 4.5rem;
  line-height: 8rem;
}
.support-box__main--des strong {
  color: #a08e04;
}
.support-box__main figure {
  margin-bottom: 8rem;
}
.support-box__main--list {
  margin-bottom: 8rem;
}
.support-box__main--list ul {
  display: block;
  border: 0.5rem solid #a08e04;
  padding: 4rem;
  border-radius: 1.2rem;
  width: 100%;
  max-width: 90rem;
  margin: 0 auto;
}
.support-box__main--list ul li {
  font-size: 4.5rem;
  line-height: 2;
}
.support-box__main--txt {
  display: grid;
  align-items: start;
  gap: 8rem;
}
.support-box__main--txt p {
  margin-bottom: 0;
  font-size: 4rem;
  line-height: 2;
}
.support-box__main--txt p strong {
  font-weight: 600;
  color: var(--loud-color);
}
.support-box__main--title {
  width: 100%;
  max-width: 90rem;
  margin: 0 auto 6rem;
  background: #a08e04;
  border-radius: 1.2rem;
  font-size: 5rem;
  line-height: 7rem;
  font-weight: 600;
  color: #fff;
  font-family: var(--font-family-title);
  text-align: center;
  padding: 1rem;
}
.support-box__main--title span {
  background: #fff;
  color: #a08e04;
  padding: 0.5rem;
  border-radius: 0.6rem;
}
.business-box {
  padding-top: 24rem;
}
.business-box__main {
  display: grid;
  align-items: start;
  gap: 3.5rem;
  grid-template-columns: repeat(2, 1fr);
}
.business-box__main--items {
  display: grid;
  align-items: start;
  gap: 4rem;
  position: relative;
}
.business-box__main--items h3 {
  text-align: center;
  margin-bottom: -8rem;
}
.business-box__main--items h3 span {
  display: inline-flex;
  width: 36.9rem;
  justify-content: center;
  align-items: center;
  line-height: 8.2rem;
  background: #f15a24;
  color: #fff;
  border-radius: 1.6rem;
  font-size: 4.8rem;
  color: #fff;
  position: relative;
}
.business-box__main--items h3 span::after {
  content: "";
  width: calc(100% - 2rem);
  height: calc(100% - 2rem);
  border: 2px solid #fff;
  border-radius: 0.8rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.business-box__main--items .group {
  border: 0.8rem solid #f15a24;
  border-radius: 1.8rem;
  display: grid;
  align-items: start;
  gap: 2rem;
  grid-template-columns: repeat(2, 1fr);
  padding: 5rem 3rem;
}
.business-box__main--items .group ul li {
  font-size: 4rem;
  line-height: 6.6rem;
  font-weight: 600;
  font-family: var(--font-family-title);
}
.business-box__main--items .btn {
  text-align: center;
}
.business-box__main--items .btn a {
  display: inline-flex;
  justify-content: center;
  text-align: center;
  background: #f7931e;
  color: #fff;
  line-height: 12rem;
  font-size: 8rem;
  font-weight: 700;
  padding: 0 6rem;
  border-radius: 3rem;
}
.business-box__main--items .btn a:hover {
  background: #000;
}
.business-box__main--items:last-child h3 span {
  background: #009245;
}
.business-box__main--items:last-child .group {
  border-color: #009245;
}
.business-box__main--items:last-child .btn a {
  background: #44af93;
}
.business-box__main--items:last-child .btn a:hover {
  background: #000;
}
.step-box {
  padding: 24rem 0;
}
.step-box__main h2 {
  margin-bottom: 10rem;
  text-align: center;
  font-size: 5.2rem;
  font-weight: 700;
  color: #44af93;
}
.step-box__main--group {
  display: grid;
  align-items: start;
  gap: 15rem;
  padding: 0 4rem;
}
.step-box__main--group .items {
  background: #fff8eb;
  padding: 4rem 3rem 3rem;
  box-shadow: 5px 5px 0 #44af93;
  position: relative;
}
.step-box__main--group .items::before {
  content: "";
  width: 22.4rem;
  height: 22.4rem;
  background-image: url(../images/step-num-1.webp);
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: -8rem;
  left: -5rem;
}
.step-box__main--group .items::after {
  content: "";
  width: 15rem;
  height: 12.3rem;
  background-image: url(../images/icon-arows.webp);
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  left: 50%;
  bottom: -14rem;
  transform: translateX(-50%);
}
.step-box__main--group .items figure {
  text-align: center;
  margin-bottom: 3rem;
}
.step-box__main--group .items figure img {
  width: 39.8rem;
}
.step-box__main--group .items .text h3 {
  text-align: center;
  margin-bottom: 4rem;
}
.step-box__main--group .items .text h3 span {
  font-size: 7.6rem;
  line-height: 8rem;
  border-bottom: 0.5rem solid #44af93;
}
.step-box__main--group .items .text p {
  font-size: 3.8rem;
  line-height: 5.8rem;
  font-weight: 400;
  margin-bottom: 0;
  text-align: center;
}
.step-box__main--group .items .text p span {
  color: #44af93;
}
.step-box__main--group .items:nth-child(2)::before {
  background-image: url(../images/step-num-2.webp);
}
.step-box__main--group .items:nth-child(2) figure img {
  width: 56.6rem;
}
.step-box__main--group .items:last-child::after {
  display: none;
}
.cta-box {
  padding: 3rem 10rem;
  background: #fff8eb;
}
.cta-box h2 {
  margin-bottom: 3.5rem;
  text-align: center;
  font-size: 4.5rem;
  line-height: 6.3rem;
}
.cta-box h2 span {
  border-bottom: 0.3rem solid var(--loud-color);
}
.cta-box__main {
  display: grid;
  align-items: start;
  gap: 4rem;
  margin-bottom: 4rem;
}
.cta-box__des {
  font-size: 6.1rem;
  text-align: center;
}
.cta-box__des span {
  font-weight: 600;
  color: var(--loud-color);
}
.things-box {
  padding: 15rem 0;
}
.things-box .head-box {
  margin-bottom: 2rem;
}
.things-box .head-box h2 {
  font-size: 5.6rem;
}
.things-box__main {
  display: grid;
  align-items: start;
  gap: 2rem;
}
.things-box__main--des {
  text-align: center;
  font-size: 4.5rem;
  line-height: 6rem;
}
.things-box__main--des span {
  color: var(--loud-color);
}
.things-box__main--group {
  display: grid;
  align-items: start;
  gap: 4rem;
}
.things-box__main--group .items {
  border: 0.5rem solid var(--loud-color);
  border-radius: 1.2rem 1.2rem 0 0;
  overflow: hidden;
  min-height: 38.5rem;
}
.things-box__main--group .items h3 {
  line-height: 9.2rem;
  text-align: center;
  background: var(--loud-color);
  font-size: 6rem;
  color: #fff;
}
.holding-box {
  background: #f3faf6;
  margin-top: 16rem;
}
.holding-box h2 {
  background: #199c7a;
  line-height: 10.5rem;
  text-align: center;
  font-size: 6.8rem;
  font-weight: 700;
  color: #fff;
}
.holding-box__main {
  padding: 8rem 15rem 18rem;
  display: grid;
  align-items: start;
  gap: 9rem;
}
.banner-page {
  position: relative;
}
.banner-page__main img {
  width: 100%;
}
.site-content {
  padding: 8rem 0 17rem;
}
.site-content .nav-box {
  margin-bottom: 9rem;
}
.site-content .nav-box ul {
  display: grid;
  align-items: start;
  justify-content: center;
  gap: 4rem;
  grid-template-columns: repeat(2, auto);
}
.site-content .nav-box ul li a {
  display: block;
}
.site-content .nav-box ul li a:hover {
  opacity: 0.7;
}
.site-content__main--head {
  margin-bottom: 3rem;
}
.site-content__main h2 {
  text-align: center;
  margin-bottom: 6rem;
  display: flex;
  justify-content: center;
  text-align: center;
  line-height: 16rem;
  background: var(--loud-color2);
  border-radius: 16rem;
  position: relative;
  font-weight: 700;
  color: #fff;
}
.site-content__main h2::after {
  content: "";
  width: calc(100% - 2.8rem);
  height: calc(100% - 2.8rem);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 16rem;
  border: 0.6rem solid #fff;
}
.site-content__main h3 {
  margin-bottom: 2rem;
  font-size: 5rem;
  line-height: 7.5rem;
  border-bottom: 0.5rem solid var(--loud-color);
  font-weight: 700;
}
.site-content__main h4 {
  font-size: 5.5rem;
  line-height: 9rem;
  color: #fff;
  background: #39b54a;
  border-radius: 9rem;
  font-weight: 700;
  padding: 0 2rem;
  margin-bottom: 2rem;
}
.site-content__main h4.tt-dot {
  background: 0 0;
  font-size: 5rem;
  line-height: 1.4;
  color: var(--loud-color2);
  font-weight: 700;
  display: grid;
  align-items: start;
  gap: 1rem;
  grid-template-columns: auto 1fr;
  padding: 0;
  border-radius: 0;
}
.site-content__main h4.tt-dot::before {
  content: "";
  width: 4.3rem;
  height: 4.3rem;
  background: var(--loud-color2);
  border-radius: 50%;
  margin-top: 1.5rem;
}
.site-content__main p {
  margin-bottom: 8rem;
  font-size: 4rem;
  line-height: 7rem;
  font-weight: 400;
}
.site-content__main p strong {
  font-weight: 700;
  color: var(--loud-color);
}
.site-content__main p span {
  font-weight: 700;
}
.site-content__main p code {
  width: 700;
}
.site-content__main p:last-child {
  margin-bottom: 0;
}
.site-content__main figure {
  margin-bottom: 7rem;
}
.site-content__main .thumb-size {
  text-align: center;
}
.site-content__main .thumb-size img {
  width: 62.5rem;
}
.site-content__main .full-size {
  margin: 0 -3rem 7rem;
}
.site-content__main .des {
  margin-bottom: 14rem;
  background: #fffeec;
  border: 0.3rem solid var(--loud-color2);
  padding: 4rem 1rem;
  position: relative;
}
.site-content__main .des__labels {
  display: inline-flex;
  padding: 0 1.5rem;
  font-size: 4.5rem;
  line-height: 6.5rem;
  background: var(--loud-color2);
  font-weight: 700;
  color: #fff;
  position: absolute;
  top: -5rem;
  left: -0.3rem;
}
.site-content__main .des p {
  line-height: 7rem;
}
.site-content__main .des ul {
  margin-bottom: 3rem;
}
.site-content__main .des ul li {
  font-size: 4rem;
  line-height: 7.5rem;
  display: grid;
  align-items: start;
  gap: 1rem;
  grid-template-columns: auto 1fr;
}
.site-content__main .des ul li::before {
  content: "";
  width: 3.2rem;
  height: 3.2rem;
  background-image: url(../images/icon-check.webp);
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  margin-top: 2.5rem;
}
.site-content__main .thumb-box {
  display: grid;
  align-items: start;
  gap: 1.5rem;
  grid-template-columns: 1fr 39.8rem;
  margin-bottom: 8rem;
}
.site-content__main .thumb-box .txt p {
  font-size: 4rem;
  line-height: 6.5rem;
  font-weight: 400;
}
.site-content__main .thumb-box:last-child {
  margin-bottom: 0;
}
.site-content__main .description {
  background: #fffeec;
  padding: 3rem 1rem;
  margin-bottom: 7rem;
}
.site-content__main .description .thumb-box {
  margin-bottom: 3rem;
  grid-template-columns: 1fr 41.5rem;
}
.site-content__main .bg {
  padding: 12rem 0;
  margin-bottom: 0;
  position: relative;
  z-index: 9;
}
.site-content__main .bg::after {
  content: "";
  width: 100vw;
  height: 100%;
  background: #f6eff6;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.site-content__main .bg h4 {
  background: #93278f;
}
.site-content__main .bg .btn {
  margin-bottom: 0;
}
.site-content__main .head {
  text-align: center;
  margin-bottom: 8rem;
  display: grid;
  align-items: start;
  gap: 2.5rem;
}
.site-content__main .head h3 {
  margin-bottom: 0;
  font-size: 4rem;
  line-height: 1.2;
  font-weight: 600;
  border: none;
}
.site-content__main .head p {
  font-size: 4.6rem;
}
.site-content__main .title {
  margin-bottom: 8rem;
  position: relative;
  z-index: 9;
  padding: 2.5rem 0;
}
.site-content__main .title::after {
  content: "";
  width: 100vw;
  height: 100%;
  background: var(--loud-color2);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.site-content__main .title h2 {
  border-radius: 1.6rem;
  border: 0.3rem solid #fff;
  font-size: 6.5rem;
  line-height: 8rem;
  font-weight: 600;
  margin-bottom: 0;
  padding: 1rem 0;
}
.site-content__main .title h2::after {
  display: none;
}
.site-content__main .tt {
  line-height: 1;
}
.site-content__main .tt::after {
  display: none;
}
.site-content__main .member {
  display: grid;
  align-items: start;
  gap: 9rem;
  margin: 0 -3rem 9rem;
}
.site-content__main .member__items--main {
  display: grid;
  align-items: end;
  gap: 1.5rem;
  grid-template-columns: 49.7rem 1fr;
}
.site-content__main .member__items--main figure {
  margin-bottom: 0;
}
.site-content__main .member__items--main .txt {
  padding-right: 5rem;
}
.site-content__main .member__items--main .txt p {
  font-size: 3.3rem;
  line-height: 6rem;
  margin-bottom: 2rem;
}
.site-content__main .member__items--main .txt__des {
  background: var(--loud-color2);
  padding: 2rem;
  border-radius: 1.6rem;
  margin-left: -5.5rem;
  position: relative;
}
.site-content__main .member__items--main .txt__des p {
  font-size: 3.4rem;
  line-height: 5rem;
  margin-bottom: 1rem;
  color: #fff;
}
.site-content__main .member__items--main .txt__des--name {
  font-size: 6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.site-content__main .member__items--main .txt__des--name span {
  font-size: 4rem;
}
.site-content__main .member__items--main .txt__des .more-drop {
  width: 5rem;
  position: absolute;
  right: 2rem;
  bottom: 2rem;
}
.site-content__main .member__items .des {
  width: 100%;
  max-width: calc(100% - 6rem);
  margin: 0 auto;
  font-size: 4rem;
  line-height: 8rem;
  padding: 4rem;
  display: none;
}
.site-content__main .member.color .member__items .txt__des {
  background: #754c24;
}
.site-content__main .group {
  display: grid;
  align-items: start;
  gap: 7rem;
  margin-bottom: 7rem;
}
.site-content__main .group:last-child {
  margin-bottom: 0;
}
.site-content__main .group p {
  padding-left: 3rem;
}
.site-content__main .group__items--thumb {
  display: grid;
  align-items: end;
  grid-template-columns: 46.6rem 1fr;
}
.site-content__main .group__items--thumb .txt p {
  padding: 0;
  margin-bottom: 2rem;
}
.site-content__main .group__items--thumb .txt p strong {
  font-weight: 600;
  font-size: 3.8rem;
}
.site-content__main .group__items--thumb .txt a {
  margin-bottom: 4rem;
  display: flex;
}
.site-content__main .group__items--thumb .txt a:last-child {
  margin-bottom: 0;
}
.site-content__main .group__items--thumb figure {
  margin-bottom: 2rem;
}
.site-content__main .btn {
  margin-bottom: 7rem;
  text-align: center;
}
.site-content__main .btn a {
  display: inline-flex;
  width: 100%;
  max-width: 56rem;
}
.site-content__main .business {
  position: relative;
  padding: 11rem 0;
  z-index: 9;
  text-align: center;
}
.site-content__main .business::after {
  content: "";
  width: 100vw;
  height: 100%;
  background: #f2f2f2;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.site-content__main .business h3 {
  font-weight: 700;
  font-size: 6rem;
  border-color: var(--text-color);
  line-height: 1.5;
  margin-bottom: 5rem;
}
.site-content__main .business p {
  font-weight: 700;
}
.site-content__main .group-mg {
  margin-bottom: 12rem;
}
.site-content__main .group-bg {
  position: relative;
  z-index: 9;
  padding: 12rem 0;
  margin-bottom: 0;
}
.site-content__main .group-bg::after {
  content: "";
  width: 100vw;
  height: 100%;
  background: #ebf5e9;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.site-content__main .group-bg .btn {
  margin-bottom: 0;
}
.site-content__main .group-bg-2::after {
  background: #f1f8f6;
}
.site-content__main .group-bg-2 h4 {
  background: #00a99d;
}
.site-content__main .group-bg-2 .des {
  border-color: #00a99d;
  background: 0 0;
}
.site-content__main .group-bg-2 .des__labels {
  background: #00a99d;
}
.site-content__main .member-des {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 4rem;
  line-height: 7.2rem;
  color: #754c24;
  font-weight: 700;
}
.site-content__main .member-txt {
  margin-bottom: 8rem;
  text-align: center;
  font-family: var(--font-family-title);
}
.site-content__main .member-txt p {
  font-size: 6rem;
  line-height: 1.5;
}
.site-content__navpage {
  display: grid;
  align-items: center;
  justify-content: center;
  gap: 4.5rem;
  grid-template-columns: repeat(2, 44.1436rem);
}
.site-content .bg-box {
  background: #fffeec;
  padding: 2.5rem 2rem;
  border-radius: 1.6rem;
  margin-bottom: 10rem;
}
.site-content .bg-box:last-child {
  margin-bottom: 0;
}
.site-content .bg-box-2 {
  background: #f3fbf4;
}
.site-content .bg-box-2 h3 {
  border-color: var(--loud-color2);
  border-style: dashed;
}
.site-content .bg-box-2 p strong {
  color: var(--loud-color2);
}
.site-content .group-box {
  margin-bottom: 30rem;
}
.site-content .des-color {
  border-color: #009245;
  background: #f3fbf4;
}
.site-content .des-color strong {
  color: #009245;
}
.site-content .salon-inheritance h4,
.site-content .salon-service h4,
.site-content .salon-support h4 {
  text-align: center;
}
.site-content .salon-professionals {
  padding: 8rem 0;
}
.footer {
  border-top: 1rem solid #199c7a;
  padding: 4rem 0;
  position: relative;
}
.footer .backToTop {
  width: 12rem;
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  opacity: 0;
  transform: translateY(200px);
  cursor: pointer;
  animation: DownAnime 0.5s forwards;
}
.footer .backToTop.UpMove {
  animation: UpAnime 0.5s forwards;
}
.footer__main--logo {
  margin-bottom: 2rem;
}
.footer__main--logo a {
  display: block;
  width: 46.4rem;
}
.footer__main--txt {
  display: grid;
  align-items: start;
  gap: 8rem;
  grid-template-columns: repeat(2, 1fr);
}
.footer__main--txt .info p {
  margin-bottom: 3rem;
  line-height: 3rem;
}
.footer__main--txt .info p:last-child {
  margin-bottom: 0;
}
.footer__main--txt .nav ul {
  margin-bottom: 3rem;
}
.footer__main--txt .nav ul li a {
  display: grid;
  align-items: center;
  justify-content: start;
  gap: 3rem;
  line-height: 3.6rem;
  color: var(--text-color);
  grid-template-columns: repeat(2, auto);
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.footer__main--txt .nav ul li a::before {
  content: "＞";
}
.footer__main--txt .nav ul li a:hover {
  color: var(--loud-color);
}
.footer__main--txt .nav ul:last-child {
  margin-bottom: 0;
}
@media (min-width: 769px) {
  .footer .container {
    margin: 0 auto;
    padding: 0 3rem;
    max-width: 135rem;
  }
}
.sp {
  display: none;
}
@media (max-width: 1920px) {
  html {
    font-size: 0.520833vw;
  }
}
@media (min-width: 769px) {
  .smile-box__questions figure {
    text-align: center;
  }
  .smile-box__questions figure img {
    width: 100%;
    max-width: 99.2rem;
  }
  .smile-box__leave ul {
    width: 90rem;
    margin: 0 auto;
  }
  .inheritance-box__main figure {
    text-align: center;
  }
  .inheritance-box__main figure img {
    width: 100%;
    max-width: 140.7rem;
  }
  .reliable-box .container {
    max-width: 98rem;
    margin: 0 auto;
  }
  .responsibility-box .container {
    max-width: 166rem;
    margin: 0 auto;
  }
  .responsibility-box__main p {
    font-size: 3.6rem;
    line-height: 6rem;
  }
  .responsibility-box__main figure {
    text-align: center;
  }
  .responsibility-box__main figure img {
    max-width: 60rem;
    width: 100%;
  }
  .support-box .container {
    max-width: 174rem;
    margin: 0 auto;
  }
  .support-box .head-box {
    width: 100%;
    max-width: 93rem;
    margin: 0 auto 8rem;
  }
  .support-box__main--des {
    text-align: center;
    font-size: 4rem;
    line-height: 7rem;
  }
  .support-box__main--list ul li {
    font-size: 5rem;
  }
  .support-box__main--txt p {
    font-size: 3.5rem;
    line-height: 6rem;
  }
  .business-box .container {
    max-width: 154.8rem;
    margin: 0 auto;
  }
  .business-box__main--items .btn {
    text-align: center;
  }
  .business-box__main--items .btn a {
    display: inline-flex;
    justify-content: center;
    text-align: center;
    background: var(--loud-color);
    color: #fff;
    line-height: 8rem;
    font-size: 4rem;
    font-weight: 700;
    padding: 0 4rem;
    border-radius: 2rem;
  }
  .business-box__main--items .btn a:hover {
    background: #000;
  }
  .step-box .container {
    max-width: 145.5rem;
    margin: 0 auto;
  }
  .step-box__main--group {
    display: grid;
    align-items: normal;
    gap: 10rem;
    grid-template-columns: repeat(2, 1fr);
  }
  .step-box__main--group .items::before {
    width: 17.9rem;
    height: 17.9rem;
  }
  .step-box__main--group .items::after {
    width: 10.4rem;
    height: 13.7rem;
    background-image: url(../images/icon-arows_pc.webp);
    bottom: 40%;
    left: auto;
    right: -18rem;
    z-index: 9;
  }
  .step-box__main--group .items figure img {
    width: 31.8rem;
  }
  .step-box__main--group .items .text h3 span {
    font-size: 6.1rem;
  }
  .step-box__main--group .items .text p {
    font-size: 2.6rem;
    line-height: 4.6rem;
  }
  .step-box__main--group .items:last-child figure img {
    width: 45.2rem;
  }
  .cta-box {
    padding: 6rem 0 8rem;
  }
  .cta-box .container-fluid {
    max-width: 138rem;
    margin: 0 auto;
    padding: 0 3rem;
  }
  .cta-box h2 {
    margin-bottom: 7rem;
    font-size: 5rem;
  }
  .cta-box__main {
    display: grid;
    align-items: start;
    gap: 8rem;
    grid-template-columns: repeat(2, 1fr);
  }
  .holding-box {
    padding: 8rem 0 12rem;
    margin: 0;
  }
  .holding-box .container-fluid {
    margin: 0 auto;
    padding: 0 3rem;
    max-width: 135rem;
  }
  .holding-box h2 {
    width: 100%;
    max-width: 100rem;
    margin: 0 auto 10rem;
  }
  .holding-box__main {
    padding: 0;
    display: grid;
    align-items: start;
    gap: 5rem;
    grid-template-columns: repeat(2, 1fr);
  }
  .site-content .container {
    max-width: 166rem;
    margin: 0 auto;
  }
  .site-content .nav-box {
    margin-bottom: 15rem;
  }
  .site-content__main p {
    font-size: 3.5rem;
    line-height: 6rem;
    margin-bottom: 6rem;
  }
  .site-content__main .bg-box {
    padding: 2.5rem 7rem 7rem;
    margin-bottom: 10rem;
  }
  .site-content__main .thumb-box {
    align-items: center;
    grid-template-columns: 1fr 46.8rem;
    margin-bottom: 9rem;
  }
  .site-content__main .thumb-box figure {
    margin-bottom: 0;
  }
  .site-content__main .thumb-box.figure-624 {
    grid-template-columns: 1fr 62.4rem;
  }
  .site-content__main .des {
    width: 100%;
    max-width: 90rem;
    margin: 0 auto;
  }
  .site-content__main .des ul li {
    font-size: 3.6rem;
    line-height: 6.7rem;
  }
  .site-content__main main {
    display: block;
    width: 100%;
    margin: 0 auto;
  }
  .site-content__main .full-size-80 {
    text-align: center;
  }
  .site-content__main .full-size-80 img {
    width: 100%;
    max-width: 80rem;
  }
  .site-content__main .full-size-bg {
    position: relative;
    z-index: 9;
  }
  .site-content__main .full-size-bg::after {
    content: "";
    width: 100vw;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #fffeec;
    z-index: -1;
  }
  .site-content__main .title h2 {
    max-width: 90rem;
    margin: 0 auto;
  }
  .site-content__main .member {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5rem;
    margin-bottom: 15rem;
  }
  .site-content__main .member__items {
    flex: 0 0 auto;
    width: 100%;
    max-width: 90rem;
    grid-template-columns: 44.7rem 1fr;
  }
  .site-content__main .member__items .txt {
    padding: 0;
  }
  .site-content__main .member__items .txt__des p {
    font-size: 3.1rem;
    line-height: 4.5rem;
  }
  .site-content__main .member__items .txt__des .more-drop {
    width: 4rem;
  }
  .site-content__main .member__items .txt__name {
    font-weight: 5.4rem;
  }
  .site-content__main .member__items .des {
    font-size: 3.6rem;
    line-height: 7.2rem;
    max-width: 100%;
  }
  .site-content__main .member.color .member__items .txt__des {
    background: #662d91;
  }
  .site-content__main .member-head {
    width: 100%;
    max-width: 166rem;
    margin: 0 auto;
    padding: 0 3rem;
  }
  .site-content__main .member-txt p {
    font-size: 6rem;
    line-height: 1.5;
  }
  .site-content__main .salon-community .full-size {
    text-align: center;
  }
  .site-content__main .salon-community .full-size img {
    width: 100%;
    max-width: 80rem;
  }
  .site-content__main .salon-service h2 {
    max-width: 93rem;
    margin: 0 auto 8rem;
  }
  .site-content__main .salon-service h4 {
    text-align: center;
    font-size: 5.3rem;
    width: 100%;
    max-width: 90rem;
    margin: 0 auto 2rem;
  }
  .site-content__main .salon-service .group-bg {
    width: 100%;
    max-width: 166rem;
    margin: 0 auto;
    padding: 9rem 0 12rem;
  }
  .site-content__main .salon-service .btn a {
    max-width: 57.3rem;
  }
  .site-content__main .salon-community {
    width: 100%;
    max-width: 121.5rem;
    padding: 0 3rem;
    margin: 0 auto;
  }
  .site-content__main .salon-community__thumb {
    text-align: center;
  }
  .site-content__main .salon-community__thumb img {
    width: 100%;
    max-width: 92.8rem;
  }
  .site-content__main .salon-community .group-mg {
    margin-bottom: 12rem;
  }
  .site-content__main .salon-community .group-mg figure {
    margin-bottom: 2rem;
  }
  .site-content__main .salon-support {
    width: 100%;
    max-width: 164rem;
    padding: 0 3rem;
    margin: 0 auto;
  }
  .site-content__main .salon-support h4 {
    text-align: center;
    font-size: 5.3rem;
    width: 100%;
    max-width: 90rem;
    margin: 0 auto 5rem;
  }
  .site-content__main .salon-support .bg {
    padding: 9rem 0 12rem;
  }
  .site-content__main .salon-support .thumb-box {
    gap: 7rem;
    grid-template-columns: 1fr 60.2rem;
  }
  .site-content__main .salon-support .btn a {
    max-width: 72.1rem;
  }
  .site-content__main .salon-inheritance {
    width: 100%;
    max-width: 158rem;
    padding: 0 3rem;
    margin: 0 auto;
  }
  .site-content__main .salon-inheritance h4 {
    text-align: center;
    font-size: 5.3rem;
    width: 100%;
    max-width: 90rem;
    margin: 0 auto 5rem;
  }
  .site-content__main .salon-inheritance .bg {
    padding: 9rem 0 12rem;
  }
  .site-content__main .salon-inheritance .group {
    margin-bottom: 9rem;
  }
  .site-content__main .salon-inheritance .des {
    background: #fff;
    margin-bottom: 8rem;
  }
  .site-content__main .salon-inheritance .des__labels {
    border-radius: 0 6.5rem 6.5rem 0;
    padding-right: 8rem;
  }
  .site-content__main .salon-inheritance .btn a {
    max-width: 72.1rem;
  }
  .site-content__main .salon-professionals {
    padding: 12rem 3rem;
    width: 100%;
    max-width: 152.5rem;
    margin: 0 auto;
  }
  .site-content__main .salon-professionals .group__items--thumb {
    grid-template-columns: 1fr 44.1rem;
    gap: 3rem;
    align-items: center;
  }
  .site-content__main .salon-professionals .group__items--thumb .txt__btn {
    display: grid;
    align-items: center;
    gap: 5rem;
    grid-template-columns: repeat(2, 1fr);
  }
  .site-content__main .salon-professionals .group__items--thumb .txt__btn a {
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 1vw;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .business-box__main {
    grid-template-columns: repeat(1, 1fr);
    gap: 18rem;
  }
  .container-sp {
    padding: 0 3rem;
  }
  .leave-box h2 {
    font-size: 4.2rem;
  }
  .support-box .container {
    padding: 0 2rem;
  }
}
