@charset "UTF-8";
html {
  font-size: 62.5%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-size: 1.6rem;
  letter-spacing: 0px;
  font-family: "Yu Mincho", "YuMincho", 'Noto Serif JP', serif;
  opacity: 1;
  font-weight: 400;
}

main {
  overflow: hidden;
}

img {
  vertical-align: bottom;
  width: 100%;
}

h1,
h2,
h3,
.bold {
  font-weight: 500;
}

.Android h1,
.Android h2,
.Android h3,
.Android .bold {
  font-weight: 650;
}

.section-wrapper {
  height: auto;
}

.section-inner {
  max-width: 100%;
  margin: 0 auto;
}

.section-bottom {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 9rem;
  opacity: .05;
}

.sp-br {
  display: none;
}

.effect-fade {
  opacity: 0;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transition: all 2000ms;
  transition: all 2000ms;
}

.effect-fade-left {
  opacity: 0;
  -webkit-transform: translate(-100px, 0);
          transform: translate(-100px, 0);
  -webkit-transition: all 2000ms;
  transition: all 2000ms;
}

.effect-scroll {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

#stalker {
  pointer-events: none;
  position: fixed;
  top: -8px;
  left: -8px;
  width: 35px;
  height: 35px;
  background: rgba(192, 178, 167, 0.5);
  border-radius: 50%;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  z-index: 999;
}

@media (max-width: 1279px) {
  .pc-br {
    display: none;
  }
}

@media (max-width: 767px) {
  .sp-br {
    display: block;
  }
  .pc-br {
    display: none;
  }
  #stalker {
    display: none;
  }
}

.header {
  height: 70px;
  padding: 27px 50px 27px 36px;
  background-color: #BCC8C4;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header a {
  color: #FFFFFF;
  text-decoration: none;
}

.site-title {
  font-size: 2.6rem;
}

.nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.nav-item {
  margin-right: 30px;
}

.nav-item:last-of-type {
  margin-right: 0;
}

.burger-btn {
  display: none;
}

@media (max-width: 767px) {
  .header-nav {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 300px;
    background-color: #F4F1EF;
    z-index: 1;
  }
  .header-logo {
    width: 115px;
  }
  .header .nav-list {
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-shadow: 0px 1px 2px gray;
            box-shadow: 0px 1px 2px gray;
  }
  .header .nav-item {
    margin: 0 0 30px;
  }
  .header .nav-item:first-of-type {
    margin-top: 40px;
  }
  .header .nav-item:last-of-type {
    margin-bottom: 0;
  }
  .header .nav-item a {
    font-size: 15px;
    color: #867663;
  }
  .burger-btn {
    display: block;
    position: absolute;
    right: 33px;
    z-index: 1;
  }
  .burger-btn .bar {
    display: block;
    height: 2px;
    width: 20px;
    background-color: #FFFFFF;
  }
  .burger-btn.cross .bar {
    background-color: #A5B9BE;
  }
  .burger-btn.cross .bar_top {
    -webkit-transform: rotate(45deg) translate(4px, 5px);
            transform: rotate(45deg) translate(4px, 5px);
    -webkit-transition: .3s;
    transition: .3s;
  }
  .burger-btn.cross .bar_mid {
    opacity: 0;
    -webkit-transition: .3s;
    transition: .3s;
  }
  .burger-btn.cross .bar_bottom {
    -webkit-transform: rotate(-45deg) translate(4px, -5px);
            transform: rotate(-45deg) translate(4px, -5px);
    -webkit-transition: .3s;
    transition: .3s;
  }
  .bar_top {
    margin-bottom: 4px;
  }
  .bar_mid {
    margin-bottom: 4px;
  }
  body.noscroll {
    overflow: hidden;
  }
  button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }
}

.footer {
  height: 70px;
  background-color: #C0B2A7;
  color: #FFFFFF;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer .nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer .nav-item {
  margin-right: 60px;
}

.footer .nav-item:last-of-type {
  margin-right: 0;
}

.footer a {
  font-size: 13px;
  text-decoration: none;
  color: #FFFFFF;
}

@media (max-width: 767px) {
  .footer {
    height: 70px;
    background-color: #C0B2A7;
    color: #FFFFFF;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer .nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .footer .nav-item {
    margin-right: 24px;
    line-height: 1;
  }
  .footer .nav-item:last-of-type {
    margin-right: 0;
  }
  .footer a {
    font-size: 12px;
    text-decoration: none;
    color: #FFFFFF;
  }
}

.fv {
  height: 90vh;
  background-image: url("./img/top_background.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.main-copy {
  color: #fff;
  text-align: center;
}

.main-copy img {
  width: 406px;
  height: 173px;
}

.main-copy h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  margin-top: 30px;
  letter-spacing: 3px;
}

.main-copy h2 {
  font-size: 2rem;
  letter-spacing: 2.3px;
}

.pink {
  color: #A77376;
}

.brown {
  color: #867663;
}

.blue {
  color: #899DA2;
}

.text-right {
  text-align: right;
}

.about {
  color: #7F694E;
  background-color: #F4F1EF;
  height: auto;
}

.about-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.about-text {
  width: 70%;
}

.about-text-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 61%;
}

.about-lead {
  padding-top: 87px;
  padding-bottom: 57px;
}

@media (max-width: 1279px) {
  .about-lead {
    padding-top: 16%;
    padding-bottom: 10%;
  }
}

.about-img-wrapper {
  width: 39%;
}

.about-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
}

@media (max-width: 1279px) {
  .about-item {
    margin-bottom: 5.5%;
  }
}

.about-item-wrapper {
  width: 77%;
  padding-left: 42px;
}

.about-item:last-of-type {
  margin-bottom: 0;
}

.about-item.bg-pink::before {
  content: "";
  width: 78px;
  height: 115px;
  background-color: #C09A9C;
}

@media (max-width: 1279px) {
  .about-item.bg-pink::before {
    width: 14%;
    height: 9vw;
  }
}

.about-item.bg-brown::before {
  content: "";
  width: 78px;
  height: 115px;
  background-color: #C0B2A7;
}

@media (max-width: 1279px) {
  .about-item.bg-brown::before {
    width: 14%;
    height: 9vw;
  }
}

.about-item.bg-blue::before {
  content: "";
  width: 78px;
  height: 115px;
  background-color: #A5B9BE;
}

@media (max-width: 1279px) {
  .about-item.bg-blue::before {
    width: 14%;
    height: 9vw;
  }
}

.about-item h3 {
  margin-bottom: 17px;
  font-size: 2.5rem;
}

@media (max-width: 1279px) {
  .about-item h3 {
    margin-bottom: 4%;
    font-size: 1.9vw;
  }
}

.about-item p {
  font-size: 1.8rem;
}

@media (max-width: 1279px) {
  .about-item p {
    font-size: 1.4vw;
  }
}

.content {
  color: #707070;
  background-color: #FFFFFF;
  height: auto;
}

.content-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.content-text {
  width: 80%;
  padding: 7% 0 6% 0;
}

.content-text-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 73%;
}

.content-lead {
  margin-bottom: 38px;
}

.content-title {
  color: #7F694E;
  font-size: 3rem;
  letter-spacing: 1.5px;
  margin: 0 auto;
}

@media (max-width: 1279px) {
  .content-title {
    font-size: 2.3vw;
  }
}

.content-title::before {
  content: "";
  display: inline-block;
  background-color: #C0B2A7;
  width: 35%;
  height: 1.5px;
  margin-right: 5%;
  vertical-align: middle;
}

.content-title::after {
  content: "";
  display: inline-block;
  background-color: #C0B2A7;
  width: 35%;
  height: 1.5px;
  margin-left: 5%;
  vertical-align: middle;
}

.content-img-wrapper {
  width: 27%;
  height: auto;
  position: relative;
}

.content-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  position: absolute;
  width: 74%;
  height: 14%;
  top: 42%;
  left: 13%;
}

.content-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 36px;
}

@media (max-width: 1279px) {
  .content-item {
    margin-bottom: 4.5%;
  }
}

.content-item:last-of-type {
  margin-bottom: 0;
}

.content-item-wrapper {
  width: 80%;
  padding-left: 35px;
}

@media (max-width: 1279px) {
  .content-item-wrapper {
    padding-left: 4.5%;
  }
}

.content-item.border-pink::before {
  content: "就業規則";
  display: table-cell;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  line-height: 115px;
  width: 115px;
  height: 115px;
  font-size: 2rem;
  font-weight: 600;
  border: solid 1.5px #C09A9C;
  color: #C09A9C;
}

@media (max-width: 1279px) {
  .content-item.border-pink::before {
    line-height: 9vw;
    width: 9vw;
    height: 9vw;
    font-size: 1.5vw;
  }
}

.content-item.border-pink:hover::before {
  background-color: #C09A9C;
  color: #FFFFFF;
}

.content-item.border-gray::before {
  content: "助成金";
  display: table-cell;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  line-height: 115px;
  width: 115px;
  height: 115px;
  font-size: 2rem;
  font-weight: 600;
  border: solid 1.5px #9E9E9F;
  color: #9E9E9F;
}

@media (max-width: 1279px) {
  .content-item.border-gray::before {
    line-height: 9vw;
    width: 9vw;
    height: 9vw;
    font-size: 1.5vw;
  }
}

.content-item.border-gray:hover::before {
  background-color: #9E9E9F;
  color: #FFFFFF;
}

.content-item.border-blue::before {
  content: "給与計算";
  display: table-cell;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  line-height: 115px;
  width: 115px;
  height: 115px;
  font-size: 2rem;
  font-weight: 600;
  border: solid 1.5px #A5B9BE;
  color: #A5B9BE;
}

@media (max-width: 1279px) {
  .content-item.border-blue::before {
    line-height: 9vw;
    width: 9vw;
    height: 9vw;
    font-size: 1.5vw;
  }
}

.content-item.border-blue:hover::before {
  background-color: #A5B9BE;
  color: #FFFFFF;
}

.content-item.border-brown::before {
  content: "セミナー";
  display: table-cell;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  line-height: 115px;
  width: 115px;
  height: 115px;
  font-size: 2rem;
  font-weight: 600;
  border: solid 1.5px #C0B2A7;
  color: #C0B2A7;
}

@media (max-width: 1279px) {
  .content-item.border-brown::before {
    line-height: 9vw;
    width: 9vw;
    height: 9vw;
    font-size: 1.5vw;
  }
}

.content-item.border-brown:hover::before {
  background-color: #C0B2A7;
  color: #FFFFFF;
}

.content-item p {
  font-size: 1.8rem;
  letter-spacing: 0px;
}

@media (max-width: 1279px) {
  .content-item p {
    font-size: 1.4vw;
  }
}

.content-item p span {
  color: #C0B2A7;
}

.Android .content-item.border-pink::before {
  font-weight: 650;
}

.Android .content-item.border-gray::before {
  font-weight: 650;
}

.Android .content-item.border-blue::before {
  font-weight: 650;
}

.Android .content-item.border-brown::before {
  font-weight: 650;
}

.profile {
  color: #867663;
}

.profile-content {
  background-image: url("./img/profile_background_image.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: auto;
  text-align: center;
}

.profile-content-inner {
  padding-top: 51px;
  padding-bottom: 98px;
}

@media (max-width: 1279px) {
  .profile-content-inner {
    padding-top: 5.5%;
    padding-bottom: 7.5%;
  }
}

.profile-title {
  color: #7F694E;
  font-size: 3rem;
  letter-spacing: 1.5px;
  padding-bottom: 41px;
}

@media (max-width: 1279px) {
  .profile-title {
    font-size: 2.3vw;
    padding-bottom: 3%;
  }
}

.profile-text-inner {
  width: 900px;
  height: 500px;
  background: rgba(255, 255, 255, 0.5);
  position: relative;
  margin: 0 auto;
}

@media (max-width: 1279px) {
  .profile-text-inner {
    width: 70%;
    height: 39.0625vw;
  }
}

.profile-img {
  width: 240px;
  height: 250px;
  position: absolute;
  margin-top: -50%;
  margin-right: -50%;
  top: 50%;
  right: 70%;
}

@media (max-width: 1279px) {
  .profile-img {
    width: 98%;
  }
}

.profile-img-wrapper {
  width: 243px;
  height: 520px;
  background: rgba(192, 154, 156, 0.6);
  margin: 0 0 0 auto;
  position: relative;
}

@media (max-width: 1279px) {
  .profile-img-wrapper {
    width: 27%;
    height: 40.6vw;
  }
}

.profile-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: solid 1.5px #D1C7BD;
  padding: 58px 0 0 44px;
  position: absolute;
  width: 900px;
  height: 500px;
  top: 20px;
  left: 20px;
}

.profile-main p {
  letter-spacing: 0px;
  text-align: left;
  opacity: 1;
}

@media (max-width: 1279px) {
  .profile-main {
    width: 100%;
    height: 39.0625vw;
    top: 4%;
    left: 2.2%;
  }
}

.profile-name {
  font-size: 2.5rem;
  letter-spacing: 2.5px !important;
  padding-bottom: 13.5px;
  text-align: left;
}

@media (max-width: 1279px) {
  .profile-name {
    font-size: 1.9vw;
    padding-bottom: 1%;
  }
}

.profile-career {
  font-size: 1.5rem;
  padding-bottom: 33px;
}

@media (max-width: 1279px) {
  .profile-career {
    font-size: 1.2vw;
    padding-bottom: 2.5%;
  }
}

.profile-main-content {
  font-size: 1.8rem;
  padding-bottom: 37px;
  width: 60%;
}

@media (max-width: 1279px) {
  .profile-main-content {
    font-size: 1.4vw;
    padding-bottom: 3%;
  }
}

.profile-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 60%;
}

.profile-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 225px;
  height: 100px;
}

@media (max-width: 1279px) {
  .profile-logo {
    width: 45%;
    height: auto;
  }
}

.profile-addres {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.profile-addres p {
  font-size: 1.8rem;
}

@media (max-width: 1279px) {
  .profile-addres p {
    font-size: 1.4vw;
  }
}

@media (max-width: 767px) {
  .fv {
    height: 250px;
  }
  .main-copy img {
    width: 189px;
    height: 81px;
  }
  .main-copy h1 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    margin-top: 23px;
    letter-spacing: 0px;
  }
  .main-copy h2 {
    font-size: 1.2rem;
    letter-spacing: 0px;
  }
  .about-content {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .about-text {
    display: block;
    max-width: 310px;
    padding: 50px 0 45px;
    width: 100%;
  }
  .about-text-wrapper {
    width: 100%;
  }
  .about-lead {
    padding-top: 0;
    padding-bottom: 40px;
  }
  .about-img-wrapper {
    display: none;
  }
  .about-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 40px;
  }
  .about-item-wrapper {
    padding-left: 13px;
    width: 269px;
  }
  .about-item:last-of-type {
    margin-bottom: 0;
  }
  .about-item.bg-pink::before {
    content: "";
    width: 27px;
    height: 62px;
    background-color: #C09A9C;
  }
  .about-item.bg-brown::before {
    content: "";
    width: 27px;
    height: 62px;
    background-color: #C0B2A7;
  }
  .about-item.bg-blue::before {
    content: "";
    width: 27px;
    height: 62px;
    background-color: #A5B9BE;
  }
  .about-item h3 {
    margin-bottom: 5px;
    font-size: 1.7rem;
  }
  .about-item p {
    font-size: 1.2rem;
  }
  .content {
    height: auto;
  }
  .content-content {
    display: block;
  }
  .content-text {
    width: 312px;
    padding: 50px 0 45px;
  }
  .content-text-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
  .content-lead {
    margin-bottom: 30px;
  }
  .content-title {
    font-size: 1.8rem;
  }
  .content-title::before {
    width: 93px;
    height: 1.5px;
    margin-right: 24px;
    letter-spacing: 1.8px;
  }
  .content-title::after {
    width: 93px;
    height: 1.5px;
    margin-left: 24px;
    letter-spacing: 1.8px;
  }
  .content-img-wrapper {
    display: block;
    width: 100%;
    height: 400px;
    background-image: url("./img/content_image.jpg");
    background-repeat: no-repeat;
    background-position: center 30%;
    background-size: cover;
  }
  .content-img {
    display: none;
  }
  .content-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: absolute;
    position: absolute;
    width: 59%;
    height: 23.5%;
    top: 38%;
    left: 20%;
  }
  .content-item {
    margin-bottom: 27px;
    font-size: 1.7rem;
  }
  .content-item-wrapper {
    width: 198px;
    padding-left: 13px;
  }
  .content-item:last-of-type {
    margin-bottom: 0;
  }
  .content-item.border-pink::before {
    line-height: 175px;
    width: 98px;
    height: 175px;
    font-size: 17px;
  }
  .content-item.border-gray::before {
    line-height: 175px;
    width: 98px;
    height: 175px;
    font-size: 17px;
  }
  .content-item.border-blue::before {
    line-height: 175px;
    width: 98px;
    height: 175px;
    font-size: 17px;
  }
  .content-item.border-brown::before {
    line-height: 175px;
    width: 98px;
    height: 175px;
    font-size: 17px;
  }
  .content-item p {
    font-size: 1.2rem;
    letter-spacing: 0px;
    line-height: 1.66;
  }
  .content-item p span {
    color: #C0B2A7;
  }
  .profile-content {
    height: 880px;
  }
  .profile-title {
    font-size: 1.8rem;
    letter-spacing: 1.5px;
  }
  .profile-text {
    max-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .profile-text-inner {
    width: 289px;
    height: 721px;
    margin: 0 20px 0 0;
  }
  .profile-img {
    width: 184px;
    height: 192px;
    position: absolute;
    margin-top: -17%;
    margin-right: -40%;
  }
  .profile-img-wrapper {
    width: 309px;
    height: 170px;
    position: relative;
    top: 50%;
  }
  .profile-main {
    padding: 29px 45px 0 20px;
    width: 100%;
    height: 721px;
    left: 20px;
    top: 20px;
  }
  .profile-main p {
    letter-spacing: 0px;
    text-align: left;
    opacity: 1;
  }
  .profile-name {
    font-size: 2.3rem;
    letter-spacing: 2.3px !important;
    padding-bottom: 15px;
  }
  .profile-career {
    font-size: 1.4rem;
    padding-bottom: 30px;
  }
  .profile-main-content {
    font-size: 1.5rem;
    padding-bottom: 30px;
    width: 100%;
  }
  .profile-bottom {
    display: block;
    position: absolute;
    bottom: 0;
    right: 30px;
    width: 80%;
    padding-bottom: 45px;
  }
  .profile-logo {
    width: 142px;
    height: 57px;
    position: absolute;
    top: -70px;
    left: 90px;
  }
  .profile-addres p {
    font-size: 1.5rem;
  }
}

.privacy-header {
  height: 70px;
  background-color: #F4F1EF;
}

.privacy {
  color: #7F694E;
}

.privacy-content {
  padding: 70px 190px 60px 190px;
  text-align: center;
}

.privacy-title {
  font-size: 30px;
  letter-spacing: 1.5px;
  padding-top: 51px;
  padding-bottom: 41px;
}

.privacy-text {
  text-align: left;
}

.privacy-footer {
  height: 70px;
  background-color: #F4F1EF;
}

@media (max-width: 767px) {
  .privacy-content {
    padding: 0;
  }
  .privacy-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 12px;
    padding-bottom: 60px;
    line-height: 30px;
  }
  .privacy-text-inner {
    max-width: 310px;
  }
  .privacy-text span {
    font-size: 17px;
  }
  .privacy-title {
    font-size: 20px;
    letter-spacing: 0px;
    padding-top: 51px;
    padding-bottom: 41px;
  }
}
/*# sourceMappingURL=style.css.map */