@charset "UTF-8";
/*------------------------------------------------------------
  margin-bottom / margin-top / padding-top / padding-bottom 計算
------------------------------------------------------------*/
/*------------------------------------------------------------
  タイトル ＋ テキスト ラインハイトが異なる部分の余白計算 計算
------------------------------------------------------------*/
/* 
それぞれ( )内にpxでの数値を入れるとrem, px, vw(pc版), vw(sp版) に変換 
*/
/* 
それぞれ( )内にpxでの数値を入れるとrem, px, vw(pc版), vw(sp版) に変換 
*/
.header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

.header__top {
  background-color: #a1003c;
  display: grid;
  grid-template-columns: 39rem 1fr;
  padding-inline: 4rem;
  padding-top: 2rem;
  padding-bottom: 1.5rem;
}
@media screen and (max-width: 896px) {
  .header__top {
    grid-template-columns: 28rem 1fr;
    padding-inline: 2rem;
    padding-top: 1.5rem;
  }
}

.header__logo {
  width: 31rem;
  height: auto;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .header__logo:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 896px) {
  .header__logo {
    width: 28rem;
  }
}
.header__logo img {
  width: 100%;
  height: 100%;
}

.header__tel {
  text-align: right;
  font-family: "Helvetica", "Helvetica Neue", Arial, sans-serif;
  color: #fff;
  display: inline-block;
  font-size: 2.4rem;
  line-height: 1.9062666667;
  letter-spacing: 0.06em;
  font-weight: 400;
}
@media screen and (max-width: 980px) {
  .header__tel {
    display: none;
  }
}

.header__tel-number {
  font-size: 3.2rem;
  line-height: 1.4297;
  letter-spacing: 0.06em;
  font-weight: 400;
}

.header__bottom {
  background-color: #f5f5f5;
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
  padding-inline: 4rem;
  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;
}
@media screen and (max-width: 980px) {
  .header__bottom {
    display: none;
  }
}

.header__title {
  display: none;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0.3em;
  font-weight: 300;
  font-size: 2.8rem;
}
.header__title:first-letter {
  color: #d0758b;
}

.header__nav {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 6rem;
     -moz-column-gap: 6rem;
          column-gap: 6rem;
}
@media screen and (max-width: 980px) {
  .header__nav {
    display: none;
  }
}

.header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
}

.header__item-menu {
  position: relative;
  padding-inline: 1rem;
}
.header__item-menu:last-child {
  min-width: none;
}
.header__item-menu:last-child .header__list-link {
  padding-right: 0;
}
.header__item-menu:nth-child(4) a, .header__item-menu:nth-child(5) a, .header__item-menu:nth-child(6) a {
  letter-spacing: 0em;
}
.header__item-menu::before {
  content: "";
  background-color: #646464;
  display: block;
  width: 0.1rem;
  height: 3.3rem;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.header__list-link {
  width: 100%;
  color: #636363;
  padding-block: 1.6rem;
  padding-left: 0.7rem;
  padding-right: 0.7rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.2em;
  font-weight: 300;
}
@media (hover: hover) {
  .header__list-link:hover {
    background-color: #d2d2d2;
  }
  .header__list-link:hover, .header__list-link:has(+ .header__sublist-wrap:hover) {
    background-color: #d2d2d2;
  }
}

.header__sublist-wrap {
  position: absolute;
  top: calc(100% - 5px);
  left: 1rem;
  display: none;
}

.header__sublist {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #dcdcdc;
}
.header__sublist-link {
  width: 100%;
  color: #646464;
  white-space: nowrap;
  padding-block: 1rem;
  padding-inline: 3.3rem 2.9rem;
  min-width: 19.2rem;
  font-size: 1.6rem;
  line-height: 2.25;
  letter-spacing: 0.1em;
  font-weight: 300;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}
@media (hover: hover) {
  .header__sublist-link:hover {
    background-color: #d2d2d2;
  }
}
.header__sublist-link::before {
  content: "";
  display: block;
  position: absolute;
  left: 1.6rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 0.6rem solid transparent;
  border-bottom: 0.6rem solid transparent;
  border-left: 1rem solid #fff;
  border-right: 0;
}

.header__thirdlist li a {
  width: 100%;
  color: #646464;
  font-size: 1.6rem;
  line-height: 2.25;
  letter-spacing: 0.1em;
  font-weight: 300;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding-block: 1rem;
  padding-inline: 5rem 2.9rem;
}
@media (hover: hover) {
  .header__thirdlist li a:hover {
    background-color: #d2d2d2;
  }
}

@media screen and (max-width: 980px) {
  .archive .header__bottom,
  .single .header__bottom {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    display: block;
  }
}
.archive .header__title,
.single .header__title {
  display: block;
  color: #646464;
}
.archive .header__title.is-yellow:first-letter,
.single .header__title.is-yellow:first-letter {
  color: #dda013;
}
.archive .header__title.is-green:first-letter,
.single .header__title.is-green:first-letter {
  color: #49b4b4;
}
.archive .header__item-menu,
.single .header__item-menu {
  min-width: auto;
}
.archive .header__item-menu:nth-child(2) .header__list-link, .archive .header__item-menu:nth-child(3) .header__list-link, .archive .header__item-menu:nth-child(4) .header__list-link,
.single .header__item-menu:nth-child(2) .header__list-link,
.single .header__item-menu:nth-child(3) .header__list-link,
.single .header__item-menu:nth-child(4) .header__list-link {
  min-width: auto;
}

.drawer__icon {
  position: fixed;
  z-index: 102;
  background: #a1003c;
  cursor: pointer;
  width: 77px;
  height: 77px;
  border-radius: 50%;
  top: 67px;
  right: -4px;
  display: none;
}
@media screen and (max-width: 896px) {
  .drawer__icon {
    top: 65px;
  }
}
@media screen and (max-width: 980px) {
  .drawer__icon {
    display: block;
  }
}

.drawer__icon-bar {
  display: inline-block;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: absolute;
  left: 19px;
  height: 2px;
  border-radius: 5px;
  background: #fff;
  width: 51%;
}
.drawer__icon-bar:nth-of-type(1) {
  top: 21px;
}
.drawer__icon-bar:nth-of-type(2) {
  top: 33px;
}
.drawer__icon-bar:nth-of-type(3) {
  top: 44px;
}
.drawer__icon-bar:nth-of-type(3)::after {
  content: "MENU";
  position: absolute;
  top: 5px;
  left: 0px;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
}

.drawer__icon.js-show .drawer__icon-bar:nth-of-type(1) {
  top: 23px;
  left: 17px;
  -webkit-transform: translateY(6px) rotate(-45deg);
          transform: translateY(6px) rotate(-45deg);
  width: 53%;
}
.drawer__icon.js-show .drawer__icon-bar:nth-of-type(2) {
  opacity: 0;
}
.drawer__icon.js-show .drawer__icon-bar:nth-of-type(3) {
  top: 35px;
  left: 17px;
  -webkit-transform: translateY(-6px) rotate(45deg);
          transform: translateY(-6px) rotate(45deg);
  width: 53%;
}
.drawer__icon.js-show .drawer__icon-bar:nth-of-type(3)::after {
  content: "Close";
  -webkit-transform: translateY(0) rotate(-45deg);
          transform: translateY(0) rotate(-45deg);
  top: 6px;
  left: 20px;
}

.drawer {
  position: fixed;
  z-index: 101;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  background: #a1003c;
  overflow-y: scroll;
  translate: 101%;
  -webkit-transition: translate 0.5s ease;
  transition: translate 0.5s ease;
}
.drawer.js-show {
  translate: 0;
  /* ── スクロールバーを隠す（モダンブラウザ） ── */
  /* Chrome 121+ / Edge 121+ / Safari 18.2+ / Firefox 64+ */
  scrollbar-width: none;
  /* Windows 旧 EdgeHTML / IE11 対応 */
  -ms-overflow-style: none;
  /* 旧 Blink / WebKit 対応（Chrome 120 以前など）*/
}
.drawer.js-show::-webkit-scrollbar {
  display: none;
}

.drawer__body {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding-block: 17rem 4rem;
  padding-left: 3.4rem;
}

.drawer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 3.2rem;
  margin-bottom: 4rem;
}
.drawer__list li a {
  width: 100%;
  color: #fff;
  padding-block: 10px;
}

.drawer__sublist-link {
  width: 100%;
  border-top: 1px solid #fff;
  padding-left: 0.3em;
}
.has-thirdlist .drawer__sublist-link {
  padding-bottom: 5px;
}

.drawer__sublist-wrap {
  padding-left: 0.7em;
}

.drawer__thirdlist {
  padding-left: 1em;
}
.drawer__thirdlist li a {
  padding-top: 5px;
}

.brand {
  padding-top: 5rem;
  padding-bottom: 7rem;
}
@media screen and (max-width: 896px) {
  .brand {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

.brand__title-text {
  color: #a1003c;
  text-align: center;
  text-indent: 0.2em;
  font-size: 3rem;
  letter-spacing: 0.2em;
  font-weight: 300;
}
@media screen and (max-width: 896px) {
  .brand__title-text {
    font-size: 2.1rem;
  }
}

.brand__logo {
  display: none;
}
@media screen and (max-width: 768px) {
  .brand__logo {
    display: block;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 3rem;
  }
}

.brand__content {
  margin-top: 5rem;
}
@media screen and (max-width: 896px) {
  .brand__content {
    margin-top: 3rem;
  }
}

.brand__lists {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 2.2rem;
     -moz-column-gap: 2.2rem;
          column-gap: 2.2rem;
}
@media screen and (max-width: 1180px) {
  .brand__lists {
    grid-template-columns: repeat(1, 1fr);
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
    row-gap: 6rem;
  }
}
.brand-item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 5;
}
@media screen and (max-width: 1180px) {
  .brand-item {
    grid-template-rows: none;
    grid-template-columns: 50.7070707071% 1fr;
    grid-template-areas: "img description" "img copy" "img logo" "img button";
    -webkit-column-gap: 3rem;
       -moz-column-gap: 3rem;
            column-gap: 3rem;
  }
}
@media screen and (max-width: 896px) {
  .brand-item {
    grid-template-columns: repeat(1, 1fr);
    grid-template-areas: "description" "img" "copy" "logo" "button";
    max-width: 600px;
    margin-inline: auto;
  }
}

@media screen and (max-width: 1180px) {
  .brand-item-description {
    grid-area: description;
  }
}

.brand-item-description-tesxt {
  text-align: center;
  text-indent: 0.05em;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  font-weight: 300;
}
@media screen and (min-width: 897px) and (max-width: 1180px) {
  .brand-item-description-tesxt {
    font-size: 16px;
  }
}
@media screen and (max-width: 896px) {
  .brand-item-description-tesxt {
    font-size: 1.6rem;
  }
}

.brand-item-image {
  margin-top: 1.3rem;
}
@media screen and (max-width: 1180px) {
  .brand-item-image {
    grid-area: img;
    margin-top: 0;
  }
}
@media screen and (max-width: 896px) {
  .brand-item-image {
    margin-top: 1.65rem;
  }
}
.brand-item-image img {
  width: 100%;
  height: 100%;
}

.brand-item__copy {
  color: #646464;
  text-align: center;
  margin-top: 1.65rem;
  text-indent: 0.1em;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  font-weight: 300;
}
@media screen and (max-width: 1180px) {
  .brand-item__copy {
    grid-area: copy;
  }
}
@media screen and (min-width: 897px) and (max-width: 1180px) {
  .brand-item__copy {
    font-size: 18px;
  }
}
@media screen and (max-width: 896px) {
  .brand-item__copy {
    font-size: 1.8rem;
  }
}

.brand-item__logo {
  margin-top: 2.25rem;
  margin-inline: auto;
  -ms-flex-item-align: center;
      align-self: center;
  width: 58.2236842105%;
}
.brand-item__logo img {
  width: 100%;
  height: 100%;
  display: block;
}
@media screen and (max-width: 1180px) {
  .brand-item__logo {
    grid-area: logo;
  }
}
@media screen and (min-width: 897px) and (max-width: 1180px) {
  .brand-item__logo {
    margin-top: 0;
  }
}
@media screen and (max-width: 896px) {
  .brand-item__logo {
    width: 40%;
  }
}

.brand-item__button {
  text-align: center;
  margin-top: 2.8rem;
  margin-inline: auto;
  width: 58%;
}
@media screen and (max-width: 1180px) {
  .brand-item__button {
    grid-area: button;
  }
}

.brand-item__link {
  padding-block: 1.4rem;
  padding-inline: 1.4rem;
  width: 100%;
  text-indent: 0.1em;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  font-weight: 300;
  width: 100%;
  color: #646464;
  display: inline-block;
  border: 1px solid #646464;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .brand-item__link:hover {
    color: #a1003c;
    background-color: #f9eff5;
    border-color: #f9eff5;
  }
}
@media screen and (max-width: 896px) {
  .brand-item__link {
    font-size: 1.8rem;
    padding-block: 0.8rem;
  }
}
@media screen and (min-width: 897px) and (max-width: 1180px) {
  .brand-item__link {
    font-size: 16px;
  }
}

.brand__description {
  margin-top: 8rem;
}

.brand-copy {
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  font-weight: 300;
  color: #a1003c;
  text-align: center;
  text-indent: 0.1em;
}
@media screen and (max-width: 896px) {
  .brand-copy {
    font-size: 1.8rem;
  }
}

.brand__description-body {
  margin-top: 3.5rem;
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
  text-align: justify;
  max-width: 1500px;
  margin-inline: auto;
  -webkit-column-gap: 3.5416666667vw;
     -moz-column-gap: 3.5416666667vw;
          column-gap: 3.5416666667vw;
}
@media screen and (max-width: 896px) {
  .brand__description-body {
    -webkit-column-count: auto;
       -moz-column-count: auto;
            column-count: auto;
    margin-top: 3rem;
  }
}

.brand__description-body-text {
  text-indent: 1em;
}
.brand__description-body-text + .brand__description-body-text {
  margin-top: 2.5rem;
}
@media screen and (max-width: 896px) {
  .brand__description-body-text + .brand__description-body-text {
    margin-top: 3rem;
  }
}
.brand__description-body-text:last-child {
  border-top: 1px solid #646464;
  padding-top: 2.5rem;
}
@media screen and (max-width: 896px) {
  .brand__description-body-text:last-child {
    padding-top: 3rem;
  }
}

.column-break {
  -webkit-column-break-before: column;
     -moz-column-break-before: column;
          break-before: column;
  display: block;
  height: 0;
}

.brand__button-wrap {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 5rem;
  width: 40rem;
  text-align: center;
  margin-top: 7rem;
  margin-inline: auto;
}
@media screen and (max-width: 896px) {
  .brand__button-wrap {
    width: 100%;
    gap: 3rem;
    margin-top: 6rem;
  }
}

.brand__button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  width: 100%;
}

.brand__button-link {
  width: 100%;
  color: #646464;
  display: inline-block;
  border: 1px solid #646464;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 1.8rem;
  line-height: 2.7293055556;
  letter-spacing: 1em;
  font-weight: 300;
  padding-block: 0.1rem;
  padding-inline: 4rem;
  position: relative;
  text-indent: 1em;
}
@media (hover: hover) {
  .brand__button-link:hover {
    color: #a1003c;
    background-color: #f9eff5;
    border-color: #f9eff5;
  }
}
@media screen and (max-width: 896px) {
  .brand__button-link {
    font-size: 1.6rem;
    padding-inline: 3rem;
  }
}
.brand__button-link.is-type2 {
  letter-spacing: 0.1em;
  text-indent: 0.1em;
}
.brand__button-link.is-type3 {
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  padding-inline: 2rem;
}
.brand__button-link.is-type3::before {
  content: none;
}
.brand__button-link::before {
  content: "";
  background: url(../img/common/arrow-right.png) no-repeat center center/contain;
  width: 1rem;
  height: 1.8rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 2rem;
}
@media screen and (max-width: 896px) {
  .brand__button-link::before {
    width: 1rem;
    height: 2.1rem;
  }
}

.brand__button-link-tel {
  font-family: "Helvetica", "Helvetica Neue", Arial, sans-serif;
  color: #fff;
  display: inline-block;
  font-size: 2.4rem;
  line-height: 1.9062666667;
  letter-spacing: 0.06em;
  font-weight: 400;
  /*↓↓個別設定↓↓*/
  color: #a1003c;
  width: 100%;
  text-indent: 0.06em;
}
@media screen and (max-width: 896px) {
  .brand__button-link-tel {
    font-size: 2rem;
  }
}

.brand__button-link-tel-number {
  font-size: 3.2rem;
  line-height: 1.4297;
  letter-spacing: 0.06em;
  font-weight: 400;
}
@media screen and (max-width: 896px) {
  .brand__button-link-tel-number {
    font-size: 3rem;
  }
}

#container {
  padding-top: calc(17.4344rem - 2px);
}
@media screen and (max-width: 980px) {
  #container {
    padding-top: calc(8.1130471146rem - 2px);
  }
}
@media screen and (max-width: 896px) {
  #container {
    padding-top: calc(7.1688rem - 2px);
  }
}

@media screen and (max-width: 980px) {
  .archive #container,
  .single #container {
    padding-top: 17.2366880401rem;
  }
}
@media screen and (max-width: 896px) {
  .archive #container,
  .single #container {
    padding-top: 13.6688rem;
  }
}

.fv {
  position: relative;
}

.fv__content {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  bottom: 2.2rem;
  left: 2.0833333333vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: 0.7rem;
}

.fv__title {
  color: #fff;
  font-size: 10rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 400;
  text-shadow: 0 0 7px rgb(0, 0, 0);
}
@media screen and (max-width: 896px) {
  .fv__title {
    font-size: 5rem;
  }
}

.fv__title-sub {
  font-size: 2.8rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #fff;
  text-shadow: 0 0 8px rgb(0, 0, 0);
  text-align: center;
}
@media screen and (max-width: 896px) {
  .fv__title-sub {
    font-size: 1.6rem;
    text-align: left;
  }
}

.fv__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.line-frame {
  display: grid;
  grid-template-columns: 18.4895833333vw 66.6666666667vw 14.53125vw;
  padding-top: 10rem;
}
@media screen and (max-width: 896px) {
  .line-frame {
    padding-top: 6rem;
    grid-template-columns: 6.4583333333vw 86.7708333333vw 3.8541666667vw;
  }
}

.line-frame__content-area {
  border-top: 1px solid #d0758b;
  border-right: 1px solid #d0758b;
  grid-column: 2/3;
  padding-bottom: 7rem;
}
@media screen and (max-width: 896px) {
  .line-frame__content-area {
    padding-bottom: 4.3rem;
  }
}

.line-frame__category {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #fff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 896px) {
  .line-frame__category {
    width: 90%;
    text-align: right;
  }
}

.line-frame__category-text {
  color: #d0758b;
  padding-right: 5.5rem;
  position: relative;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0.3em;
  font-weight: 300;
}
.line-frame__category-text::before {
  content: "";
  position: absolute;
  width: 3rem;
  height: 3rem;
  background-color: #d0758b;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 896px) {
  .line-frame__category-text {
    font-size: 2rem;
    padding-right: 3rem;
    line-height: 1.5;
  }
  .line-frame__category-text::before {
    width: 2.1rem;
    height: 2.1rem;
  }
}

.line-frame__genre {
  padding-right: 0.625vw;
}

.line-frame__genre-text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #d0758b;
  font-size: 2.4rem;
  letter-spacing: 0.2em;
  font-weight: 500;
  margin-left: auto;
}
@media screen and (max-width: 896px) {
  .line-frame__genre-text {
    font-size: 1.8rem;
  }
}

.line-frame__mv {
  margin-top: 10.4rem;
  padding-right: 0.5208333333vw;
  position: relative;
}
@media screen and (max-width: 896px) {
  .line-frame__mv {
    margin-top: 4.6rem;
    padding-right: 2.6041666667vw;
  }
}
.line-frame__mv + .line-frame__heading {
  margin-top: 4rem;
}

.line-frame__mv-text {
  color: #fff;
  font-size: 3rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  text-shadow: 0 0 6px rgb(0, 0, 0);
  position: absolute;
  bottom: 1.3541666667vw;
  left: 1.5625vw;
}
@media screen and (max-width: 896px) {
  .line-frame__mv-text {
    font-size: 1.6rem;
    padding-right: 2.6041666667vw;
  }
}
.line-frame__mv-text.is-right {
  text-align: right;
  left: auto;
  right: 1.5625vw;
}
.line-frame__mv-text.is-color-black {
  color: #000000;
  text-shadow: 0 0 6px rgb(255, 255, 255);
}

.line-frame__mv-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.line-frame__heading {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  padding-right: 3rem;
  position: relative;
}
.line-frame__heading + .line-frame__heading {
  margin-top: 5.65rem;
}
@media screen and (max-width: 896px) {
  .line-frame__heading + .line-frame__heading {
    margin-top: 3.65rem;
  }
}
.line-frame__heading.no-mv-image {
  margin-top: 11rem;
}
@media screen and (max-width: 896px) {
  .line-frame__heading.no-mv-image {
    margin-top: 3rem;
  }
}

.line-frame__heading-text {
  color: #d0758b;
  padding-right: 6.2rem;
  position: relative;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0.3em;
  font-weight: 300;
  letter-spacing: 0.1em;
  font-weight: 400;
}
.line-frame__heading-text::before {
  content: "";
  position: absolute;
  width: 3rem;
  height: 3rem;
  background-color: #d0758b;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 896px) {
  .line-frame__heading-text {
    font-size: 2rem;
    padding-right: 3rem;
    line-height: 1.5;
  }
  .line-frame__heading-text::before {
    width: 2.1rem;
    height: 2.1rem;
  }
}
@media screen and (max-width: 896px) {
  .line-frame__heading-text {
    text-align: right;
  }
}
.line-frame__heading-text::after {
  content: "";
  position: absolute;
  width: 3rem;
  height: 1px;
  background-color: #d0758b;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 100%;
}

.line-frame__body {
  margin-top: 9rem;
}
@media screen and (max-width: 896px) {
  .line-frame__body {
    margin-top: 4rem;
  }
}

.line-frame__text {
  width: 68.0931403398%;
}
@media screen and (max-width: 896px) {
  .line-frame__text {
    width: 100%;
    padding-right: 2.6041666667vw;
  }
}
.line-frame__text.is-center {
  width: 73.0018879799%;
  margin-inline: auto;
}
@media screen and (max-width: 896px) {
  .line-frame__text.is-center {
    width: 100%;
  }
}

.line-frame__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  -webkit-column-gap: 1.0416666667vw;
     -moz-column-gap: 1.0416666667vw;
          column-gap: 1.0416666667vw;
  padding-right: 0.8333333333vw;
}
@media screen and (max-width: 1180px) {
  .line-frame__list {
    grid-template-columns: 1fr;
    row-gap: 1rem;
    padding-right: 2.6041666667vw;
  }
}
@media screen and (max-width: 768px) {
  .line-frame__list {
    row-gap: 3rem;
  }
}

.list-item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  gap: 3rem;
  justify-items: center;
}
@media screen and (max-width: 1180px) {
  .list-item {
    grid-template-columns: 33.0097087379% 48.5436893204% 14.9514563107%;
    gap: 0;
    grid-template-areas: "list-description list-img list-button";
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .list-item:nth-child(1) .list-item__image::before {
    content: "店舗設計･内装･改装";
  }
  .list-item:nth-child(2) .list-item__image::before {
    content: "マネキン・什器";
  }
  .list-item:nth-child(3) .list-item__image::before {
    content: "看板製作・イベント設営\aその他サポート";
    white-space: pre-line;
  }
}
@media screen and (max-width: 768px) {
  .list-item {
    grid-template-columns: 1fr;
    grid-template-areas: "list-img" "list-description" "list-button";
  }
}

.list-item__title {
  -ms-flex-item-align: center;
      align-self: center;
}
@media screen and (max-width: 1180px) {
  .list-item__title {
    display: none;
  }
}

.list-item__title-text {
  color: #d0758b;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  font-weight: 300;
}

@media screen and (max-width: 1180px) {
  .list-item__image {
    grid-area: list-img;
    position: relative;
  }
  .list-item__image::before {
    color: #fff;
    font-weight: 500;
    text-shadow: 0 0 6px rgb(0, 0, 0);
    font-size: 4rem;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    z-index: 2;
  }
}
@media screen and (max-width: 896px) {
  .list-item__image::before {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .list-item__image::before {
    font-size: 3rem;
  }
}
@media screen and (max-width: 420px) {
  .list-item__image::before {
    font-size: 2rem;
  }
}

@media screen and (max-width: 1180px) {
  .list-item__description {
    grid-area: list-description;
  }
}

.list-item__description-text {
  color: #646464;
}

.list-item__button {
  width: 78.4%;
  margin-top: 1rem;
}
@media screen and (max-width: 1180px) {
  .list-item__button {
    width: 100%;
    grid-area: list-button;
    align-self: end;
  }
}
@media screen and (max-width: 768px) {
  .list-item__button {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.list-item__button-link, .gallery__button-link {
  padding-block: 1.4rem;
  padding-inline: 1.4rem;
  width: 100%;
  text-indent: 0.1em;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  font-weight: 300;
  width: 100%;
  color: #646464;
  display: inline-block;
  border: 1px solid #646464;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-color: #d0758b;
}
@media (hover: hover) {
  .list-item__button-link:hover, .gallery__button-link:hover {
    color: #a1003c;
    background-color: #f9eff5;
    border-color: #f9eff5;
  }
}
@media screen and (max-width: 896px) {
  .list-item__button-link, .gallery__button-link {
    font-size: 1.8rem;
    padding-block: 0.8rem;
  }
}

.line-frame__image {
  margin-top: 5rem;
  padding-right: 4.6875vw;
}
.line-frame__image + .line-frame__image {
  margin-top: 10rem;
}
@media screen and (max-width: 896px) {
  .line-frame__image + .line-frame__image {
    margin-top: 5rem;
  }
}

.case {
  margin-top: 9rem;
  display: grid;
  grid-template-columns: 31.40625vw 15.3645833333vw 15.3645833333vw;
  grid-template-rows: repeat(2, auto);
  -webkit-column-gap: 0.6770833333vw;
     -moz-column-gap: 0.6770833333vw;
          column-gap: 0.6770833333vw;
  row-gap: 1.3rem;
}
@media screen and (max-width: 896px) {
  .case {
    margin-top: 4.6rem;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: auto;
    padding-right: 2.6041666667vw;
  }
}

.case__main-image {
  grid-column: 1/2;
  grid-row: 1/3;
}
@media screen and (max-width: 896px) {
  .case__main-image {
    grid-column: auto/auto;
    grid-row: auto/auto;
  }
}
.case__main-image img {
  width: 100%;
  height: 100%;
}

.case__sub-image img {
  width: 100%;
  height: 100%;
}
.case__sub-image.is-type2 {
  grid-column: 2/3;
  grid-row: 1/2;
}
@media screen and (max-width: 896px) {
  .case__sub-image.is-type2 {
    grid-column: auto/auto;
    grid-row: auto/auto;
  }
}
.case__sub-image.is-type3 {
  grid-column: 3/4;
  grid-row: 1/2;
}
@media screen and (max-width: 896px) {
  .case__sub-image.is-type3 {
    grid-column: auto/auto;
    grid-row: auto/auto;
  }
}
.case__sub-image.is-type4 {
  grid-column: 3/4;
  grid-row: 2/3;
}
@media screen and (max-width: 896px) {
  .case__sub-image.is-type4 {
    grid-column: auto/auto;
    grid-row: auto/auto;
  }
}

.case__body {
  grid-column: 2/3;
  grid-row: 2/3;
}
@media screen and (max-width: 896px) {
  .case__body {
    grid-column: auto/auto;
    grid-row: auto/auto;
  }
}
.case__body.is-bottom {
  display: grid;
  -ms-flex-line-pack: stretch;
      align-content: stretch;
}

.case__text + .case__text {
  margin-top: auto;
}
@media screen and (max-width: 896px) {
  .case__text + .case__text {
    margin-top: 1.8rem;
  }
}

.case__text-link {
  padding-block: 1.4rem;
  padding-inline: 1.4rem;
  width: 100%;
  text-indent: 0.1em;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  font-weight: 300;
  width: 100%;
  color: #646464;
  display: inline-block;
  border: 1px solid #646464;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-color: #a1003c;
  text-align: center;
  position: relative;
}
@media (hover: hover) {
  .case__text-link:hover {
    color: #a1003c;
    background-color: #f9eff5;
    border-color: #f9eff5;
  }
}
@media screen and (max-width: 896px) {
  .case__text-link {
    font-size: 1.8rem;
    padding-block: 0.8rem;
  }
}
.case__text-link::before {
  content: "";
  background: url(../img/common/arrow-right.png) no-repeat center center/contain;
  width: 1rem;
  height: 1.8rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 2rem;
}
@media screen and (max-width: 896px) {
  .case__text-link::before {
    width: 1rem;
    height: 2.1rem;
  }
}

.line-frame__slide {
  margin-top: 8rem;
  padding-top: 2rem;
}
@media screen and (max-width: 896px) {
  .line-frame__slide {
    margin-top: 3rem;
    padding-top: 1rem;
  }
}

.line-frame__swiper-container {
  margin-top: 4.65rem;
  padding-inline: 4.5833333333vw;
  position: relative;
}
@media screen and (min-width: 2200px) {
  .line-frame__swiper-container {
    padding-inline: 1.583333vw;
  }
}

.swiper-slide img {
  width: 100%;
  height: 100%;
}

.swiper-slide__link {
  display: inline-block;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .swiper-slide__link:hover {
    opacity: 0.7;
  }
}

.swiper-button-prev,
.swiper-button-next {
  color: #d0758b;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  background-color: #fff;
}
@media (hover: hover) {
  .swiper-button-prev:hover,
  .swiper-button-next:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 600px) {
  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: 2.7rem;
  }
}

@media screen and (max-width: 600px) {
  .swiper-button-prev {
    left: -2.6041666667vw;
  }
}

@media screen and (max-width: 600px) {
  .swiper-button-next {
    right: -2.6041666667vw;
  }
}

.gallery {
  margin-top: 16.5rem;
}
@media screen and (max-width: 896px) {
  .gallery {
    margin-top: 6rem;
  }
}

.gallery__title {
  margin-bottom: 3rem;
}

.gallery__title-text {
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #d0758b;
}
@media screen and (max-width: 896px) {
  .gallery__title-text {
    font-size: 1.8rem;
    line-height: 1;
  }
}

.gallery__content {
  padding-right: 5.2083333333vw;
}
@media screen and (max-width: 896px) {
  .gallery__content {
    padding-right: 2.6041666667vw;
  }
}

.gallery__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  -webkit-column-gap: 2.2395833333vw;
     -moz-column-gap: 2.2395833333vw;
          column-gap: 2.2395833333vw;
  row-gap: 4.4rem;
  text-align: center;
}
@media screen and (max-width: 896px) {
  .gallery__list {
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 2.6041666667vw;
       -moz-column-gap: 2.6041666667vw;
            column-gap: 2.6041666667vw;
  }
}

.gallery__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  row-gap: 0.5rem;
  width: 100%;
}

.gallery__image {
  aspect-ratio: 1/1;
}
.gallery__image img {
  width: 100%;
  height: 100%;
}
.gallery__image.no-aspect {
  aspect-ratio: auto;
}
.gallery__image.js-modal-open {
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .gallery__image.js-modal-open:hover {
    opacity: 0.7;
  }
}

.gallery__button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 1rem;
  margin-inline: auto;
}

@media screen and (max-width: 896px) {
  .gallery__text-item {
    font-size: 1.4rem;
  }
}

.line-frame__bottom {
  margin-top: 11.1rem;
}
@media screen and (max-width: 896px) {
  .line-frame__bottom {
    margin-top: 4.45rem;
  }
}

.line-frame__heading-link {
  display: inline-block;
  font-weight: 300;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .line-frame__heading-link:hover {
    opacity: 0.7;
  }
}

.line-frame__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 5.7rem;
  gap: 3rem;
}
@media screen and (max-width: 896px) {
  .line-frame__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 4.3rem;
    gap: 4.4rem;
  }
}
.line-frame__flex .line-frame__heading-text {
  color: #49b4b4;
}
.line-frame__flex .line-frame__heading-text::before {
  background-color: #49b4b4;
}
.line-frame__flex .line-frame__heading-text::after {
  background-color: #49b4b4;
}

.flex-tel {
  background-color: #f9eff5;
  padding-top: 1.243625rem;
  padding-bottom: 0.7rem;
  padding-inline: 3rem;
}
@media screen and (max-width: 896px) {
  .flex-tel {
    margin-right: 2.6041666667vw;
    padding-inline: 2rem;
    width: 97%;
    text-align: center;
  }
}

.flex-tel__top {
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0.2em;
  font-weight: 300;
}
@media screen and (max-width: 896px) {
  .flex-tel__top {
    font-size: 1.6rem;
  }
}

.flex-tel__bottom-link {
  width: 100%;
  font-family: "Helvetica", "Helvetica Neue", Arial, sans-serif;
  color: #fff;
  display: inline-block;
  font-size: 2.4rem;
  line-height: 1.9062666667;
  letter-spacing: 0.06em;
  font-weight: 400;
  color: #a1003c;
}

.flex-tel__bottom-number {
  font-size: 3.2rem;
  line-height: 1.4297;
  letter-spacing: 0.06em;
  font-weight: 400;
}
@media screen and (max-width: 896px) {
  .flex-tel__bottom-number {
    font-size: 3rem;
  }
}

.line-frame__flex-right {
  margin-left: auto;
}
.line-frame__flex-right .line-frame__heading-text {
  line-height: 1;
}
@media screen and (max-width: 896px) {
  .line-frame__flex-right .line-frame__heading-text {
    line-height: 1.5;
  }
}
.line-frame__flex-right .line-frame__heading-text.is-yellow::before, .line-frame__flex-right .line-frame__heading-text.is-yellow::after {
  background-color: #dda013;
}
.line-frame__flex-right .line-frame__heading-text.is-yellow .line-frame__heading-link {
  color: #dda013;
}
.line-frame__flex-right .line-frame__heading-text.is-red::before, .line-frame__flex-right .line-frame__heading-text.is-red::after {
  background-color: #d0758b;
}
.line-frame__flex-right .line-frame__heading-text.is-red .line-frame__heading-link {
  color: #d0758b;
}
.line-frame__flex-right .line-frame__heading-text.is-green::before, .line-frame__flex-right .line-frame__heading-text.is-green::after {
  background-color: #49b4b4;
}
.line-frame__flex-right .line-frame__heading-text.is-green .line-frame__heading-link {
  color: #49b4b4;
}

.line-frame__space.mt30 {
  margin-top: 3rem;
}

.footer {
  background-color: #a1003c;
  padding-block: 5.4rem 3.2rem;
}
@media screen and (max-width: 980px) {
  .footer {
    padding-block: 3rem 2rem;
  }
}

.footer__inner {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  max-width: 1470px;
}

.footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 1rem;
  color: #fff;
}
@media screen and (max-width: 1580px) {
  .footer__content {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 4.3rem;
  }
}
@media screen and (max-width: 896px) {
  .footer__content {
    gap: 2.5rem;
  }
}
@media screen and (max-width: 665px) {
  .footer__content {
    gap: 1rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.footer__tel {
  display: none;
}
@media screen and (max-width: 980px) {
  .footer__tel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1rem;
  }
}
@media screen and (max-width: 896px) {
  .footer__tel {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (max-width: 859px) {
  .footer__tel {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 665px) {
  .footer__tel {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}

@media screen and (max-width: 980px) {
  .footer__tel-text {
    font-size: 16px;
  }
}
@media screen and (max-width: 896px) {
  .footer__tel-text {
    width: 23.9990009222%;
    text-align: right;
    font-size: 1.4rem;
    line-height: 1.5;
  }
}
@media screen and (max-width: 665px) {
  .footer__tel-text {
    width: 100%;
    text-align: center;
    font-size: 1.6rem;
  }
}

.footer__tel-link {
  font-family: "Helvetica", "Helvetica Neue", Arial, sans-serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.06em;
  display: inline-block;
  text-indent: 0.06em;
}
@media screen and (max-width: 896px) {
  .footer__tel-link {
    font-size: 16px;
  }
}
@media screen and (max-width: 665px) {
  .footer__tel-link {
    font-size: 2rem;
  }
}

.footer__tel-link-number {
  font-size: 32px;
}
@media screen and (max-width: 896px) {
  .footer__tel-link-number {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 665px) {
  .footer__tel-link-number {
    font-size: 3rem;
  }
}

.footer__logo {
  width: 24.1134751773%;
}
@media screen and (max-width: 980px) {
  .footer__logo {
    width: 64.8464163823%;
    width: 44.9658703072%;
  }
}
@media screen and (max-width: 480px) {
  .footer__logo {
    width: 100%;
  }
}

.footer__logo-image {
  width: 78%;
}
@media screen and (max-width: 1200px) {
  .footer__logo-image {
    width: 100%;
    margin-inline: auto;
  }
}

.footer__address {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  font-weight: 300;
  margin-top: 1.3rem;
}
@media screen and (max-width: 480px) {
  .footer__address {
    margin-top: 2.3rem;
  }
}

@media screen and (max-width: 980px) {
  .footer__address-text {
    text-align: center;
    font-size: 2.4rem;
  }
  .footer__address-text:not(:first-child) {
    display: none;
  }
}
@media screen and (max-width: 896px) {
  .footer__address-text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 665px) {
  .footer__address-text {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 980px) {
  .footer__nav {
    display: none;
  }
}

.footer__nav-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer-nav {
  min-width: 20rem;
  padding-inline: 1.4rem;
  padding-bottom: 1.8rem;
  border-left: 1px solid #fff;
}
.footer-nav:last-child {
  min-width: 18rem;
}

.footer-nav__head {
  font-size: 1.8rem;
  letter-spacing: 0.2em;
  font-weight: 300;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  width: 100%;
  display: inline-block;
}
@media (hover: hover) {
  .footer-nav__head:hover {
    opacity: 0.7;
  }
}
.footer-nav__head.is-type4 {
  letter-spacing: 0em;
}
.footer-nav__head.is-type5 {
  letter-spacing: 0.3em;
}

.footer-nav__sub {
  margin-left: 0.5em;
  margin-top: 1.18rem;
}

.footer-nav__sub-link, .footer__copy, .footer-nav__thirdlist-link {
  width: 100%;
  display: inline-block;
  text-indent: 0.1em;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.1em;
  font-weight: 300;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .footer-nav__sub-link:hover, .footer__copy:hover, .footer-nav__thirdlist-link:hover {
    opacity: 0.7;
  }
}

.footer-nav__thirdlist-link {
  margin-left: 1em;
}

.footer__copy {
  display: block;
  margin-top: 5.3rem;
  text-align: center;
  color: #fff;
}
@media (hover: hover) {
  .footer__copy:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 980px) {
  .footer__copy {
    margin-top: 3rem;
  }
}
@media screen and (max-width: 665px) {
  .footer__copy {
    font-size: 1.4rem;
  }
}