@charset "UTF-8";
@import url("../scss/reset.css");
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@500;700&display=swap");
/* iOSでのデフォルトスタイルをリセット */
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

@media screen and (max-width: 959px) {
  .pc_only {
    display: none !important;
  }
  .sp_only {
    display: block !important;
  }
}
@media screen and (min-width: 960px) {
  .pc_only {
    display: block !important;
  }
  .sp_only {
    display: none !important;
  }
}
body {
  color: #234783;
  letter-spacing: 0.08em;
  font-family: "Zen Maru Gothic", serif;
  background-color: #f6f6f6;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
}
@media screen and (max-width: 959px) {
  body {
    font-size: 14px;
  }
}
@media screen and (max-width: 479px) {
  body {
    font-size: 14px;
  }
}
body input,
body button {
  font-family: inherit;
}
body a {
  color: inherit;
  transition: 0.3s;
}
body p {
  line-height: 1.8;
  letter-spacing: 0.05em;
}
body strong {
  font-weight: bold;
}
body .underline {
  text-decoration: underline;
}
body img {
  max-width: 100%;
  height: auto;
}
body iframe {
  max-width: 100%;
}
@media screen and (max-width: 959px) {
  body {
    font-size: 14px;
  }
}

.container {
  width: 100%;
  max-width: 100%;
  margin: auto;
  box-sizing: border-box;
  padding: 0 16vw;
}
@media screen and (max-width: 959px) {
  .container {
    padding: 0 5vw;
  }
}

ul.normal-list li {
  line-height: 1.8;
  padding-left: 1.4em;
  position: relative;
}
ul.normal-list li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0.5em;
}

ol.normal-list {
  list-style: decimal;
  padding-left: 2em;
}
ol.normal-list li {
  line-height: 1.8;
}

.page {
  padding: 120px 0px 120px;
  overflow: hidden;
}
@media screen and (max-width: 959px) {
  .page {
    padding: 80px 0px 80px;
  }
}
.page__heading {
  text-align: center;
}
.page__heading .heading-en {
  font-size: 28px;
  position: relative;
}
@media screen and (max-width: 959px) {
  .page__heading .heading-en {
    font-size: 28px;
  }
}
@media screen and (max-width: 479px) {
  .page__heading .heading-en {
    font-size: 28px;
  }
}
.page__heading .heading-en::before {
  position: absolute;
  content: "";
  background-image: url(/assets/images/common/heading-deco.svg);
  background-repeat: no-repeat;
  right: 0;
  left: 0;
  top: -40%;
  margin: auto;
  width: 60px;
  height: 30px;
}
.page__heading .heading-ja {
  font-size: 14px;
}
@media screen and (max-width: 959px) {
  .page__heading .heading-ja {
    font-size: 14px;
  }
}
@media screen and (max-width: 479px) {
  .page__heading .heading-ja {
    font-size: 14px;
  }
}
.page__body {
  margin-top: 50px;
}
@media screen and (max-width: 959px) {
  .page__body {
    margin-top: calc(50 * 2 / 10 * 1vw);
  }
}

.mv-fade-in {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(10px);
  will-change: transform, filter, opacity;
  transition: opacity 1s ease, filter 0.7s ease 0.2s, transform 1.7s ease 0.2s;
}
.mv-fade-in.active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.mv-fade-in.delay-1 {
  transition-delay: 1s;
}
.mv-fade-in.delay-2 {
  transition-delay: 2s;
}
.mv-fade-in.delay-3 {
  transition-delay: 3s;
}
.mv-fade-in.delay-4 {
  transition-delay: 4s;
}
.mv-fade-in.delay-5 {
  transition-delay: 3s;
}
.mv-fade-in.delay-6 {
  transition-delay: 3.6s;
}

.fade-in {
  opacity: 0;
  transition: opacity 0.7s ease, filter 0.7s ease 0.2s, transform 0.7s ease 0.2s;
  opacity: 0;
  transform: translateY(10px);
  filter: blur(10px);
  will-change: filter;
}
.fade-in.active {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0px);
}
.fade-in.delay-1 {
  transition-delay: 1s;
}
.fade-in.delay-2 {
  transition-delay: 1.5s;
}
.fade-in.delay-3 {
  transition-delay: 2s;
}

.pukapuka {
  animation: pukapuka 1.4s ease-in-out infinite alternate-reverse;
}

@keyframes pukapuka {
  0% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(5px);
  }
}
.bg-white {
  background-color: #fff;
}

.flex-reverse {
  flex-direction: row-reverse;
}

.margin-l-0 {
  margin-left: calc(50% - 50vw);
}
@media screen and (max-width: 959px) {
  .margin-l-0 {
    margin-left: auto;
  }
}

.margin-r-0 {
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 959px) {
  .margin-r-0 {
    margin-right: auto;
  }
}

.yellow-line {
  position: relative;
  display: inline-block;
  z-index: 0;
}
.yellow-line::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 5px;
  bottom: 2px;
  right: 0;
  background: #ffdc26;
  z-index: -1;
}

.orange {
  color: #e17421;
}

.white {
  color: #fff;
}

.bg-blue {
  background-color: #234783;
}

.button-simple {
  width: 190px;
  color: #f6f6f6;
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  background-color: #234783;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 8px;
  padding-bottom: 8px;
  box-sizing: border-box;
  border-radius: 50px;
  border: 1px solid #234783;
  transition: 0.5s;
}
@media screen and (max-width: 959px) {
  .button-simple {
    padding-left: calc(20 * 2 / 10 * 1vw);
    padding-right: calc(20 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .button-simple {
    padding-top: calc(8 * 2 / 10 * 1vw);
    padding-bottom: calc(8 * 2 / 10 * 1vw);
  }
}
.button-simple::after {
  content: url(/assets/images/icon/arrow-right--white.svg);
  transition: 0.5s;
}
.button-simple:hover {
  color: #234783;
  background-color: #f6f6f6;
}
.button-simple:hover::after {
  transform: translateX(4px);
  content: url(/assets/images/icon/arrow-right--blue.svg);
}
.button-simple.--white {
  background-color: #f6f6f6;
  color: #234783;
  border: unset;
}
.button-simple.--white::after {
  content: url(/assets/images/icon/arrow-right--blue.svg);
}
.button-simple.--white:hover {
  color: #f6f6f6;
  background-color: #234783;
}
.button-simple.--white:hover::after {
  transform: translateX(4px);
  content: url(/assets/images/icon/arrow-right--white.svg);
}

.button-mega {
  width: 80%;
  margin: auto;
  background-color: #f6f6f6;
  color: #234783;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 18px;
  padding-bottom: 18px;
  box-sizing: border-box;
  border-radius: 22px;
  position: relative;
  font-size: 18px;
  text-align: center;
  display: block;
}
@media screen and (max-width: 959px) {
  .button-mega {
    padding-left: calc(20 * 2 / 10 * 1vw);
    padding-right: calc(20 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .button-mega {
    padding-top: calc(18 * 2 / 10 * 1vw);
    padding-bottom: calc(18 * 2 / 10 * 1vw);
  }
}
.button-mega::after {
  position: absolute;
  right: 16px;
  content: url(/assets/images/icon/arrow-right--blue.svg);
}

.page__catch {
  margin-top: 40px;
  text-align: center;
}
@media screen and (max-width: 959px) {
  .page__catch {
    margin-top: calc(40 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .page__catch {
    margin-top: -80px;
  }
}
.page__catch .catch-main {
  font-size: 22px;
}
@media screen and (max-width: 959px) {
  .page__catch .catch-main {
    font-size: 20px;
  }
}
@media screen and (max-width: 479px) {
  .page__catch .catch-main {
    font-size: 20px;
  }
}
.page__catch .catch-main .large {
  font-size: 32px;
}
@media screen and (max-width: 959px) {
  .page__catch .catch-main .large {
    font-size: 25px;
  }
}
@media screen and (max-width: 479px) {
  .page__catch .catch-main .large {
    font-size: 25px;
  }
}
.page__catch .catch-sub {
  font-size: 18px;
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 0.2em;
}
@media screen and (max-width: 959px) {
  .page__catch .catch-sub {
    font-size: 14px;
  }
}
@media screen and (max-width: 479px) {
  .page__catch .catch-sub {
    font-size: 14px;
  }
}
@media screen and (max-width: 959px) {
  .page__catch .catch-sub {
    margin-top: calc(10 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .page__catch .catch-sub {
    gap: 0.6em;
  }
}
.page__catch .catch-sub:before, .page__catch .catch-sub:after {
  color: #234783;
}
@media screen and (max-width: 959px) {
  .page__catch .catch-sub:before, .page__catch .catch-sub:after {
    font-size: 28px;
    font-weight: normal;
  }
}
.page__catch .catch-sub:before {
  content: "(";
}
.page__catch .catch-sub:after {
  content: ")";
}

.corner {
  position: relative;
}
.corner .top-corner:before, .corner .top-corner:after {
  position: absolute;
  top: 0;
}
.corner .top-corner:before {
  content: url(/assets/images/common/top-left.svg);
  left: 0;
}
.corner .top-corner:after {
  content: url(/assets/images/common/top-right.svg);
  right: 0;
}
.corner .bottom-corner:before, .corner .bottom-corner:after {
  position: absolute;
  bottom: -6px;
}
@media screen and (max-width: 959px) {
  .corner .bottom-corner:before, .corner .bottom-corner:after {
    bottom: -4px;
  }
}
.corner .bottom-corner:before {
  content: url(/assets/images/common/bottom-left.svg);
  left: 0;
}
.corner .bottom-corner:after {
  content: url(/assets/images/common/bottom-right.svg);
  right: 0;
}

.tel {
  font-size: 30px;
}
@media screen and (max-width: 959px) {
  .tel {
    font-size: 20px;
  }
}
@media screen and (max-width: 479px) {
  .tel {
    font-size: 20px;
  }
}
.tel span {
  font-size: 15px;
}
@media screen and (max-width: 959px) {
  .tel span {
    font-size: 12px;
  }
}
@media screen and (max-width: 479px) {
  .tel span {
    font-size: 12px;
  }
}

.mail {
  width: 60px;
}

.header {
  width: 100%;
  top: 0;
  left: 0;
  position: sticky;
  z-index: 10;
  box-sizing: border-box;
  transition: 0.5s;
}
.header.scrolled {
  background-color: #f6f6f6;
}
.header.scrolled .header__navi {
  opacity: 1;
}
.header.active {
  background-color: unset;
}
.header.active .header__logo {
  opacity: 0;
}
.header__inner {
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 959px) {
  .header__inner {
    padding-top: calc(16 * 2 / 10 * 1vw);
    padding-bottom: calc(16 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .header__inner {
    padding-left: calc(40 * 2 / 10 * 1vw);
    padding-right: calc(40 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .header__inner {
    padding: 6vw 4vw;
  }
}
.header__wrap {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  max-width: 260px;
  width: 100%;
}
@media screen and (max-width: 959px) {
  .header__logo {
    width: 54vw;
  }
}
.header__cta-block {
  display: flex;
  justify-content: flex-end;
  gap: 0.8em;
  align-items: center;
}
@media screen and (max-width: 959px) {
  .header__cta-block {
    display: none;
  }
}
.header__navi {
  position: absolute;
  top: 78%;
  left: 1%;
  opacity: 0;
  transition: 0.5s;
}
@media screen and (max-width: 959px) {
  .header__navi {
    display: none;
  }
}
.header__sp-menu {
  margin-left: auto;
  display: none;
}
@media screen and (max-width: 959px) {
  .header__sp-menu {
    display: block;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translate(0, -50%);
  }
}

.header-navi__inner {
  padding: 15px;
  background-color: #f6f6f6;
  border-radius: 20px;
    font-size: 14px;
}

@media screen and (max-width: 959px) {
  .header-navi__inner {
    padding: calc(25 * 2 / 10 * 1vw);
  }
}
.header-navi__item {
  text-transform: uppercase;
}
.header-navi__item:not(:first-child) {
  margin-top: 12px;
}
@media screen and (max-width: 959px) {
  .header-navi__item:not(:first-child) {
    margin-top: calc(12 * 2 / 10 * 1vw);
  }
}

.menu-trigger {
  display: block;
  transition: 0.5s;
  box-sizing: border-box;
  position: relative;
  background-color: #234783;
  cursor: pointer;
}
@media screen and (max-width: 959px) {
  .menu-trigger {
    width: 40px;
    height: 40px;
    border-radius: 50px;
  }
}
.menu-trigger span {
  display: inline-block;
  transition: 0.5s;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 14px;
  height: 2px;
  background-color: #f6f6f6;
}
.menu-trigger span:nth-of-type(1) {
  top: 14px;
}
.menu-trigger span:nth-of-type(2) {
  top: 50%;
  transform: translate(0, -50%);
}
.menu-trigger span:nth-of-type(3) {
  bottom: 14px;
}
.menu-trigger.active {
  background-color: #f6f6f6;
}
.menu-trigger.active span {
  width: 18px;
  background-color: #234783;
}
.menu-trigger.active span:nth-of-type(1) {
  transform: translate(0, -50%) rotate(-40deg);
  top: 50%;
}
.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger.active span:nth-of-type(3) {
  transform: translate(0, -50%) rotate(40deg);
  top: 43%;
}

.sp-navi {
  display: none;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  position: fixed;
  padding-top: 17vw;
  top: 0;
  z-index: 9;
  background: #234783;
  color: #f6f6f6;
  transition: all 0.9s cubic-bezier(0.5, 0, 0, 1);
  box-sizing: border-box;
  opacity: 0;
  pointer-events: none;
}
.sp-navi.active {
  transform: translateY(0%);
  transition: all 0.9s cubic-bezier(0.5, 0, 0, 1);
  opacity: 1;
  pointer-events: auto;
}
.sp-navi__wrap {
  padding: 10px 10px 40px 10px;
  box-sizing: border-box;
}
.sp-navi__item {
  display: block;
  padding-top: 14px;
  padding-bottom: 14px;
  font-size: 18px;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (max-width: 959px) {
  .sp-navi__item {
    padding-top: calc(14 * 2 / 10 * 1vw);
    padding-bottom: calc(14 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .sp-navi__item {
    font-size: 18px;
  }
}
@media screen and (max-width: 479px) {
  .sp-navi__item {
    font-size: 18px;
  }
}
.sp-navi__cta-button {
  margin-top: 30px;
}
@media screen and (max-width: 959px) {
  .sp-navi__cta-button {
    margin-top: calc(30 * 2 / 10 * 1vw);
  }
}
.sp-navi__tel {
  text-align: center;
  margin-top: 10px;
}
.sp-navi__tel.tel {
  font-size: 30px !important;
}
.sp-navi__tel.tel span {
  font-size: 15px !important;
}
.sp-navi__logo {
  width: 60%;
  margin: auto;
  margin-top: 40px;
}
.sp-navi__address {
  font-size: 11px;
  text-align: center;
}
.sp-navi__button {
  margin: auto;
  width: fit-content;
  margin-top: 20px;
}
@media screen and (max-width: 1047px) {
  .sp-navi {
    display: block;
  }
}

.main-visual__wrap {
  width: 100%;
  height: 100vh;
  overflow-x: clip;
}
@media screen and (max-width: 959px) {
  .main-visual__wrap {
    height: 70vh;
  }
}
.main-visual__container {
  position: relative;
  width: 100%;
  height: 100%;
}
.main-visual__catch {
  padding-left: 6vw;
  padding-top: 6vw;
  font-size: 2.6vw;
}
@media screen and (max-width: 959px) {
  .main-visual__catch {
    text-align: right;
    font-size: 6.6vw;
    padding-left: unset;
    padding-top: 8vw;
    padding-right: 6vw;
  }
}
.main-visual__catch span {
  font-size: 2.8vw;
  color: #6994dc;
}
@media screen and (max-width: 959px) {
  .main-visual__catch span {
    font-size: 6.8vw;
  }
}
.main-visual__image {
  position: absolute;
}
.main-visual__image.--01 {
  width: 42vw;
  top: 0;
  right: 6%;
}
@media screen and (max-width: 959px) {
  .main-visual__image.--01 {
    width: 72vw;
    top: 30%;
    right: -16%;
  }
}
.main-visual__image.--02 {
  width: 38vw;
  bottom: 0;
  left: 10%;
}
@media screen and (max-width: 959px) {
  .main-visual__image.--02 {
    width: 72vw;
    bottom: 0;
    left: -20%;
    top: 6%;
  }
}
.main-visual__image.--03 {
  width: 10vw;
  bottom: 14%;
  right: 5%;
}
@media screen and (max-width: 959px) {
  .main-visual__image.--03 {
    width: 25vw;
    bottom: 20%;
    left: 6%;
  }
}
.main-visual__image.--04 {
  width: 15vw;
  top: 28%;
  left: 7%;
}
@media screen and (max-width: 959px) {
  .main-visual__image.--04 {
    width: 40vw;
    top: auto;
    bottom: 40%;
    left: 4%;
  }
}
.main-visual__bg {
  position: absolute;
  z-index: -1;
}
.main-visual__bg img {
  width: 100%;
}
.main-visual__bg.--01 {
  width: 52vw;
  left: -8%;
  top: 0;
}
@media screen and (max-width: 959px) {
  .main-visual__bg.--01 {
    width: 72vw;
    left: -8%;
    top: -1%;
  }
}
.main-visual__bg.--02 {
  width: 54vw;
  right: -12%;
  bottom: -4%;
}
@media screen and (max-width: 959px) {
  .main-visual__bg.--02 {
    width: 90vw;
    right: 3%;
    bottom: 14%;
  }
}

.post {
  margin-top: 80px;
}
@media screen and (max-width: 959px) {
  .post {
    margin-top: calc(80 * 2 / 10 * 1vw);
  }
}
.post__heading {
  font-size: 20px;
}
@media screen and (max-width: 959px) {
  .post__heading {
    font-size: 16px;
  }
}
@media screen and (max-width: 479px) {
  .post__heading {
    font-size: 16px;
  }
}
.post__item-block {
  margin-top: 10px;
}
@media screen and (max-width: 959px) {
  .post__item-block {
    margin-top: calc(10 * 2 / 10 * 1vw);
  }
}
.post__item-block .post-item {
  border-bottom: 1px dashed #234783;
}
.post__item-block .post-item__inner {
  padding-top: 20px;
  padding-bottom: 20px;
}
@media screen and (max-width: 959px) {
  .post__item-block .post-item__inner {
    padding-top: calc(20 * 2 / 10 * 1vw);
    padding-bottom: calc(20 * 2 / 10 * 1vw);
  }
}
.post__item-block .post-item__container {
  display: flex;
  justify-content: space-between;
  gap: 2em;
}
@media screen and (max-width: 959px) {
  .post__item-block .post-item__container {
    display: block;
  }
}
.post__item-block .post-item__date {
  width: 10%;
  padding-right: 10px;
}
@media screen and (max-width: 959px) {
  .post__item-block .post-item__date {
    padding-right: calc(10 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .post__item-block .post-item__date {
    width: 100%;
  }
}
.post__item-block .post-item__text-block {
  flex: 1;
}
@media screen and (max-width: 959px) {
  .post__item-block .post-item__text-block {
    margin-top: 10px;
  }
}
@media screen and (max-width: 959px) and (max-width: 959px) {
  .post__item-block .post-item__text-block {
    margin-top: calc(10 * 2 / 10 * 1vw);
  }
}
.post__item-block .post-item__text {
  margin-top: 10px;
  font-size: 14px;
}
@media screen and (max-width: 959px) {
  .post__item-block .post-item__text {
    margin-top: calc(10 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .post__item-block .post-item__text {
    font-size: 12px;
  }
}
@media screen and (max-width: 479px) {
  .post__item-block .post-item__text {
    font-size: 12px;
  }
}
.post__item-block .post-item__button {
  margin: 0 0 0 auto;
  width: fit-content;
  margin-top: 10px;
}
@media screen and (max-width: 959px) {
  .post__item-block .post-item__button {
    margin-top: calc(10 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .post__item-block .post-item__button {
    margin: auto;
    margin-top: 20px;
  }
}
.post__item-block .post-item a {
  display: block;
}
.post__item-block .post-item a:hover .button-simple::after {
  transform: translateX(4px);
}

.features__container {
  position: relative;
}
.features__item-block {
  display: flex;
  justify-content: space-between;
  gap: 4em 0;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.features .features-item {
  width: calc(50% - 1em);
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
}
@media screen and (max-width: 959px) {
  .features .features-item {
    padding-left: calc(10 * 2 / 10 * 1vw);
    padding-right: calc(10 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .features .features-item {
    width: 100%;
  }
}
.features .features-item__image img {
  border-radius: 30px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.features .features-item__heading {
  margin-top: 15px;
  text-align: center;
  font-size: 26px;
}
@media screen and (max-width: 1300px) {
  .features .features-item__heading {
    font-size: 20px;
  }
}
@media screen and (max-width: 959px) {
  .features .features-item__heading {
    margin-top: calc(15 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .features .features-item__heading {
    font-size: 18px;
  }
}
@media screen and (max-width: 479px) {
  .features .features-item__heading {
    font-size: 18px;
  }
}
.features .features-item__text {
  margin-top: 20px;
  text-align: justify;    
}
@media screen and (max-width: 959px) {
  .features .features-item__text {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}
.features__bg {
  position: absolute;
  z-index: 0;
}
.features__bg img {
  width: 100%;
}
.features__bg.--01 {
  left: -26%;
  top: 10%;
  width: 50vw;
}
@media screen and (max-width: 959px) {
  .features__bg.--01 {
    left: -48%;
    top: 7%;
    width: 130vw;
  }
}
.features__bg.--02 {
  right: -28%;
  bottom: -4%;
  width: 50vw;
}
@media screen and (max-width: 959px) {
  .features__bg.--02 {
    right: -38%;
    bottom: -3%;
    width: 122vw;
  }
}

.about__container {
  display: flex;
  gap: 2em;
  align-items: flex-end;
  position: relative;
}
.about__container::after {
  content: "";
  position: absolute;
  width: 70%;
  height: 460px;
  right: 0;
  top: 5%;
  z-index: -1;
  border-radius: 30px;
  background: #fff;
}
@media screen and (max-width: 959px) {
  .about__container::after {
    display: none;
  }
}
@media screen and (max-width: 959px) {
  .about__container {
    display: block;
  }
}
.about__image {
  width: 56%;
  padding-bottom: 70px;
}
@media screen and (max-width: 959px) {
  .about__image {
    padding-bottom: calc(70 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .about__image {
    padding-bottom: 0;
    width: 100%;
  }
}
.about__image img {
  border-radius: 30px;
}
.about__text-block {
  flex: 1;
}
@media screen and (max-width: 959px) {
  .about__text-block {
    margin-top: 20px;
  }
}
@media screen and (max-width: 959px) and (max-width: 959px) {
  .about__text-block {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}
.about__text-block .text-block__inner {
  padding-right: 60px;
  box-sizing: border-box;
}
@media screen and (max-width: 959px) {
  .about__text-block .text-block__inner {
    padding-right: calc(60 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .about__text-block .text-block__inner {
    padding-right: unset;
  }
}
.about__text-block .text-block__heading {
  font-size: 20px;
}
@media screen and (max-width: 959px) {
  .about__text-block .text-block__heading {
    font-size: 20px;
  }
}
@media screen and (max-width: 479px) {
  .about__text-block .text-block__heading {
    font-size: 20px;
  }
}
.about__text-block .text-block__address {
  margin-top: 30px;
}
@media screen and (max-width: 959px) {
  .about__text-block .text-block__address {
    margin-top: calc(30 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .about__text-block .text-block__address {
    margin-top: 20px;
  }
}
@media screen and (max-width: 959px) and (max-width: 959px) {
  .about__text-block .text-block__address {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}
.about__text-block .text-block__button {
  margin-top: 20px;
}
@media screen and (max-width: 959px) {
  .about__text-block .text-block__button {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .about__text-block .text-block__button {
    width: fit-content;
    margin: auto;
    margin-top: 20px;
  }
}
@media screen and (max-width: 959px) and (max-width: 959px) {
  .about__text-block .text-block__button {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}
.about__illust {
  position: absolute;
  right: 0;
  top: -8%;
  width: 10vw;
}
@media screen and (max-width: 959px) {
  .about__illust {
    top: 34%;
    width: 24vw;
  }
}

.doctor__inner {
  padding-right: 4vw;
  box-sizing: border-box;
}
@media screen and (max-width: 959px) {
  .doctor__inner {
    padding-right: unset;
  }
}
.doctor__block:not(:first-child) {
  margin-top: 100px;
}
@media screen and (max-width: 959px) {
  .doctor__block:not(:first-child) {
    margin-top: calc(100 * 2 / 10 * 1vw);
  }
}
.doctor .message__heading {
  font-size: 38px;
  gap: 0.4em;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 959px) {
  .doctor .message__heading {
    font-size: 20px;
  }
}
@media screen and (max-width: 479px) {
  .doctor .message__heading {
    font-size: 20px;
  }
}
.doctor .message__heading.pc_only {
  display: flex !important;
}
@media screen and (max-width: 959px) {
  .doctor .message__heading.pc_only {
    display: none !important;
  }
}
@media screen and (max-width: 959px) {
  .doctor .message__heading {
    display: block;
    text-align: center;
    margin-top: 24px;
  }
}
.doctor .message__heading:before {
  content: "";
  background-image: url(/assets/images/doctor/heading-icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
  margin-top: 8px;
  display: block;
}
@media screen and (max-width: 959px) {
  .doctor .message__heading:before {
    margin: auto;
  }
}
.doctor .message__container {
  display: flex;
  gap: 2em;
  margin-top: 20px;
}
@media screen and (max-width: 959px) {
  .doctor .message__container {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .doctor .message__container {
    display: block;
  }
}
.doctor .message__text {
  flex: 1;
}
@media screen and (max-width: 959px) {
  .doctor .message__text {
    margin-top: 18px;
  }
}
.doctor .message__text p {
  text-align: justify;
}
.doctor .message__text p:not(:first-child) {
  margin-top: 16px;
}
@media screen and (max-width: 959px) {
  .doctor .message__text p:not(:first-child) {
    margin-top: calc(16 * 2 / 10 * 1vw);
  }
}
.doctor .message__profile {
  width: 30%;
}
@media screen and (max-width: 959px) {
  .doctor .message__profile {
    width: 80%;
    margin: auto;
  }
}
.doctor .message__image img {
  border-radius: 30px;
}
.doctor .message__name {
  margin-top: 20px;
  text-align: center;
}
@media screen and (max-width: 959px) {
  .doctor .message__name {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}
.doctor .message__name span {
  font-size: 12px;
}
@media screen and (max-width: 959px) {
  .doctor .message__name span {
    font-size: 12px;
  }
}
@media screen and (max-width: 479px) {
  .doctor .message__name span {
    font-size: 12px;
  }
}
.doctor__bio {
  margin-top: 60px;
}
@media screen and (max-width: 959px) {
  .doctor__bio {
    margin-top: calc(60 * 2 / 10 * 1vw);
  }
}
.doctor__bio .bio__container {
  display: flex;
  justify-content: space-between;
  gap: 2em;
}
@media screen and (max-width: 959px) {
  .doctor__bio .bio__container {
    display: block;
  }
}
.doctor__bio .bio__container .bio-box {
  background-color: #fff;
  border-radius: 30px;
}
.doctor__bio .bio__container .bio-box__inner {
  padding: 20px;
  box-sizing: border-box;
}
.doctor__bio .bio__container .bio-box__flex-box {
  display: flex;
  gap: 2em;
}
@media screen and (max-width: 959px) {
  .doctor__bio .bio__container .bio-box__flex-box {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 959px) {
  .doctor__bio .bio__container .bio-box__block {
    width: 100%;
  }
}
.doctor__bio .bio__container .bio-box__item:nth-child(2) {
  margin-top: 50px;
}
@media screen and (max-width: 959px) {
  .doctor__bio .bio__container .bio-box__item:nth-child(2) {
    margin-top: calc(50 * 2 / 10 * 1vw);
  }
}
.doctor__bio .bio__container .bio-box__heading {
  font-size: 20px;
}
@media screen and (max-width: 959px) {
  .doctor__bio .bio__container .bio-box__heading {
    font-size: 18px;
  }
}
@media screen and (max-width: 479px) {
  .doctor__bio .bio__container .bio-box__heading {
    font-size: 18px;
  }
}
.doctor__bio .bio__container .bio-box__text {
  margin-top: 15px;
}
@media screen and (max-width: 1300px) {
  .doctor__bio .bio__container .bio-box__text {
   font-size: 14px;
  }
}
@media screen and (max-width: 959px) {
  .doctor__bio .bio__container .bio-box__text {
    margin-top: calc(15 * 2 / 10 * 1vw);
  }
}
.doctor__bio .bio__container .bio-box.--01 {
  width: 48%;
}
@media screen and (max-width: 959px) {
  .doctor__bio .bio__container .bio-box.--01 {
    width: 100%;
  }
}
.doctor__bio .bio__container .bio-box.--02 {
  flex: 1;
}
@media screen and (max-width: 959px) {
  .doctor__bio .bio__container .bio-box.--02 {
    margin-top: 20px;
  }
}
@media screen and (max-width: 959px) and (max-width: 959px) {
  .doctor__bio .bio__container .bio-box.--02 {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}
.doctor__bio .bio__container .bio-box table th,
.doctor__bio .bio__container .bio-box table td {
  padding-top: 8px;
  padding-bottom: 8px;
}
@media screen and (max-width: 959px) {
  .doctor__bio .bio__container .bio-box table th,
  .doctor__bio .bio__container .bio-box table td {
    padding-top: calc(8 * 2 / 10 * 1vw);
    padding-bottom: calc(8 * 2 / 10 * 1vw);
  }
}
.doctor__bio .bio__container .bio-box table th {
  width: 14%;
  text-align: left;
  padding-right: 10px;
  box-sizing: border-box;
}
@media screen and (max-width: 959px) {
  .doctor__bio .bio__container .bio-box table th {
    padding-right: calc(10 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .doctor__bio .bio__container .bio-box table th {
    width: 18%;
  }
}

.details {
  padding-bottom: 60px;
  position: relative;
}
@media screen and (max-width: 959px) {
  .details {
    padding-bottom: calc(60 * 2 / 10 * 1vw);
  }
}
.details__image {
  z-index: -2;
  position: relative;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.details__text-block {
  margin-top: 100px;
}
@media screen and (max-width: 959px) {
  .details__text-block {
    margin-top: calc(100 * 2 / 10 * 1vw);
  }
}
.details__text-block:last-child {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 60px;
}
@media screen and (max-width: 959px) {
  .details__text-block:last-child {
    margin-top: calc(60 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .details__text-block:last-child {
    margin-top: 240px;
  }
}
.details__text-block .text-block__container {
  margin-top: 20px;
}
@media screen and (max-width: 959px) {
  .details__text-block .text-block__container {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}
.details__text-block .text-block__heading {
  font-size: 26px;
}
@media screen and (max-width: 959px) {
  .details__text-block .text-block__heading {
    font-size: 26px;
  }
}
@media screen and (max-width: 479px) {
  .details__text-block .text-block__heading {
    font-size: 26px;
  }
}
@media screen and (max-width: 959px) {
  .details__text-block .text-block__heading {
    text-align: center;
  }
}
.details__text-block .text-block__text {
  max-width: 360px;
}
.details__text-block .text-block__text:not(:first-child) {
  margin-top: 12px;
}
@media screen and (max-width: 959px) {
  .details__text-block .text-block__text:not(:first-child) {
    margin-top: calc(12 * 2 / 10 * 1vw);
  }
}
.details__text-block .text-block__text .small {
  font-size: 14px;
}
@media screen and (max-width: 959px) {
  .details__text-block .text-block__text .small {
    font-size: 14px;
  }
}
@media screen and (max-width: 479px) {
  .details__text-block .text-block__text .small {
    font-size: 14px;
  }
}
.details__text-block .text-block__text.--large {
  font-size: 18px;
}
@media screen and (max-width: 959px) {
  .details__text-block .text-block__text.--large {
    font-size: 18px;
  }
}
@media screen and (max-width: 479px) {
  .details__text-block .text-block__text.--large {
    font-size: 18px;
  }
}
@media screen and (max-width: 959px) {
  .details__text-block .text-block__text.--large {
    text-align: center;
  }
}
.details__text-block .text-block__text.--medium {
  font-size: 18px;
}
@media screen and (max-width: 959px) {
  .details__text-block .text-block__text.--medium {
    font-size: 14px;
  }
}
@media screen and (max-width: 479px) {
  .details__text-block .text-block__text.--medium {
    font-size: 14px;
  }
}
.details__text-block .text-block__white-box {
  margin-top: 30px;
}
@media screen and (max-width: 959px) {
  .details__text-block .text-block__white-box {
    margin-top: calc(30 * 2 / 10 * 1vw);
  }
}
.details__text-block .text-block__white-box .white-box {
  background-color: #fff;
  border-radius: 30px;
  width: 38%;
}
@media screen and (max-width: 959px) {
  .details__text-block .text-block__white-box .white-box {
    width: 100%;
  }
}
.details__text-block .text-block__white-box .white-box__inner {
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
@media screen and (max-width: 959px) {
  .details__text-block .text-block__white-box .white-box__inner {
    padding-top: calc(20 * 2 / 10 * 1vw);
    padding-bottom: calc(20 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .details__text-block .text-block__white-box .white-box__inner {
    padding-left: calc(20 * 2 / 10 * 1vw);
    padding-right: calc(20 * 2 / 10 * 1vw);
  }
}
.details__text-block .text-block__white-box .white-box__container {
  display: flex;
  justify-content: flex-start;
  gap: 2em;
}
@media screen and (max-width: 959px) {
  .details__text-block .text-block__white-box .white-box__container {
    flex-wrap: wrap;
    gap: 1em;
  }
}
.details__text-block .text-block__white-box .white-box__heading {
  text-align: center;
  font-size: 20px;
}
@media screen and (max-width: 959px) {
  .details__text-block .text-block__white-box .white-box__heading {
    font-size: 18px;
  }
}
@media screen and (max-width: 479px) {
  .details__text-block .text-block__white-box .white-box__heading {
    font-size: 18px;
  }
}
.details__text-block .text-block__white-box .white-box__text {
  margin-top: 15px;
  text-align: center;
  font-size: 18px;
  line-height: 1.3;
}
@media screen and (max-width: 959px) {
  .details__text-block .text-block__white-box .white-box__text {
    margin-top: calc(15 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .details__text-block .text-block__white-box .white-box__text {
    font-size: 14px;
  }
}
@media screen and (max-width: 479px) {
  .details__text-block .text-block__white-box .white-box__text {
    font-size: 14px;
  }
}
.details__text-block .text-block__white-box .white-box__text span {
  font-size: 16px;
}
@media screen and (max-width: 959px) {
  .details__text-block .text-block__white-box .white-box__text span {
    font-size: 12px;
  }
}
@media screen and (max-width: 479px) {
  .details__text-block .text-block__white-box .white-box__text span {
    font-size: 12px;
  }
}
.details__text-block .text-block__note {
  margin-top: 30px;
}
@media screen and (max-width: 959px) {
  .details__text-block .text-block__note {
    margin-top: calc(30 * 2 / 10 * 1vw);
  }
}
.details__price {
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
}
@media screen and (max-width: 959px) {
  .details__price {
    padding-top: calc(60 * 2 / 10 * 1vw);
    padding-bottom: calc(60 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .details__price .text-block__heading {
    text-align: left;
  }
}
.details__bg {
  position: absolute;
  bottom: -121px;
  z-index: 0;
  width: 700px;
  right: 0;
}
@media screen and (max-width: 959px) {
  .details__bg {
    width: 375px;
    bottom: -26px;
  }
}

.flow__heading {
  text-align: center;
  font-size: 26px;
}
@media screen and (max-width: 959px) {
  .flow__heading {
    font-size: 20px;
  }
}
@media screen and (max-width: 479px) {
  .flow__heading {
    font-size: 20px;
  }
}
.flow .flow-item {
  background-color: #fff;
  border-radius: 30px;
  flex: 1;
  height: fit-content;
  position: relative;
}
@media screen and (max-width: 959px) {
  .flow .flow-item {
    flex: unset;
    width: 100%;
  }
  .flow .flow-item:not(:last-child)::after {
    margin: 0 auto;
    content: url(/assets/images/icon/arrow-down--yellow.svg);
    margin: auto;
    position: absolute;
    right: 0;
    left: 0;
    bottom: -64px;
    text-align: center;
    z-index: 2;
  }
}
.flow .flow-item__block {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 2em;
}
@media screen and (max-width: 959px) {
  .flow .flow-item__block {
    margin-top: calc(24 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .flow .flow-item__block {
    flex-wrap: wrap;
    gap: 4.6em;
  }
}
.flow .flow-item__inner {
  padding: 20px;
}
@media screen and (max-width: 959px) {
  .flow .flow-item__inner {
    padding: calc(20 * 2 / 10 * 1vw);
  }
}
.flow .flow-item__heading {
  text-align: center;
  font-size: 20px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 959px) {
  .flow .flow-item__heading {
    font-size: 18px;
  }
}
@media screen and (max-width: 479px) {
  .flow .flow-item__heading {
    font-size: 18px;
  }
}
.flow .flow-item__heading::after {
  content: url(/assets/images/icon/arrow-right--yellow.svg);
}
@media screen and (max-width: 959px) {
  .flow .flow-item__heading {
    position: relative;
    width: fit-content;
    margin: auto;
  }
  .flow .flow-item__heading::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 4px;
    background: #ffdc26;
    right: 0;
    bottom: 2px;
    z-index: -1;
  }
}
.flow .flow-item__title {
  text-align: center;
  color: #fff;
  width: 80%;
  margin: auto;
  border-radius: 50px;
  margin-top: 15px;
  background-color: #234783;
  padding-top: 8px;
  padding-bottom: 8px;
}
@media screen and (max-width: 959px) {
  .flow .flow-item__title {
    margin-top: calc(15 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .flow .flow-item__title {
    padding-top: calc(8 * 2 / 10 * 1vw);
    padding-bottom: calc(8 * 2 / 10 * 1vw);
  }
}
.flow .flow-item__image {
  margin-top: 20px;
}
@media screen and (max-width: 959px) {
  .flow .flow-item__image {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}
.flow .flow-item__image img {
  border-radius: 30px;
}
.flow .flow-item p {
  margin-top: 14px;
    
}
@media screen and (max-width: 1300px) {
  .flow .flow-item p {
    font-size: 14px;
  }
}
@media screen and (max-width: 959px) {
  .flow .flow-item p {
    margin-top: calc(14 * 2 / 10 * 1vw);
  }
}
.flow .flow-item p span {
  font-size: 14px;
}
@media screen and (max-width: 959px) {
  .flow .flow-item p span {
    font-size: 12px;
  }
}
@media screen and (max-width: 479px) {
  .flow .flow-item p span {
    font-size: 12px;
  }
}

#footer .footer-sub {
  background-color: #fff;
}
#footer .footer-sub__container {
  display: flex;
}
@media screen and (max-width: 959px) {
  #footer .footer-sub__container {
    display: block;
  }
}
#footer .footer-sub__image {
  width: 50%;
}
@media screen and (max-width: 959px) {
  #footer .footer-sub__image {
    width: 100%;
  }
}
#footer .footer-sub__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#footer .footer-sub__text-block {
  flex: 1;
  display: flex;
  align-items: center;
}
#footer .footer-sub__text-block .text-block:not(:first-child) {
  margin-top: 30px;
}
@media screen and (max-width: 959px) {
  #footer .footer-sub__text-block .text-block:not(:first-child) {
    margin-top: calc(30 * 2 / 10 * 1vw);
  }
}
#footer .footer-sub__text-block .text-block__inner {
  padding-top: 60px;
  padding-bottom: 60px;
  padding-left: 20px;
  padding-right: 80px;
  box-sizing: border-box;
}
@media screen and (max-width: 959px) {
  #footer .footer-sub__text-block .text-block__inner {
    padding-top: calc(60 * 2 / 10 * 1vw);
    padding-bottom: calc(60 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  #footer .footer-sub__text-block .text-block__inner {
    padding-left: calc(20 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  #footer .footer-sub__text-block .text-block__inner {
    padding-right: calc(15 * 2 / 10 * 1vw);
  }
    #footer .footer-sub__text-block .text-block__text {
        text-align: justify;
}
}
#footer .footer-sub__text-block .text-block__heading {
  font-size: 26px;
  display: flex;
  justify-content: flex-start;
  gap: 0.2em;
}
@media screen and (max-width: 959px) {
  #footer .footer-sub__text-block .text-block__heading {
    font-size: 20px;
  }
}
@media screen and (max-width: 479px) {
  #footer .footer-sub__text-block .text-block__heading {
    font-size: 20px;
  }
}
#footer .footer-sub__text-block .text-block__heading:before {
  content: "⚫︎";
  color: #ffdc26;
}
#footer .footer-sub__text-block .text-block__text {
  margin-top: 20px;
}
@media screen and (max-width: 959px) {
  #footer .footer-sub__text-block .text-block__text {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}
#footer .footer-main {
  background-image: url(/assets/images/common/footer-main.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
#footer .footer-main__inner {
  padding-top: 140px;
  padding-bottom: 30px;
}
@media screen and (max-width: 959px) {
  #footer .footer-main__inner {
    padding-top: calc(140 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  #footer .footer-main__inner {
    padding-bottom: calc(30 * 2 / 10 * 1vw);
  }
}
#footer .footer-main__container {
  width: fit-content;
  margin: auto;
}
#footer .footer-main__logo {
  width: fit-content;
  margin: auto;
}
#footer .footer-main__address {
  margin-top: 30px;
  font-size: 14px;
}
@media screen and (max-width: 959px) {
  #footer .footer-main__address {
    margin-top: calc(30 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  #footer .footer-main__address {
    font-size: 13px;
  }
}
@media screen and (max-width: 479px) {
  #footer .footer-main__address {
    font-size: 13px;
  }
}
#footer .footer-main__button {
  margin: auto;
  width: fit-content;
  margin-top: 10px;
}
@media screen and (max-width: 959px) {
  #footer .footer-main__button {
    margin-top: calc(10 * 2 / 10 * 1vw);
  }
}
#footer .footer-main__note {
  font-size: 12px;
  text-align: center;
  margin-top: 20px;
}
@media screen and (max-width: 959px) {
  #footer .footer-main__note {
    font-size: 12px;
  }
}
@media screen and (max-width: 479px) {
  #footer .footer-main__note {
    font-size: 12px;
  }
}
@media screen and (max-width: 959px) {
  #footer .footer-main__note {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}
#footer .footer-main__copy-right {
  margin-top: 80px;
  font-size: 10px;
  text-align: center;
}
@media screen and (max-width: 959px) {
  #footer .footer-main__copy-right {
    margin-top: calc(80 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  #footer .footer-main__copy-right {
    font-size: 10px;
  }
}
@media screen and (max-width: 479px) {
  #footer .footer-main__copy-right {
    font-size: 10px;
  }
}
#footer .footer-main__to-top {
  position: absolute;
  width: 75px;
  height: 75px;
  top: -35px;
  right: 30px;
}
@media screen and (max-width: 959px) {
  #footer .footer-main__to-top {
    width: 54px;
    height: 54px;
    top: -26px;
    right: 10px;
  }
}/*# sourceMappingURL=style.css.map */