@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Kosugi+Maru&display=swap");
[data-modal] {
  cursor: pointer;
}

template {
  display: none;
}

.m-modal {
  position: fixed;
  top: 0;
  left: 0;
  visibility: hidden;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  z-index: 25;
  -webkit-transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  width: 100vw;
  height: 100%;
  overflow: auto;
  -ms-touch-action: none;
      touch-action: none;
  pointer-events: none;
}

.m-modal.is-open {
  visibility: visible;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
  -webkit-transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  -ms-touch-action: auto;
      touch-action: auto;
  pointer-events: auto;
}

.m-modal.is-load-start {
  visibility: visible;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
  -webkit-transition: all 0s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0s cubic-bezier(0.215, 0.61, 0.355, 1);
  -ms-touch-action: auto;
      touch-action: auto;
  pointer-events: auto;
}

.m-modal.is-close {
  visibility: hidden;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  -ms-touch-action: none;
      touch-action: none;
  pointer-events: none;
}

.m-modal__bg {
  position: fixed;
  top: 0;
  left: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.9);
  width: 100%;
  height: 100%;
}

.is-modal-overflow .m-modal__bg {
  position: absolute;
}

.m-modal__content {
  display: table;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 133.328vh;
  height: auto;
  font-size: 0;
  text-align: center;
}

@media screen and (max-width: 1080px) {
  .m-modal__content {
    width: 100%;
  }
}

[data-modal-type="youtube"] .m-modal__content {
  width: 75%;
}

@media screen and (max-width: 1080px) {
  [data-modal-type="youtube"] .m-modal__content {
    width: 100%;
  }
}

.is-modal-overflow-prep .m-modal__content {
  position: relative;
  top: auto;
  left: auto;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  margin: 60px auto;
}

@media screen and (max-width: 1080px) {
  .is-modal-overflow-prep .m-modal__content {
    margin-top: 20%;
  }
}

.m-modal__content > * {
  width: 100%;
  height: auto;
}

.m-modal__content > * img {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  margin: 0 auto;
}

.m-modal__content-bg {
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1080px) {
  .m-modal__content-btn {
    position: relative;
    top: auto;
    right: auto;
    margin: 20px auto 0;
    width: 84%;
    height: auto;
  }
}

.m-modal__close {
  display: block;
  position: fixed;
  top: 15px;
  right: 15px;
  cursor: pointer;
  width: 45px;
  height: 45px;
}

@media screen and (max-width: 1080px) {
  .m-modal__close {
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
  }
}

@media screen and (max-width: 1080px) and (orientation: portrait) {
  .m-modal__close {
    top: auto;
    right: 15px;
    bottom: 15px;
  }
}

.m-modal__close::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
      -ms-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transition: background 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: background 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: #000;
  width: 100%;
  height: 2px;
  content: "";
}

@media screen and (max-width: 1080px) {
  .m-modal__close::before {
    height: 1px;
  }
}

.m-modal__close:hover::before {
  background: rgba(0, 0, 0, 0.5);
}

.m-modal__close::after {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
      -ms-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
  -webkit-transition: background 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: background 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: #000;
  width: 100%;
  height: 2px;
  content: "";
}

@media screen and (max-width: 1080px) {
  .m-modal__close::after {
    height: 1px;
  }
}

.m-modal__close:hover::after {
  background: rgba(0, 0, 0, 0.5);
}

.p-m-close {
  display: block;
  position: fixed;
  top: 35px;
  right: 85px;
  z-index: 15;
  cursor: pointer;
  width: 35px;
  height: 22px;
  content: "";
}

@media screen and (max-width: 1080px) {
  .p-m-close {
    right: 20px;
    width: 20px;
    height: 14px;
  }
}

.p-m-close__close {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.is-menu-open .p-m-close__close {
  pointer-events: auto;
}

.p-m-close__close::after {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 200%;
  height: 300%;
  content: "";
}

.p-m-close__close-item {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
}

.p-m-close__close-item.-item1 {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
      -ms-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.p-m-close__close-item.-item2 {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
      -ms-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.p-m-close__close-deco {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.5, 1, 0.89, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.5, 1, 0.89, 1);
  transition: transform 0.6s cubic-bezier(0.5, 1, 0.89, 1);
  transition: transform 0.6s cubic-bezier(0.5, 1, 0.89, 1), -webkit-transform 0.6s cubic-bezier(0.5, 1, 0.89, 1);
  width: 100%;
  height: 100%;
  content: "";
}

.p-m-close__close-deco::before {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transition: width 0.6s cubic-bezier(0.87, 0, 0.13, 1) 0.1s;
  transition: width 0.6s cubic-bezier(0.87, 0, 0.13, 1) 0.1s;
  background: #6c6c6c;
  width: 0;
  height: 100%;
  content: "";
}

.p-m-close__close-deco::after {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transition: width 0.4s cubic-bezier(0.87, 0, 0.13, 1);
  transition: width 0.4s cubic-bezier(0.87, 0, 0.13, 1);
  background: #b39851;
  width: 0;
  height: 100%;
  content: "";
}

.is-open .-item1 .p-m-close__close-deco {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.5, 1, 0.89, 1) 0.1s;
  transition: -webkit-transform 0.6s cubic-bezier(0.5, 1, 0.89, 1) 0.1s;
  transition: transform 0.6s cubic-bezier(0.5, 1, 0.89, 1) 0.1s;
  transition: transform 0.6s cubic-bezier(0.5, 1, 0.89, 1) 0.1s, -webkit-transform 0.6s cubic-bezier(0.5, 1, 0.89, 1) 0.1s;
}

.is-open .-item1 .p-m-close__close-deco::before {
  -webkit-transition: width 1s cubic-bezier(0.87, 0, 0.13, 1);
  transition: width 1s cubic-bezier(0.87, 0, 0.13, 1);
  width: 100%;
}

.is-open .-item1 .p-m-close__close-deco::after {
  -webkit-transition: width 0.8s cubic-bezier(0.87, 0, 0.13, 1) 0.6s;
  transition: width 0.8s cubic-bezier(0.87, 0, 0.13, 1) 0.6s;
  width: 100%;
}

.is-open .-item2 .p-m-close__close-deco {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.5, 1, 0.89, 1) 0.1s;
  transition: -webkit-transform 0.6s cubic-bezier(0.5, 1, 0.89, 1) 0.1s;
  transition: transform 0.6s cubic-bezier(0.5, 1, 0.89, 1) 0.1s;
  transition: transform 0.6s cubic-bezier(0.5, 1, 0.89, 1) 0.1s, -webkit-transform 0.6s cubic-bezier(0.5, 1, 0.89, 1) 0.1s;
}

.is-open .-item2 .p-m-close__close-deco::before {
  -webkit-transition: width 1s cubic-bezier(0.87, 0, 0.13, 1);
  transition: width 1s cubic-bezier(0.87, 0, 0.13, 1);
  width: 100%;
}

.is-open .-item2 .p-m-close__close-deco::after {
  -webkit-transition: width 0.8s cubic-bezier(0.87, 0, 0.13, 1) 0.3s;
  transition: width 0.8s cubic-bezier(0.87, 0, 0.13, 1) 0.3s;
  width: 100%;
}

/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  vertical-align: baseline;
  margin: 0;
  outline: 0;
  border: 0;
  background: transparent;
  padding: 0;
  font-size: 100%;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

a {
  vertical-align: baseline;
  margin: 0;
  background: transparent;
  padding: 0;
  font-size: 100%;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  cursor: help;
  border-bottom: 1px dotted;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  margin: 1em 0;
  border: 0;
  border-top: 1px solid #cccccc;
  padding: 0;
  height: 1px;
}

input, select {
  vertical-align: middle;
}

html {
  overflow-y: scroll;
  font-size: 62.5%;
}

@media screen and (max-width: 1080px) and (min-width: 561px) {
  html {
    font-size: 78.125%;
  }
}

*::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  word-wrap: break-word;
  background: #fff;
  overflow: hidden;
  color: #6c6c6c;
  font-family: 'Kosugi Maru', -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  -webkit-font-feature-settings: 'palt';
          font-feature-settings: 'palt';
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.85px;
  letter-spacing: .085rem;
  line-height: 1.3;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

a {
  color: #6c6c6c;
  text-decoration: none;
}

.clearfix:after {
  display: block;
  clear: both;
  visibility: hidden;
  height: 0;
  content: ' . ';
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 1080px) {
  * {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
}

button, input, select, textarea {
  background-color: transparent;
  min-height: 1.5em;
}

input[type="submit"], input[type="reset"] {
  cursor: pointer;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
}

a[href^=' tel '] {
  display: inline-block;
  color: inherit;
}

ol, ul {
  list-style: none;
}

@media screen and (min-width: 1080px) {
  .is-pc {
    display: block;
  }
  .is-sp {
    display: none !important;
  }
  .is-pc-inline {
    display: inline-block;
  }
  .is-sp-inline {
    display: none !important;
  }
  .pc {
    display: block;
  }
  .sp {
    display: none !important;
  }
  .pc-inline {
    display: inline-block;
  }
  .sp-inline {
    display: none !important;
  }
}

@media screen and (max-width: 1080px) {
  .is-sp {
    display: block;
  }
  .is-pc {
    display: none !important;
  }
  .is-sp-inline {
    display: inline-block;
  }
  .is-pc-inline {
    display: none !important;
  }
  .sp {
    display: block;
  }
  .pc {
    display: none !important;
  }
  .sp-inline {
    display: inline-block;
  }
  .pc-inline {
    display: none !important;
  }
}

@media screen and (orientation: landscape) {
  .is-land {
    display: block;
  }
  .is-port {
    display: none !important;
  }
}

@media screen and (orientation: portrait) {
  .is-land {
    display: none !important;
  }
  .is-port {
    display: block;
  }
}

@media screen and (min-width: 751px) {
  .is-wide {
    display: block;
  }
  .is-tab {
    display: none !important;
  }
}

@media screen and (min-width: 561px) {
  .is-wide {
    display: none !important;
  }
  .is-tab {
    display: block;
  }
}

.is-narrow {
  display: none !important;
}

.is-narrow-inline {
  display: none !important;
}

@media screen and (max-width: 374px) {
  .is-narrow {
    display: block !important;
  }
  .is-narrow-inline {
    display: inline-block !important;
  }
  .is-non-narrow {
    display: none !important;
  }
  .is-non-narrow-inline {
    display: none !important;
  }
}

img {
  display: block;
  vertical-align: middle;
  max-width: 100%;
}

img::-moz-selection {
  background: none;
}

img::selection {
  background: none;
}

[data-prefix]::before {
  content: attr(data-prefix);
}

[data-suffix]::after {
  content: attr(data-suffix);
}

[data-scroll] {
  cursor: pointer;
}

/* ====================
Layout
 ==================== */
.l-wrap {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-height: 100vh;
}

.l-wrap__bg {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  z-index: -1;
  background: url("../img/common/bg.jpg") no-repeat center;
  background-size: cover;
  width: 100%;
  height: 100vh;
}

.is-load .l-wrap__bg {
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: -webkit-transform 60s linear;
  transition: -webkit-transform 60s linear;
  transition: transform 60s linear;
  transition: transform 60s linear, -webkit-transform 60s linear;
}

.l-wrap__container {
  position: relative;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  z-index: 0;
  margin: 0 auto;
  width: 100%;
}

.is-load .l-wrap__container {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
  -webkit-transition: opacity 0.6s cubic-bezier(0.5, 1, 0.89, 1);
  transition: opacity 0.6s cubic-bezier(0.5, 1, 0.89, 1);
}

.l-main {
  display: block;
  position: relative;
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
}

.l-header__container {
  position: relative;
  margin: 0 auto;
  background: #fff;
  width: 100%;
  height: 50px;
}

@media screen and (max-width: 1080px) {
  .l-header__container {
    display: none;
  }
}

.p-order {
  display: block;
  position: fixed;
  z-index: 1;
  -webkit-filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0.8));
          filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0.8));
  -webkit-transition: -webkit-filter 0.3s cubic-bezier(0.5, 1, 0.89, 1);
  transition: -webkit-filter 0.3s cubic-bezier(0.5, 1, 0.89, 1);
  transition: filter 0.3s cubic-bezier(0.5, 1, 0.89, 1);
  transition: filter 0.3s cubic-bezier(0.5, 1, 0.89, 1), -webkit-filter 0.3s cubic-bezier(0.5, 1, 0.89, 1);
  width: 65px;
}

[data-ua="pc"] .p-order:hover {
  -webkit-filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.8));
          filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.8));
}

@media screen and (min-width: 1080px) {
  .p-order {
    top: 120px;
    right: 0;
  }
}

@media screen and (max-width: 1080px) {
  .p-order {
    right: 14px;
    bottom: 14px;
    z-index: 5;
    width: 75px;
  }
  .p-order.is-fit {
    position: absolute;
  }
}

.p-order__deco {
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -40%);
      -ms-transform: translate(-50%, -40%);
          transform: translate(-50%, -40%);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  z-index: -1;
  width: 50px;
  height: 90px;
}

.is-load .p-order__deco {
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
  -webkit-transition: opacity 0.3s cubic-bezier(0.5, 1, 0.89, 1) 2s, -webkit-transform 0.3s cubic-bezier(0.5, 1, 0.89, 1) 2s;
  transition: opacity 0.3s cubic-bezier(0.5, 1, 0.89, 1) 2s, -webkit-transform 0.3s cubic-bezier(0.5, 1, 0.89, 1) 2s;
  transition: opacity 0.3s cubic-bezier(0.5, 1, 0.89, 1) 2s, transform 0.3s cubic-bezier(0.5, 1, 0.89, 1) 2s;
  transition: opacity 0.3s cubic-bezier(0.5, 1, 0.89, 1) 2s, transform 0.3s cubic-bezier(0.5, 1, 0.89, 1) 2s, -webkit-transform 0.3s cubic-bezier(0.5, 1, 0.89, 1) 2s;
}

.p-order__deco-img {
  display: block;
  position: relative;
  -webkit-transform-origin: center bottom;
      -ms-transform-origin: center bottom;
          transform-origin: center bottom;
  -webkit-animation: pyoko 8s linear 3s infinite;
          animation: pyoko 8s linear 3s infinite;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.5, 1, 0.89, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.5, 1, 0.89, 1);
  transition: transform 0.3s cubic-bezier(0.5, 1, 0.89, 1);
  transition: transform 0.3s cubic-bezier(0.5, 1, 0.89, 1), -webkit-transform 0.3s cubic-bezier(0.5, 1, 0.89, 1);
  background: url("../img/common/chara_yoyaku.png") no-repeat center;
  background-size: contain;
  width: 100%;
  height: 100%;
}

[data-ua="pc"] .p-order:hover .p-order__deco-img {
  -webkit-transform: scale(1.4);
      -ms-transform: scale(1.4);
          transform: scale(1.4);
}

@-webkit-keyframes pyoko {
  0% {
    top: 0;
  }
  2% {
    top: -8px;
  }
  4% {
    top: 0;
  }
  6% {
    top: -8px;
  }
  8% {
    top: 0;
  }
  100% {
    top: 0;
  }
}

@keyframes pyoko {
  0% {
    top: 0;
  }
  2% {
    top: -8px;
  }
  4% {
    top: 0;
  }
  6% {
    top: -8px;
  }
  8% {
    top: 0;
  }
  100% {
    top: 0;
  }
}

.p-order__link {
  display: block;
  position: relative;
  width: 100%;
}

.l-nav {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

@media screen and (max-width: 1080px) {
  .l-nav {
    margin-bottom: 10px;
  }
}

.l-nav__container {
  position: relative;
  margin: 0 auto;
  width: 85%;
  max-width: 1400px;
}

@media screen and (min-width: 1080px) {
  .l-nav__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (max-width: 1080px) {
  .l-nav__container {
    width: 100%;
  }
}

.l-nav__brand {
  display: block;
  position: relative;
  -webkit-transition: opacity 0.35s cubic-bezier(0.5, 1, 0.89, 1);
  transition: opacity 0.35s cubic-bezier(0.5, 1, 0.89, 1);
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  padding: 10px 40px;
  width: 175px;
}

@media screen and (max-width: 1080px) {
  .l-nav__brand {
    margin: 0 auto 20px;
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
    padding: 15px 0;
    width: 100%;
  }
  .l-nav__brand img {
    margin: 0 auto;
    width: 175px;
  }
}

[data-ua="pc"] .l-nav__brand:hover {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  opacity: .6;
}

.p-gnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

@media screen and (min-width: 1080px) {
  .p-gnav {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (max-width: 1080px) {
  .p-gnav {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 auto;
    width: 90%;
    max-width: 560px;
  }
}

.p-gnav__item {
  display: block;
  position: relative;
}

@media screen and (max-width: 1080px) {
  .p-gnav__item {
    margin-bottom: 6px;
    width: 50%;
  }
}

.p-gnav__text {
  display: block;
  position: relative;
  -webkit-filter: drop-shadow(0 0 0 rgba(179, 152, 81, 0.8));
          filter: drop-shadow(0 0 0 rgba(179, 152, 81, 0.8));
  -webkit-transition: opacity 0.35s cubic-bezier(0.5, 1, 0.89, 1), -webkit-filter 0.3s cubic-bezier(0.5, 1, 0.89, 1);
  transition: opacity 0.35s cubic-bezier(0.5, 1, 0.89, 1), -webkit-filter 0.3s cubic-bezier(0.5, 1, 0.89, 1);
  transition: filter 0.3s cubic-bezier(0.5, 1, 0.89, 1), opacity 0.35s cubic-bezier(0.5, 1, 0.89, 1);
  transition: filter 0.3s cubic-bezier(0.5, 1, 0.89, 1), opacity 0.35s cubic-bezier(0.5, 1, 0.89, 1), -webkit-filter 0.3s cubic-bezier(0.5, 1, 0.89, 1);
  padding: 16.5px 28px;
}

@media screen and (max-width: 1080px) {
  .p-gnav__text {
    border-left: 2px solid #b39851;
    padding: 9px 20px;
  }
}

[data-ua="pc"] .p-gnav__text:hover {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  opacity: .6;
  -webkit-filter: drop-shadow(0 0 3px rgba(218, 218, 192, 0.8));
          filter: drop-shadow(0 0 3px rgba(218, 218, 192, 0.8));
}

.is-new .p-gnav__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.is-new .p-gnav__text::after {
  display: block;
  position: relative;
  margin-left: 8px;
  border-radius: 100px;
  background: #8f68c5;
  padding: 3px 12px;
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  content: "NEW";
}

@media screen and (max-width: 1080px) {
  .is-new .p-gnav__text::after {
    font-size: 12px;
  }
}

.p-gnav__text img {
  display: block;
  position: relative;
  max-width: none;
  height: 17px;
}

@media screen and (max-width: 1080px) {
  .p-gnav__text img {
    height: 12px;
  }
}

.l-side_nav {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  z-index: 5;
  -webkit-transition: -webkit-transform 0.85s cubic-bezier(0.25, 1, 0.5, 1);
  transition: -webkit-transform 0.85s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.85s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.85s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.85s cubic-bezier(0.25, 1, 0.5, 1);
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  background: #fff;
  width: 240px;
  max-width: 300px;
  height: 100vh;
}

@media screen and (max-width: 1080px) {
  .l-side_nav {
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
    width: 60%;
  }
}

.is-menu-open .l-side_nav {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

.l-side_nav__bg {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  z-index: -1;
  width: 100vw;
  height: 100%;
}

.is-menu-open .l-side_nav__bg {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

.l-side_nav__btn {
  position: absolute;
  top: 25px;
  left: 0;
  -webkit-transform: translate(-100%, 0);
      -ms-transform: translate(-100%, 0);
          transform: translate(-100%, 0);
  z-index: -1;
  cursor: pointer;
  width: 88px;
}

@media screen and (max-width: 1080px) {
  .l-side_nav__btn {
    top: 10px;
    width: 50px;
  }
}

.l-side_nav__btn img {
  -webkit-transition: -webkit-transform 0.15s cubic-bezier(0.25, 1, 0.5, 1);
  transition: -webkit-transform 0.15s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.15s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.15s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.15s cubic-bezier(0.25, 1, 0.5, 1);
}

[data-ua="pc"] .l-side_nav__btn:hover img {
  -webkit-transform: translate(10%, 0);
      -ms-transform: translate(10%, 0);
          transform: translate(10%, 0);
}

.is-menu-open .l-side_nav__btn img {
  -webkit-transform: translate(0, 0) !important;
      -ms-transform: translate(0, 0) !important;
          transform: translate(0, 0) !important;
}

.l-side_nav__btn-item.-close {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  -webkit-transition: -webkit-transform 0.15s cubic-bezier(0.25, 1, 0.5, 1);
  transition: -webkit-transform 0.15s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.15s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.15s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.15s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}

.is-menu-open .l-side_nav__btn-item.-close {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
}

.l-side_nav__container {
  position: relative;
  margin: 0 auto;
  padding: 25px 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1080px) {
  .l-side_nav__container {
    min-height: 100vh;
    overflow-y: scroll;
  }
}

.l-side_nav__brand {
  position: relative;
  -webkit-transition: opacity 0.35s cubic-bezier(0.5, 1, 0.89, 1);
  transition: opacity 0.35s cubic-bezier(0.5, 1, 0.89, 1);
  margin: 0 auto 18px;
  width: 80%;
}

@media screen and (max-width: 1080px) {
  .l-side_nav__brand {
    margin-bottom: 16px;
  }
}

[data-ua="pc"] .l-side_nav__brand:hover {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  opacity: .6;
}

.l-side_nav__list {
  border-top: 1px solid #dadac0;
}

.l-side_nav__item {
  position: relative;
  margin: 0 auto;
  border-bottom: 1px solid #dadac0;
  width: 100%;
}

.l-side_nav__text {
  display: block;
  position: relative;
  margin: 0 auto;
  border-left: 2px solid #b39851;
  padding: 25px 40px;
  width: 100%;
}

@media screen and (max-width: 1080px) {
  .l-side_nav__text {
    padding: 18px 20px;
  }
}

.l-side_nav__text::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  -webkit-transition: opacity 0.55s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.55s cubic-bezier(0.25, 1, 0.5, 1);
  background: rgba(218, 218, 192, 0.5) url("../img/common/bg_pattern.png") repeat left top;
  background-size: auto;
  width: 100%;
  height: 100%;
  content: "";
}

[data-ua="pc"] .l-side_nav__item:hover .l-side_nav__text::before {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
}

.is-new .l-side_nav__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.is-new .l-side_nav__text::after {
  display: block;
  position: relative;
  margin-left: 8px;
  border-radius: 100px;
  background: #8f68c5;
  padding: 3px 12px;
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  content: "NEW";
}

@media screen and (max-width: 1080px) {
  .is-new .l-side_nav__text::after {
    font-size: 12px;
  }
}

.l-side_nav__text img {
  position: relative;
  height: 16px;
}

@media screen and (max-width: 1080px) {
  .l-side_nav__text img {
    height: 14px;
  }
}

.l-side_nav__item:nth-child(7) .l-side_nav__text img {
  height: 18px;
}

@media screen and (max-width: 1080px) {
  .l-side_nav__item:nth-child(7) .l-side_nav__text img {
    height: 14.5px;
  }
}

.l-side_nav__link {
  position: relative;
  margin: 20px auto 0;
  width: 80%;
}

.l-side_nav__link-item {
  position: relative;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: opacity 0.35s cubic-bezier(0.5, 1, 0.89, 1);
  transition: opacity 0.35s cubic-bezier(0.5, 1, 0.89, 1);
  margin: 0 auto;
  width: 100%;
}

[data-ua="pc"] .l-side_nav__link-item:hover {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  opacity: .6;
}

.l-side_nav__link-item + .l-side_nav__link-item {
  margin-top: 10px;
}

.l-footer {
  position: relative;
  margin: 0 auto;
  background: #fff;
  width: 100%;
}

.l-footer__container {
  position: relative;
  margin: 0 auto;
  background: #fff;
  width: 100%;
}

@media screen and (min-width: 1080px) {
  .l-footer__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.l-footer__link {
  position: relative;
  margin: 0 auto;
  padding: 34px 0;
  width: 100%;
}

@media screen and (min-width: 1080px) {
  .l-footer__link {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

@media screen and (max-width: 1080px) {
  .l-footer__link {
    padding: 20px 0 40px;
  }
}

.l-footer__link-in {
  position: relative;
  margin: 0 auto;
  width: 85%;
  max-width: 1400px;
}

@media screen and (min-width: 1080px) {
  .l-footer__link-in {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (max-width: 1080px) {
  .l-footer__link-in {
    width: 90%;
  }
}

.l-footer__data {
  position: relative;
  margin: 0 auto;
  background: #f8f8f8;
  width: 100%;
}

@media screen and (min-width: 1080px) {
  .l-footer__data {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding: 34px 0;
  }
}

.l-footer__data-in {
  position: relative;
  margin: 0 auto;
  width: 85%;
  max-width: 1400px;
}

@media screen and (max-width: 1080px) {
  .l-footer__data-in {
    width: 100%;
  }
}

.l-footer__info {
  position: relative;
  margin: 0 auto;
  background: #b39851;
  padding: 24px 0;
  width: 100%;
  color: #fff;
  text-align: center;
}

@media screen and (min-width: 1080px) {
  .l-footer__info {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

@media screen and (max-width: 1080px) {
  .l-footer__info {
    margin-top: 50px;
    padding: 34px 0;
  }
}

.l-footer__info-in {
  position: relative;
  margin: 0 auto;
  width: 85%;
  max-width: 1400px;
}

@media screen and (max-width: 1080px) {
  .l-footer__info-in {
    width: 100%;
  }
}

.l-footer__policy {
  position: relative;
  margin: 0 auto 12px;
  width: 100%;
}

.l-footer__policy-text {
  color: #fff;
  font-size: 10px;
  text-decoration: underline;
}

@media screen and (max-width: 1080px) {
  .l-footer__policy-text {
    font-size: 10px;
  }
}

.l-footer__brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto 20px;
  width: 100%;
}

@media screen and (min-width: 1080px) {
  .l-footer__brand {
    display: none;
  }
}

.l-footer__brand-item.-switch {
  width: 50px;
}

.l-footer__brand-item.-marv {
  margin-left: 20px;
  width: 82px;
}

.l-footer__copy {
  color: #fff;
  font-size: 10px;
}

@media screen and (max-width: 1080px) {
  .l-footer__copy {
    font-size: 10px;
  }
}

.l-footer__note {
  margin-top: 6px;
  color: #fff;
  font-size: 10px;
}

@media screen and (max-width: 1080px) {
  .l-footer__note {
    margin-top: 15px;
    font-size: 10px;
  }
}

.l-footer__nav {
  position: relative;
  margin: 0 auto -10px;
  background: #fff;
  padding: 16px 0 20px;
  width: 100%;
}

.l-footer__pagetop {
  display: block;
  position: relative;
  cursor: pointer;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid #eaeaea;
  background: #fff;
  width: 100%;
  height: 58px;
}

@media screen and (max-width: 1080px) {
  .l-footer__pagetop {
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
    height: 50px;
  }
}

.l-footer__pagetop::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  opacity: 0;
  -webkit-transition: opacity 0.55s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.55s cubic-bezier(0.25, 1, 0.5, 1);
  background: #c7b4e2;
  background-size: auto;
  width: 100%;
  height: 100%;
  content: "";
}

[data-ua="pc"] .l-footer__pagetop:hover::before {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
}

.l-footer__pagetop-text {
  position: absolute;
  top: 52%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: color 0.55s cubic-bezier(0.25, 1, 0.5, 1);
  transition: color 0.55s cubic-bezier(0.25, 1, 0.5, 1);
  width: 90%;
  color: #6c6c6c;
  font-size: 14px;
  letter-spacing: .4px;
  line-height: 1;
  text-align: center;
}

@media screen and (max-width: 1080px) {
  .l-footer__pagetop-text {
    letter-spacing: 1px;
  }
}

[data-ua="pc"] .l-footer__pagetop:hover .l-footer__pagetop-text {
  color: #fff;
}

.p-f-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 1080px) {
  .p-f-link {
    margin: 0 auto 28px;
    width: 100%;
    max-width: 460px;
  }
}

.p-f-link__item {
  display: block;
  position: relative;
  -webkit-filter: drop-shadow(0 0 0 rgba(179, 152, 81, 0.8));
          filter: drop-shadow(0 0 0 rgba(179, 152, 81, 0.8));
  -webkit-transition: -webkit-filter 0.3s cubic-bezier(0.5, 1, 0.89, 1), -webkit-transform 0.35s cubic-bezier(0.5, 1, 0.89, 1);
  transition: -webkit-filter 0.3s cubic-bezier(0.5, 1, 0.89, 1), -webkit-transform 0.35s cubic-bezier(0.5, 1, 0.89, 1);
  transition: filter 0.3s cubic-bezier(0.5, 1, 0.89, 1), transform 0.35s cubic-bezier(0.5, 1, 0.89, 1);
  transition: filter 0.3s cubic-bezier(0.5, 1, 0.89, 1), transform 0.35s cubic-bezier(0.5, 1, 0.89, 1), -webkit-filter 0.3s cubic-bezier(0.5, 1, 0.89, 1), -webkit-transform 0.35s cubic-bezier(0.5, 1, 0.89, 1);
}

[data-ua="pc"] .p-f-link__item:hover {
  -webkit-transform: translateY(-4px);
      -ms-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-filter: drop-shadow(0 0 2.5px rgba(179, 152, 81, 0.8));
          filter: drop-shadow(0 0 2.5px rgba(179, 152, 81, 0.8));
}

.p-f-link__item + .p-f-link__item {
  margin-left: 10px;
}

.p-f-link__item img {
  position: relative;
  width: 100%;
}

@media screen and (min-width: 1080px) {
  .p-f-link__item img {
    height: 64px;
  }
}

.p-f_product {
  position: relative;
  margin: 0 auto;
  width: 80%;
}

@media screen and (min-width: 1080px) {
  .p-f_product {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (max-width: 1080px) {
  .p-f_product {
    width: 100%;
  }
}

.p-f_product__img {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
}

@media screen and (max-width: 1080px) {
  .p-f_product__img {
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
    background: #fff;
    padding: 15px 0 12px;
    width: 100%;
  }
}

.p-f_product__img-item {
  position: relative;
  margin: 0 auto;
  width: 80%;
}

@media screen and (max-width: 1080px) {
  .p-f_product__img-item {
    position: relative;
    margin: 0 auto;
    width: 48%;
    max-width: 260px;
  }
}

.p-f_product__inner {
  position: relative;
  margin-left: 16px;
  width: 50%;
}

@media screen and (max-width: 1080px) {
  .p-f_product__inner {
    position: relative;
    margin: 0 auto;
    padding: 22px 0;
    width: 80%;
    max-width: 560px;
  }
}

.p-f_product__data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  border-bottom: 1px solid #eaeaea;
  padding: 5px 14px;
  width: 100%;
}

@media screen and (max-width: 1080px) {
  .p-f_product__data {
    padding: 3px 8px;
  }
}

.p-f_product__data-name {
  width: 115px;
  color: #b39851;
  font-size: 13px;
  line-height: 1.5;
}

@media screen and (max-width: 1080px) {
  .p-f_product__data-name {
    margin-right: 10px;
    width: 85px;
    font-size: 10px;
  }
}

.p-f_product__data-main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  min-width: 0;
  font-size: 14px;
  line-height: 1.5;
}

@media screen and (max-width: 1080px) {
  .p-f_product__data-main {
    font-size: 11px;
  }
}

.p-f_product__data-main span {
  display: block;
  width: 60px;
}

.p-f_product__link {
  position: relative;
  margin: 12px auto 0;
  padding: 5px 14px;
  width: 100%;
  font-size: 13px;
}

@media screen and (max-width: 1080px) {
  .p-f_product__link {
    padding: 3px 8px;
    font-size: 11px;
  }
}

.p-f_product__link a {
  color: #b39851;
  text-decoration: underline;
}

.p-f_product__link a:hover {
  text-decoration: none;
}

.p-f-share {
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 1080px) {
  .p-f-share {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 48px;
  }
}

.p-f-share__cap {
  display: block;
  position: relative;
  margin-right: 20px;
  width: 68px;
}

@media screen and (max-width: 1080px) {
  .p-f-share__cap {
    position: relative;
    margin: 0 auto 18px;
    width: 56px;
  }
}

.p-f-share__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

@media screen and (max-width: 1080px) {
  .p-f-share__list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-f-share__item {
  position: relative;
  -webkit-filter: drop-shadow(0 0 0 rgba(179, 152, 81, 0.8));
          filter: drop-shadow(0 0 0 rgba(179, 152, 81, 0.8));
  -webkit-transition: -webkit-filter 0.3s cubic-bezier(0.5, 1, 0.89, 1), -webkit-transform 0.35s cubic-bezier(0.5, 1, 0.89, 1);
  transition: -webkit-filter 0.3s cubic-bezier(0.5, 1, 0.89, 1), -webkit-transform 0.35s cubic-bezier(0.5, 1, 0.89, 1);
  transition: filter 0.3s cubic-bezier(0.5, 1, 0.89, 1), transform 0.35s cubic-bezier(0.5, 1, 0.89, 1);
  transition: filter 0.3s cubic-bezier(0.5, 1, 0.89, 1), transform 0.35s cubic-bezier(0.5, 1, 0.89, 1), -webkit-filter 0.3s cubic-bezier(0.5, 1, 0.89, 1), -webkit-transform 0.35s cubic-bezier(0.5, 1, 0.89, 1);
  width: 62px;
}

@media screen and (max-width: 1080px) {
  .p-f-share__item {
    width: 50px;
  }
}

[data-ua="pc"] .p-f-share__item:hover {
  -webkit-transform: translateY(-4px);
      -ms-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-filter: drop-shadow(0 0 2.5px rgba(179, 152, 81, 0.8));
          filter: drop-shadow(0 0 2.5px rgba(179, 152, 81, 0.8));
}

.p-f-share__item + .p-f-share__item {
  margin-left: 12px;
}

@media screen and (max-width: 1080px) {
  .p-f-share__item + .p-f-share__item {
    margin-left: 20px;
  }
}

/* ====================
Project
 ==================== */
/* ====================
COMPONENT
 ==================== */
