@charset "UTF-8";
/* ------------------------------
	設定
------------------------------ */
@import url("https://use.typekit.net/jzd7zrd.css");
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@100;300&display=swap");
html {
  font-size: 62.5%;
}

:root {
  --c-txt: #464646;
  --c-new: #D98E7D;
  --c-bg: #E2E6E4;
  --c-txt_before: #D3D3D3;
  --c-card: #707070;
  --c-btn: #C2C9C7;
  --c-white: #fff;
}

/* ----px → vw---- 書き方：vw(px値) */
/* ----px → vw (pc)---- 書き方：vw-pc(px値)　*/
@media screen and (max-width: 959px) {
  .pc-only {
    display: none !important;
  }
}

@media screen and (min-width: 960px) {
  .sp-only {
    display: none !important;
  }
}

/* ------------------------------
	inview.js
------------------------------ */
.fadein {
  opacity: 0;
  visibility: hidden;
  transition: all 2s ease 0.3s;
}

.fadein-active {
  opacity: 1;
  visibility: visible;
}

.fadeinup {
  opacity: 0;
  visibility: hidden;
  transition: all 2s ease 0.3s;
  transform: translateY(20px);
}

.fadeinup-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ------------------------------
	style
------------------------------ */
* {
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: var(--c-txt);
}
* img {
  width: 100%;
}

a {
  cursor: pointer;
}

/* ------------------------------
	nav
------------------------------ */
.menu-flex {
  position: fixed;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--c-white);
  width: 94.6666666667vw;
  height: 14.9333333333vw;
  margin: 0 auto;
  border-radius: 12px 12px 12px 12px;
  border: #333 solid 1px;
}
@media screen and (min-width: 960px) {
  .menu-flex {
    width: 98.4375vw;
    height: 107px;
    margin: 0.78125vw 0.78125vw 0;
  }
}
.menu-flex__inner {
  z-index: 100;
  display: flex;
}

h1 {
  margin-top: 5.3333333333vw;
  margin-left: 0vw;
  margin-bottom: 3.2vw;
  width: min(34.6666666667vw, 172px);
}
@media screen and (min-width: 960px) {
  h1 {
    width: 172px;
    margin-top: 0;
    margin-left: 30px;
    margin-bottom: 0vw;
  }
}

nav {
  display: flex;
  margin-right: 45px;
}

.menu-1 {
  margin-top: 30px;
  margin-bottom: 30px;
}
@media screen and (min-width: 960px) {
  .menu-1 {
    margin-top: 0;
    margin-right: 45px;
    margin-bottom: 0;
  }
}
.menu-1 .filter-group {
  margin-bottom: 30px;
}
@media screen and (min-width: 960px) {
  .menu-1 .filter-group {
    margin-bottom: 0;
  }
}

.menu li:last-child {
  margin-right: 0;
}

.category-title {
  font-family: "europa", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 4rem;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.2;
  margin-bottom: 10px;
  font-size: 15px;
}
@media screen and (min-width: 960px) {
  .category-title {
    margin-bottom: 10px;
  }
}

.category-title::before {
  content: "●";
  font-size: 10px;
  margin-right: 3px;
}

.gender-button {
  font-family: "europa", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 4rem;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.2;
  width: 77px;
  height: 30.5px;
  border: solid 1px var(--c-txt_before);
  color: var(--c-txt_before);
  text-align: center;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
@media screen and (min-width: 960px) {
  .gender-button {
    width: 81px;
  }
}

.filter-button {
  font-family: "europa", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 4rem;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.2;
  display: inline-block;
  padding: 6px 20px;
  height: 30px;
  margin-bottom: 8px;
  border-radius: 20px;
  border: solid 1px var(--c-txt_before);
  color: var(--c-txt_before);
  transition: transform 0.3s ease;
  font-size: 13px;
  text-align: center;
  white-space: nowrap;
  transition: background-color 0.3s ease;
}
@media screen and (min-width: 960px) {
  .filter-button {
    width: 120px;
    height: 30px;
    margin: 0;
    border-top: solid 1px var(--c-txt_before);
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 0;
  }
  .filter-button a {
    font-family: "europa", sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 1.2;
    font-size: 14px;
    letter-spacing: 0.04em;
    display: block;
  }
}
.filter-button small {
  display: inline-block;
  margin-right: 2px;
  color: var(--c-txt_before);
  font-size: 10px;
}

.filter-button:hover {
  border-bottom: none;
  background-color: var(--c-txt);
  color: var(--c-white);
  transition: transform 0.3s ease;
}

.gender-button:hover {
  border: solid 1px var(--c-txt);
  background-color: var(--c-txt);
  color: var(--c-white);
}

.gender-button.active {
  border: 0;
  background-color: var(--c-txt);
  border: solid 1px var(--c-txt);
  color: #fff;
  border-bottom: none;
}

.filter-button.active {
  border: solid 1px var(--c-txt);
  background-color: var(--c-txt);
  color: #fff;
}
@media screen and (min-width: 960px) {
  .filter-button.active {
    border-top: 0;
    border-bottom: solid 1px var(--c-txt_before);
  }
}

.arrow::after {
  content: "";
  position: absolute;
  top: 14px;
  right: 15px;
  width: 6px;
  height: 6px;
  border-top: 1px solid var(--c-txt);
  border-right: 1px solid var(--c-txt);
  transform: rotate(135deg);
  margin-top: -4px;
}
@media screen and (min-width: 960px) {
  .arrow::after {
    top: 13px;
    right: 12px;
    width: 7px;
    height: 7px;
  }
}

.dropdown li {
  width: 119px;
  height: 30px;
  padding-top: 5px;
  text-align: center;
  border: 0;
  border-radius: 0;
  border-top: solid 1px var(--c-txt_before);
  font-size: 13px;
  color: var(--c-txt_before);
}

.dropdown li:hover {
  color: var(--c-white);
  background-color: var(--c-txt);
}

#submenu-toggle-3 {
  display: none;
}

#submenu-toggle-3 + .dropdown-label::after {
  content: "Select";
}

#submenu-toggle-3:checked + .dropdown-label::after {
  content: "Close";
}

#submenu-toggle-4 {
  display: none;
}

#submenu-toggle-4 + .dropdown-label::after {
  content: "月別で選ぶ";
}

#submenu-toggle-4:checked + .dropdown-label::after {
  content: "Close";
}

#submenu-toggle-1 {
  display: none;
}

#submenu-toggle-1 + .dropdown-label::after {
  content: "Select";
  padding-top: 15px;
  padding-left: 15px;
  padding-right: 55px;
  font-size: 13px;
  letter-spacing: 0.04em;
}

#submenu-toggle-1:checked + .dropdown-label::after {
  content: "Close";
  padding-top: 15px;
  padding-left: 15px;
}

#submenu-toggle-2 {
  display: none;
}

#submenu-toggle-2 + .dropdown-label::after {
  content: "Select";
  padding-top: 15px;
  padding-left: 15px;
  padding-right: 55px;
}

#submenu-toggle-2:checked + .dropdown-label::after {
  content: "Close";
  padding-top: 15px;
  padding-left: 15px;
}

#submenu-toggle-3 {
  display: none;
}

#submenu-toggle-3 + .dropdown-label::after {
  content: "Select";
}

#submenu-toggle-3:checked + .dropdown-label::after {
  content: "Close";
}

#submenu-toggle-4 {
  display: none;
}

#submenu-toggle-4 + .dropdown-label::after {
  content: "月別で選ぶ";
}

#submenu-toggle-4:checked + .dropdown-label::after {
  content: "Close";
}

/* --------------------------- */
/* メニュー（兄）のスタイル */
/* --------------------------- */
@media screen and (min-width: 960px) {
  .menu {
    display: flex;
    width: 300px;
  }
}

.menu-02 {
  width: 120px;
  margin-top: 6px;
  margin-bottom: 6px;
}
.menu-02 .filter-button {
  padding: 6px 0;
}

.menu-parent {
  width: 100%;
  position: relative;
  margin-bottom: 30px;
}
@media screen and (min-width: 960px) {
  .menu-parent {
    margin-right: 45px;
    margin-bottom: 0;
  }
}

.menu-parent:last-child {
  border-right: 0;
}

/* --------------------------- */
/* メニュー（兄）の動作に直接関係する箇所 */
/* --------------------------- */
/* メニュー（兄）hover時に色を変える */
@media (hover: hover) {
  .menu-parent_a:hover {
    opacity: 0.6;
    transition: all 0.1s;
  }
}
/* メニュー（兄）にactive付与されたとき */
.menu-parent_a .active {
  border: none;
}

.menu-parent_a .active .arrow::after {
  content: "";
  border-top: 1px solid var(--c-new);
  border-right: 1px solid var(--c-new);
}

/* --------------------------- */
/* メガメニュー(弟)のスタイル */
/* --------------------------- */
/* メニュー（弟）は普段は非表示 */
.menu-child {
  display: none;
  position: absolute;
  top: 100%;
  left: 5px;
  width: 120px;
  padding: 20px 0 20px;
  border-radius: 15px;
  border: solid 1px var(--c-txt_before);
  background-color: var(--c-white);
  color: #333;
  z-index: 10;
}
@media screen and (min-width: 960px) {
  .menu-child {
    z-index: -10;
  }
}

.menu-child_ul {
  list-style-type: disc;
  padding-left: 1.5em;
}

.menu-child_li {
  line-height: 2;
  font-size: 13px;
}

.menu-child-sp {
  display: none;
  position: absolute;
  top: 30%;
  margin-left: -21px;
  width: 355px;
  padding: 20px 0 20px;
  border-radius: 0 0 15px 15px;
  border-top: solid 1px var(--c-white);
  border-right: solid 1px var(--c-txt);
  border-bottom: solid 1px var(--c-txt);
  border-left: solid 1px var(--c-txt);
  background-color: var(--c-white);
  color: #333;
  z-index: -10;
}

.month-top {
  padding-top: 32vw;
  font-size: 20px;
  text-align: center;
}
@media screen and (min-width: 960px) {
  .month-top {
    padding-top: 0;
    margin: 0 auto;
    width: 1063px;
    text-align: start;
  }
}

.section-period {
  margin-bottom: 10.6666666667vw;
  background-color: var(--c-bg);
  padding: 0 0 2.6666666667vw 0;
}
@media screen and (min-width: 960px) {
  .section-period {
    margin-bottom: 3.75vw;
    padding-top: 174px;
    padding-bottom: 18px;
  }
}

.accordion__child {
  position: absolute;
  top: 28px;
  right: 5px;
  padding-top: 4.5px;
  padding-bottom: 4.5px;
  background-color: var(--c-white);
  border: 1px solid var(--c-txt_before);
  border-radius: 15px;
  overflow: hidden;
  z-index: 20;
}

.accordion_title__child {
  font-family: "europa", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 4rem;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.2;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.4s, transform 0.3s ease;
  z-index: 10;
}

.accordion {
  position: fixed;
  top: 2.6666666667vw;
  left: 2.6666666667vw;
  padding-left: 5.3333333333vw;
  width: 94.6666666667vw;
  background-color: var(--c-white);
  border: 1px solid var(--c-txt);
  border-radius: 8px;
  overflow: hidden;
  z-index: 20;
}
.accordion small {
  display: inline-block;
  margin-bottom: 1.3333333333vw;
  color: var(--c-card);
  font-size: min(2.6666666667vw, 10px);
}

.accordion_title-1 {
  position: absolute;
  top: 6.9333333333vw;
  left: 0px;
  width: 120px;
  height: 31.5px;
  padding-top: 5px;
  padding-left: 15px;
  border: solid 1px var(--c-txt_before);
  border-radius: 17px;
  cursor: pointer;
  transition: background 0.4s, transform 0.3s ease;
  z-index: 10;
}

.accordion_title-2 {
  position: absolute;
  top: 5.6vw;
  right: 3.4666666667vw;
  width: 120px;
  height: 31.5px;
  padding-top: 5px;
  padding-left: 15px;
  border: solid 1px var(--c-txt_before);
  border-radius: 17px;
  cursor: pointer;
  transition: background 0.4s, transform 0.3s ease;
  z-index: 10;
}

.accordion-contents {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--c-white);
  padding: 0 10px 2.6666666667vw 0;
}
.accordion-contents .month-flex {
  margin-top: 10.6666666667vw;
}
.accordion-contents small {
  display: block;
  margin: 0px auto 0;
  padding: 0 0 0 10px;
  color: var(--c-txt_before);
  font-size: 10px;
}

.accordion-contents__child {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--c-white);
  padding: 0;
}

.accordion-contents__month {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 10px 0 0 0;
  flex-wrap: wrap;
  gap: 5px;
  width: 83.4666666667vw;
}
@media screen and (min-width: 768px) {
  .accordion-contents__month {
    max-width: none;
  }
}
.accordion-contents__month li {
  font-family: "europa", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 4rem;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.2;
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: solid 1px var(--c-txt_before);
  color: var(--c-txt_before);
  font-size: 13px;
}
.accordion-contents__month li a {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  letter-spacing: 0.04em;
}

.accordion-contents__month li:hover {
  color: var(--c-white);
  background-color: var(--c-txt);
  border: solid 1px var(--c-txt);
}

.accordion-contents__month li:last-child {
  margin-right: 0;
}

.accordion-contents.open {
  max-height: 800px;
  opacity: 1;
  margin: 0 auto;
}

.accordion-contents__child.open {
  max-height: 800px;
  opacity: 1;
}

/* --------------------
		card
-------------------- */
.flex {
  gap: 14px;
  position: relative;
  margin: 0 auto;
  width: 100%;
}
@media screen and (min-width: 960px) {
  .flex {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 1063px;
  }
}

/* カードレイアウト内の画像を幅いっぱいに表示 */
.flex img {
  display: block;
  max-width: 100%;
  height: auto;
}

.card-figure {
  margin: 0;
  padding: 0;
}

/* カードレイアウトを1カラムで配置 */
.flex li {
  margin: 0 auto 10.6666666667vw;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 960px) {
  .flex li {
    margin: 0.5em auto;
    padding: 0;
    width: 96%;
  }
}

/* 画面幅768px以上の場合カードレイアウトを2カラムで配置 */
@media all and (min-width: 768px) {
  .flex {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 704px;
  }
  .flex li {
    margin: 1.3333333333vw 0;
    width: 48%; /* 96%幅を2で割るという指定 */
  }
  .month-top {
    font-family: "europa", sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 1.2;
    width: 704px;
    margin: 0 auto;
    font-size: 28px;
    letter-spacing: 0.09em;
    text-align: center;
  }
  .month-top span {
    display: inline-block;
    margin-right: 4px;
  }
  /* 最後の行が4列より少ない場合左寄せにレイアウトさせる */
  .flex::after {
    content: "";
    display: block;
    width: 48%;
    margin-right: auto;
  }
}
/* 画面幅992px以上の場合カードレイアウトを3カラムで配置 */
@media all and (min-width: 1200px) {
  .flex {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 1063px;
  }
  .flex > * {
    flex: 0 0 calc((100% - 28px) / 3); /* gap の分を引いて3等分 */
    box-sizing: border-box;
  }
  .flex li {
    margin: 0 0 40px 0px;
    width: 32%; /* 96%幅を3で割るという指定 */
  }
  .flex li:nth-of-type(3n + 1) {
    margin-left: 0;
  }
  .month-top {
    width: 1063px;
  }
  /* 最後の行が3列より少ない場合左寄せにレイアウトさせる */
  .flex::after {
    content: "";
    display: block;
    width: 32%;
    margin-right: auto;
  }
}
/* 画面幅1782px以上の場合カードレイアウトを4カラムで配置 */
@media all and (min-width: 1782px) {
  .flex {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 1422px;
  }
  .flex > * {
    flex: 0 0 calc((100% - 42px) / 4); /* gap の分を引いて4等分 */
    box-sizing: border-box;
  }
  .flex li {
    margin: 0 0 50px 0px;
    width: 24%; /* 96%幅を4で割るという指定 */
  }
  .flex li:nth-of-type(4n + 1) {
    margin-left: 0;
  }
  .month-top {
    width: 1422px;
  }
  /* 最後の行が4列より少ない場合左寄せにレイアウトさせる */
  .flex::after {
    content: "";
    display: block;
    width: 24%;
    margin-right: auto;
  }
}
.card-box {
  width: 345px;
  margin: 0 auto;
  padding: 15px 0px 30px;
  border: 1px solid var(--c-txt);
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease;
  background-color: #fff;
}

.hidden {
  display: none !important;
}

.card {
  position: relative;
  text-align: left;
}

.card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--c-bg);
  z-index: 10;
}

.card::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 38px;
  height: 4px;
  background-color: var(--c-white);
}

.circle {
  position: absolute;
  top: -19px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--c-txt);
  background-color: var(--c-white);
  clip-path: polygon(0% 0%, 100% 0%, 100% 50%, 0% 50%);
}

.label {
  font-family: "europa", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 4rem;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.2;
  margin-bottom: 15px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-align: center;
}

.ph {
  position: relative;
}

.new {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 12px;
  left: 12px;
  width: 50px;
  height: 50px;
  padding-left: 1px;
  border-radius: 50%;
  z-index: 100;
  background: var(--c-white);
  color: var(--c-btn);
  font-weight: bold;
  font-size: 12px;
  text-align: center;
}

.pre-btn {
  display: block;
  padding: 10px;
  border: 1px solid #e5e5e5;
  background-color: #e5e5e5;
  color: #b1b1b1;
  text-align: center;
}

.buy-btn {
  transition: all 1s ease;
}
.buy-btn a {
  display: block;
  padding: 10px;
  border: 1px solid #000;
  text-align: center;
  transition: all 0.3s ease;
}
.buy-btn a:hover {
  background-color: #000;
  border: 1px solid #000;
  color: #fff;
}

.day {
  display: flex;
  height: 23px;
}

.day__inner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: 23px;
  padding: 3px 5px;
  margin-left: 10px;
  border: solid 1px var(--c-card);
  font-size: 10px;
}
.day__inner ::before {
  content: ""; /* 擬似要素に内容を設定（空で縦線として使用） */
  position: absolute;
  left: 25px; /* 左端に配置 */
  top: 4.5px;
  width: 1px; /* 縦線の幅 */
  height: 12px;
  background-color: var(--c-txt_before); /* 縦線の色 */
}
.day__inner div {
  width: 12px;
  margin-top: 1px;
  margin-right: 16px;
  margin-left: 1px;
}

.brand {
  font-family: "europa", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 4rem;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.2;
  letter-spacing: 0.08em;
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 3px;
}

.name {
  margin-bottom: 30px;
  font-size: 13px;
  letter-spacing: 0.06em;
}

.data__flex01 {
  display: flex;
  justify-content: space-between;
  margin: 15px auto 30px;
  width: 319px;
}
.data__flex01 .gender {
  font-family: "europa", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 4rem;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.2;
  min-width: 61px;
  padding-top: 4px;
  font-size: 11px;
  text-align: center;
  border: solid 1px var(--c-card);
  font-weight: 400;
  letter-spacing: 0.04em;
}

.item__flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 86%;
  margin: 20px auto 0;
}
.item__flex .item__flex-left {
  text-align: start;
}

.category {
  font-size: 12.5px;
  letter-spacing: 0.02em;
  line-height: 1.6;
}

.credit {
  font-size: 12.5px;
  letter-spacing: 0.06em;
  line-height: 1.5;
}

.btn {
  font-family: "europa", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 4rem;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.2;
  border: solid 1px var(--c-btn);
  border-radius: 4px;
}
.btn a {
  display: block;
  width: 90px;
  height: 35px;
  padding-top: 8px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 4px;
}

.pre .btn {
  display: block;
  width: 90px;
  height: 35px;
  padding-top: 7.5px;
  padding-left: 1px;
  font-size: 13px;
  font-weight: 500;
  color: var(--c-btn);
  border: solid 1px var(--c-btn);
  border-radius: 4px;
}

.buy {
  border-radius: 4px;
  background-color: var(--c-btn);
}
.buy a {
  display: block;
  font-weight: 600;
  transition: all 0.7s ease;
}

.buy a:hover {
  color: var(--c-white);
}

/* --------------------
		footer
-------------------- */
.footer {
  padding-top: 4vw;
  padding-bottom: 21.3333333333vw;
  background-color: var(--c-bg);
  font-family: "Lato", sans-serif;
  font-weight: 300;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 960px) {
  .footer {
    padding-top: 1.5625vw;
    padding-bottom: 5vw;
  }
}
.footer img {
  width: 100%;
  height: auto;
}
.footer__logo {
  width: 34.6666666667vw;
  margin: 0 auto 4.2666666667vw;
}
@media screen and (min-width: 960px) {
  .footer__logo {
    width: 10.15625vw;
    margin: 0 auto 1.25vw;
  }
}
.footer__logo a {
  display: block;
  width: 34.6666666667vw;
}
@media screen and (min-width: 960px) {
  .footer__logo a {
    width: 10.15625vw;
    transition: all 0.5s ease;
  }
}
@media screen and (min-width: 960px) {
  .footer__logo a:hover {
    opacity: 0.5;
  }
}
.footer__copyright {
  text-align: center;
  color: var(--c-txt);
  font-size: 3.4666666667vw;
}
@media screen and (min-width: 960px) {
  .footer__copyright {
    font-size: 1.015625vw;
  }
}

#backToTop {
  font-family: "europa", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 4rem;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.2;
  font-size: 13px;
  letter-spacing: 0.04em;
  display: block;
  text-decoration: none;
  scroll-behavior: smooth;
}

@media screen and (min-width: 960px) {
  #backToTop:hover {
    opacity: 0.6;
  }
}

.top-btn {
  position: relative;
  width: 120px;
  height: 30px;
  padding-top: 6px;
  padding-left: 17px;
  margin: 0 4vw 14.6666666667vw auto;
  border-radius: 20px;
  background: var(--c-white);
  color: var(--c-txt);
}
@media screen and (min-width: 960px) {
  .top-btn {
    margin: 0 2.65625vw 0 auto;
  }
}

#backToTop::after {
  content: "";
  position: absolute;
  top: 13px;
  right: 15px;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--c-txt);
  border-right: 1px solid var(--c-txt);
  transform: rotate(-45deg);
}/*# sourceMappingURL=style.css.map */