@charset "UTF-8";
.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100px;
  background: #FFF;
  position: fixed;
  z-index: 10;
}
@media (max-width:767px) {
  .header {
    height: 60px;
  }
}

.header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header__logo img {
  width: 100px;
}
@media (max-width: 1000px) {
  .header__logo img {
    width: 80px;
  }
}
@media (max-width:767px) {
  .header__logo img {
    width: 80px;
  }
}

/*ハンバーガーボタン*/
.openbtn {
  position: fixed;
  z-index: 9999;
  top: 5px;
  right: 0px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: none;
}
@media (max-width:767px) {
  .openbtn {
    display: block;
  }
}

.openbtn span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  left: 13px;
  height: 3px;
  background-color: #99EBF2;
}

.openbtn span:nth-of-type(1) {
  top: 14px;
  width: 50%;
}

.openbtn span:nth-of-type(2) {
  top: 22px;
  width: 50%;
}

.openbtn span:nth-of-type(3) {
  top: 30px;
  width: 50%;
}

/*activeクラスが付与されると線が回転して×に*/
.openbtn.active span:nth-of-type(1) {
  top: 20px;
  left: 16px;
  -webkit-transform: translateY(6px) rotate(-45deg);
          transform: translateY(6px) rotate(-45deg);
  width: 50%;
  background: #fff;
}

.openbtn.active span:nth-of-type(2) {
  display: none;
}

.openbtn.active span:nth-of-type(3) {
  top: 32px;
  left: 16px;
  -webkit-transform: translateY(-6px) rotate(45deg);
          transform: translateY(-6px) rotate(45deg);
  width: 50%;
  background: #fff;
}

.header-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header-nav__item {
  position: relative;
  display: block;
  padding: 1em 0;
  margin-left: 1.5em;
  font-weight: 400;
  -webkit-text-stroke: 0.5px #1E257D;
}
@media (max-width:767px) {
  .header-nav__item {
    display: none;
  }
}

@media (max-width: 1000px) {
  .header-nav__item {
    font-size: 13px;
    margin-left: 4px;
  }
}
.header-nav__item a {
  padding: 1em 0;
}

.header-nav__item:last-child::before {
  display: none;
}

.header-nav__item::before {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 2px;
  background: #99EBF2;
  border-radius: 5px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
}
@media (max-width:767px) {
  .header-nav__item::before {
    display: none;
  }
}

.header-nav__item:hover::before {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.header__btn {
  position: relative;
  display: block;
  padding: 1em 0;
  font-weight: 500;
  color: #fff;
  font-weight: bold;
}
@media (max-width: 1000px) {
  .header__btn {
    margin-right: -10px;
  }
}
@media (max-width:767px) {
  .header__btn {
    margin-right: 30px;
  }
}

.header__btn a {
  padding: 13px 28px;
  background: linear-gradient(135deg, rgb(177, 229, 252) 0%, rgba(134, 225, 227, 0.9) 100%);
  border-radius: 50px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #fff;
  -webkit-text-stroke: 0px #fff;
}
.header__btn a:hover {
  opacity: 0.8;
}
@media (max-width:767px) {
  .header__btn a {
    padding: 10px 25px;
  }
}

#g-nav {
  position: fixed;
  z-index: -1;
  -webkit-transform: translateX(300%);
          transform: translateX(300%);
  top: 0;
  width: 100%;
  height: 100vh;
  background: #99EBF2;
  -webkit-transition: all 0.7s ease 0s;
  transition: all 0.7s ease 0s;
}
@media (min-width: 1200px) {
  #g-nav {
    display: none;
  }
}
@media (min-width:768px) and (max-width: 1200px) {
  #g-nav {
    display: none;
  }
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  z-index: 999;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
  display: none;
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#g-nav.panelactive ul {
  display: block;
}

.gnav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width:767px) {
  .gnav__list {
    display: block;
  }
}

.gnav_item__title span {
  font-family: "Parisienne", cursive;
  color: #fff;
  font-size: 2rem;
  text-transform: none;
  font-weight: normal;
  line-height: 1;
  white-space: nowrap;
  margin: 0 0 20px 0;
}

.gnav__link {
  list-style: none;
  text-align: center;
  margin: 2em 0;
}

.gnav__link a {
  color: #fff;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}

.section-title {
  font-size: 30px;
  font-weight: 500;
  display: inline-block;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(1%, rgba(248, 127, 142, 0.7)), color-stop(rgba(248, 127, 142, 0.7)), color-stop(#99EBF2), to(#99EBF2));
  background: linear-gradient(top, rgba(248, 127, 142, 0.7) 1%, rgba(248, 127, 142, 0.7), #99EBF2, #99EBF2);
  background: -webkit-linear-gradient(top, rgba(248, 127, 142, 0.7) 1%, rgba(248, 127, 142, 0.7), #99EBF2, #99EBF2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width:767px) {
  .section-title {
    font-size: 22px;
    margin-bottom: 10px;
  }
}
.section-title span {
  padding-right: 50px;
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width:767px) {
  .section-title span {
    padding-right: 20px;
  }
}
.section-title::after {
  content: "";
  top: 50%;
  right: 0;
  width: 100%;
  height: 2px;
  background: #99EBF2;
}

.section-title_lead {
  margin-top: 20px;
  font-size: 16px;
}
@media (max-width:767px) {
  .section-title_lead {
    font-size: 12px;
    margin-top: 10px;
  }
}

.section-title2 {
  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;
  font-size: 32px;
}
@media (max-width:767px) {
  .section-title2 {
    font-size: 22px;
  }
}
.section-title2::before, .section-title2::after {
  content: "";
  width: 70px;
  height: 3px;
}
@media (max-width:767px) {
  .section-title2::before, .section-title2::after {
    width: 50px;
    height: 2px;
  }
}
.section-title2::before {
  margin-right: 30px;
  background: rgba(248, 127, 142, 0.7);
}
.section-title2::after {
  margin-left: 30px;
  background: #99EBF2;
}

.section-title2_lead {
  text-align: center;
  margin-top: 10px;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
}
@media (max-width:767px) {
  .section-title2_lead {
    font-size: 14px;
  }
}

section {
  padding: 60px 0;
}
@media (max-width:767px) {
  section {
    padding: 30px 0;
  }
}

.inner {
  width: 1440px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.until_btn {
  margin-top: 60px;
}
@media (max-width:767px) {
  .until_btn {
    margin-top: 30px;
  }
}
.until_btn a {
  display: block;
  width: 300px;
  margin: 0 auto;
  text-align: center;
  padding: 20px 40px;
  background: linear-gradient(135deg, rgb(177, 229, 252) 0%, rgba(134, 225, 227, 0.9) 100%);
  -webkit-box-shadow: 1px 1px 3px #99EBF2;
          box-shadow: 1px 1px 3px #99EBF2;
  font-size: 18px;
  -webkit-box-shadow: 1px 1px 10px #C1DFE2;
          box-shadow: 1px 1px 10px #C1DFE2;
  color: #fff;
  text-shadow: 1px #fff;
  font-weight: 600;
  border-radius: 50px;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
@media (max-width:767px) {
  .until_btn a {
    width: 250px;
    padding: 15px 40px;
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .until_btn a:hover {
    -webkit-box-shadow: 1px 1px 30px #99EBF2;
            box-shadow: 1px 1px 30px #99EBF2;
  }
}

.plan {
  padding: 120px 0 0;
}
@media (max-width:767px) {
  .plan {
    padding: 60px 0 0;
  }
}

.plan-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 60px;
  width: 100%;
  gap: 50px;
}
@media (max-width:767px) {
  .plan-wrapper {
    gap: 30px;
    margin-top: 30px;
    margin-right: calc(50% - 50vw);
    overflow-x: scroll;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    -ms-overflow-style: none; /* IE, Edge 対応 */
    scrollbar-width: none; /* Firefox 対応 */
  }
}

.plan-item {
  width: calc((100% - 60px) / 3);
}
@media (max-width:767px) {
  .plan-item {
    min-width: 65%;
    display: inline-block;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.plan-img {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

@media (min-width: 1200px) {
  .plan-item:hover .plan-img {
    -webkit-filter: drop-shadow(1px 1px 10px #99EBF2);
            filter: drop-shadow(1px 1px 10px #99EBF2);
  }
}
.plan-img {
  position: relative;
}
.plan-img::before {
  content: "";
  position: absolute;
  right: 9px;
  bottom: 8px;
  width: 25px; /* pathのサイズ */
  height: 24px; /* pathのサイズ */
  background: #FF5252; /* 色 */
  -webkit-clip-path: path("M12 21.593c-5.63-5.539-11-10.297-11-14.402 0-3.791 3.068-5.191 5.281-5.191 1.312 0 4.151.501 5.719 4.457 1.59-3.968 4.464-4.447 5.726-4.447 2.54 0 5.274 1.621 5.274 5.181 0 4.069-5.136 8.625-11 14.402m5.726-20.583c-2.203 0-4.446 1.042-5.726 3.238-1.285-2.206-3.522-3.248-5.719-3.248-3.183 0-6.281 2.187-6.281 6.191 0 4.661 5.571 9.429 12 15.809 6.43-6.38 12-11.148 12-15.809 0-4.011-3.095-6.181-6.274-6.181");
          clip-path: path("M12 21.593c-5.63-5.539-11-10.297-11-14.402 0-3.791 3.068-5.191 5.281-5.191 1.312 0 4.151.501 5.719 4.457 1.59-3.968 4.464-4.447 5.726-4.447 2.54 0 5.274 1.621 5.274 5.181 0 4.069-5.136 8.625-11 14.402m5.726-20.583c-2.203 0-4.446 1.042-5.726 3.238-1.285-2.206-3.522-3.248-5.719-3.248-3.183 0-6.281 2.187-6.281 6.191 0 4.661 5.571 9.429 12 15.809 6.43-6.38 12-11.148 12-15.809 0-4.011-3.095-6.181-6.274-6.181");
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  z-index: 1;
}
.plan-img::after {
  position: absolute;
  content: "";
  right: 7px;
  bottom: 7px;
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 20px;
}

.plan-img.like::before {
  -webkit-clip-path: path("M12 4.248c-3.148-5.402-12-3.825-12 2.944 0 4.661 5.571 9.427 12 15.808 6.43-6.381 12-11.147 12-15.808 0-6.792-8.875-8.306-12-2.944z");
          clip-path: path("M12 4.248c-3.148-5.402-12-3.825-12 2.944 0 4.661 5.571 9.427 12 15.808 6.43-6.381 12-11.147 12-15.808 0-6.792-8.875-8.306-12-2.944z");
}

.plan-planner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 0;
}
@media (max-width:767px) {
  .plan-planner {
    padding-bottom: 10px;
  }
}

.plan-planner img {
  width: 70px;
  height: 70px;
}
@media (min-width:768px) and (max-width: 1200px) {
  .plan-planner img {
    max-width: 50px;
    height: 50px;
  }
}
@media (max-width:767px) {
  .plan-planner img {
    width: 50px;
    height: 50px;
  }
}

.plan-planner-text {
  margin-left: 20px;
}
@media (min-width:768px) and (max-width: 1200px) {
  .plan-planner-text {
    margin-left: 10px;
  }
}

.plan-company {
  font-size: 14px;
}
@media (max-width:767px) {
  .plan-company {
    font-size: 12px;
  }
}

.planner-name {
  font-size: 16px;
  padding-top: 3px;
}
@media (min-width:768px) and (max-width: 1200px) {
  .planner-name {
    font-size: 14px;
  }
}
@media (max-width: 500px) {
  .planner-name {
    font-size: 14px;
  }
}

.plan-title {
  font-size: 18px;
}
@media (min-width:768px) and (max-width: 1200px) {
  .plan-title {
    font-size: 14px;
    font-weight: 500;
  }
}
@media (max-width:767px) {
  .plan-title {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.01em;
  }
}

.plan-genre {
  font-size: 14px;
  margin-top: 8px;
  letter-spacing: 0.1em;
}
@media (min-width:768px) and (max-width: 1200px) {
  .plan-genre {
    font-size: 12px;
  }
}
@media (max-width:767px) {
  .plan-genre {
    font-size: 12px;
    margin-top: 5px;
  }
}

.plan-tag {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width:767px) {
  .plan-tag {
    margin-top: 10px;
  }
}
.plan-tag .plan-tag-link {
  color: #00b2c9;
  border-radius: 20px;
  border: 1px solid #00b2c9;
  padding: 1px 8px;
  margin-right: 10px;
  margin-bottom: 10px;
  display: block;
}
@media (max-width:767px) {
  .plan-tag .plan-tag-link {
    font-size: 14px;
    margin-right: 5px;
    margin-bottom: 5px;
  }
}

@media (max-width:767px) {
  .plan.plan_main {
    padding: 0px 0 60px;
  }
}

.category {
  position: relative;
}
.category::after {
  position: absolute;
  content: "";
  top: -20%;
  right: 0;
  width: 500px;
  height: 500px;
  z-index: -1;
  background: url(../img/Category-bgImg.png) no-repeat center center/cover;
}
@media (max-width:767px) {
  .category::after {
    top: -5%;
    width: 200px;
    height: 200px;
  }
}

.category-wrapper {
  margin-top: 60px;
  display: grid;
  gap: 60px;
  grid-template-columns: repeat(4, 1fr);
}
@media (min-width:768px) and (max-width: 1200px) {
  .category-wrapper {
    gap: 20px;
  }
}
@media (max-width: 950px) {
  .category-wrapper {
    margin-top: 30px;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width:767px) {
  .category-wrapper {
    gap: 15px;
  }
}

.category-link {
  display: block;
  font-weight: 400;
  -webkit-filter: drop-shadow(0px 0px 5px #99EBF2);
          filter: drop-shadow(0px 0px 5px #99EBF2);
  border-radius: 1000px 1000px 0 0;
  cursor: pointer;
  position: relative;
}
@media (min-width: 1200px) {
  .category-link:hover .category-img > img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
@media (min-width:768px) and (max-width: 1200px) {
  .category-link {
    -webkit-filter: drop-shadow(0px 0px 3px #99EBF2);
            filter: drop-shadow(0px 0px 3px #99EBF2);
    width: 90%;
    margin: 0 auto;
  }
}
@media (max-width:767px) {
  .category-link {
    -webkit-filter: drop-shadow(0px 0px 3px #99EBF2);
            filter: drop-shadow(0px 0px 3px #99EBF2);
    width: 90%;
    margin: 0 auto;
  }
}

.category-img {
  width: 100%;
  display: block;
  border-radius: 1000px 1000px 0 0;
  overflow: hidden;
}
.category-img > img {
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
.category-img:hover {
  cursor: pointer;
}

.category-name {
  position: absolute;
  content: "";
  display: block;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 1;
  background: #fff;
}
@media (max-width: 950px) {
  .category-name {
    height: 40px;
  }
}
@media (max-width:767px) {
  .category-name {
    height: 40px;
  }
}
.category-name p {
  display: block;
  text-align: center;
  padding-top: 18px;
  padding-bottom: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
}
@media (min-width:768px) and (max-width: 1200px) {
  .category-name p {
    font-size: 14px;
  }
}
@media (max-width: 950px) {
  .category-name p {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 12px;
  }
}
@media (max-width:767px) {
  .category-name p {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 12px;
  }
}
@media (max-width:767px) {
  .category-name .category-name-heightSP {
    padding-top: 3px;
    padding-bottom: 10px;
    font-size: 12px;
  }
}

.planner-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 60px;
  width: 100%;
}
@media (max-width:767px) {
  .planner-wrapper {
    margin-top: 30px;
    margin-right: calc(50% - 50vw);
    overflow-x: scroll;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    -ms-overflow-style: none; /* IE, Edge 対応 */
    scrollbar-width: none; /* Firefox 対応 */
  }
}

@media (max-width:767px) {
  .planner-list {
    min-width: 60%;
    display: inline-block;
  }
}
.planner-list:not(:first-child) {
  margin-left: 40px;
}
@media (min-width:768px) and (max-width: 1200px) {
  .planner-list:not(:first-child) {
    margin-left: 20px;
  }
}
@media (max-width:767px) {
  .planner-list:not(:first-child) {
    margin-left: 20px;
  }
}

.planner-img {
  position: relative;
}

.planner-title {
  position: absolute;
  content: "";
  bottom: 50px;
  left: -10px;
}
@media (min-width:768px) and (max-width: 1200px) {
  .planner-title {
    bottom: 20px;
  }
}
@media (max-width:767px) {
  .planner-title {
    bottom: 20px;
  }
}

.planner-img {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

@media (min-width: 1200px) {
  .planner-list:hover .planner-img {
    -webkit-filter: drop-shadow(1px 1px 10px #99EBF2);
            filter: drop-shadow(1px 1px 10px #99EBF2);
  }
}
.planner-title p {
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  display: inline;
  padding: 5px 10px;
  font-size: 23px;
  font-style: italic;
  font-weight: 400;
  line-height: 2.2;
  background-color: #fff;
  -webkit-box-shadow: 5px 5px 0 #00b2c9;
          box-shadow: 5px 5px 0 #00b2c9;
}
@media (min-width:768px) and (max-width: 1200px) {
  .planner-title p {
    font-size: 18px;
    line-height: 2.5;
  }
}
@media (max-width: 950px) {
  .planner-title p {
    font-size: 13px;
  }
}
@media (max-width:767px) {
  .planner-title p {
    font-size: 16px;
    line-height: 2.5;
  }
}

.planner-list_text {
  margin-top: 20px;
}
@media (min-width:768px) and (max-width: 1200px) {
  .planner-list_text {
    margin-top: 10px;
  }
}
@media (max-width:767px) {
  .planner-list_text {
    margin-top: 10px;
  }
}

.planner-list_company {
  font-size: 14px;
}
@media (max-width:767px) {
  .planner-list_company {
    font-size: 12px;
  }
}

.planner-list_name {
  font-size: 18px;
  font-weight: 500;
}
@media (max-width:767px) {
  .planner-list_name {
    font-size: 16px;
  }
}

.review .plan-text {
  margin-top: 10px;
  margin-bottom: 10px;
}
.review .plan-title {
  color: rgba(248, 127, 142, 0.7);
  font-weight: 500;
}

.review-img {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

@media (min-width: 1200px) {
  .plan-item:hover .review-img {
    -webkit-filter: drop-shadow(1px 1px 10px rgba(248, 127, 142, 0.7));
            filter: drop-shadow(1px 1px 10px rgba(248, 127, 142, 0.7));
  }
}
.sns-link {
  text-align: center;
}

.sns-link_title {
  font-size: 20px;
  letter-spacing: 0.15em;
  margin-top: 30px;
}
@media (max-width:767px) {
  .sns-link_title {
    font-size: 16px;
  }
}

.sns-link_item {
  color: #99EBF2;
  -webkit-filter: drop-shadow(1px 1px 1px #99EBF2);
          filter: drop-shadow(1px 1px 1px #99EBF2);
  font-size: 50px;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
@media (max-width:767px) {
  .sns-link_item {
    font-size: 40px;
  }
}
.sns-link_item:not(:first-child) {
  margin-left: 20px;
}
.sns-link_item:hover {
  -webkit-filter: drop-shadow(1px 1px 5px #99EBF2);
          filter: drop-shadow(1px 1px 5px #99EBF2);
}

.top-link {
  display: block;
  position: fixed;
  bottom: 7px;
  right: 20px;
  z-index: 1;
  opacity: 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width:767px) {
  .top-link {
    bottom: 10px;
    right: 10px;
  }
}
.top-link img {
  width: 80px;
  height: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width:767px) {
  .top-link img {
    width: 70px;
  }
}
.top-link.add-scrolled {
  opacity: 1;
}

footer {
  padding: 60px 0 20px;
  background: #f8ffff;
}
@media (max-width:767px) {
  footer {
    padding: 40px 0 10px;
  }
}

.footer-wrapper {
  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;
}

.footer-logo {
  width: 200px;
}
@media (max-width:767px) {
  .footer-logo {
    width: 40%;
  }
}
.footer-logo img {
  display: block;
}

.footer-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width:767px) {
  .footer-info {
    display: block;
  }
}

.footer-info_link:not(:first-child) {
  margin-left: 20px;
}
@media (max-width:767px) {
  .footer-info_link:not(:first-child) {
    margin-left: 0;
    margin-top: 10px;
  }
}
@media (max-width:767px) {
  .footer-info_link {
    font-size: 14px;
  }
}

.copyright {
  text-align: center;
  margin-top: 40px;
  font-size: 12px;
}
@media (max-width:767px) {
  .copyright {
    margin-top: 20px;
    font-size: 10px;
  }
}