@charset "UTF-8";
@import url(/common/css/reset.css);
@import url(/common/css/fonts.css);
/* variables
----------------------------------------------------*/
/* base
----------------------------------------------------*/
body {
  position: relative;
  text-align: left;
  font-family: YakuHanJP, "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "Lucida Grande", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, Helvetica, Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.1em;
  color: #222;
  background: #fafafa;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt";
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 3.2vw;
  }
}

/* anchor
----------------------------------------------------*/
a:link {
  color: #484e5c;
  text-decoration: none;
}
a:visited {
  color: #484e5c;
  text-decoration: none;
}
a:hover, a:active {
  color: rgba(72, 78, 92, 0.8);
  text-decoration: none;
}

/* utils
---------------------------------------------------*/
.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }
}
.note {
  margin-top: 1.5em;
  font-size: 1.2rem;
}
@media only screen and (max-width: 767px) {
  .note {
    font-size: 2.5vw !important;
  }
}

.sup {
  position: relative;
  top: -0.8em;
  font-size: 50%;
}

.sub {
  position: relative;
  bottom: 0;
  font-size: 50%;
}

#page-wrapper {
  position: relative;
}

/* header
----------------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 999;
  background: rgba(250, 250, 250, 0);
  transition: background 0.15s;
}
#header:hover {
  background: rgba(250, 250, 250, 0.9);
}
@media only screen and (max-width: 940px) {
  #header {
    display: none;
  }
}

.header-logo {
  position: absolute;
  top: 50%;
  left: 50px;
  transform: translateY(-50%);
}
@media only screen and (max-width: 940px) {
  .header-logo {
    left: 15px;
    width: 27%;
  }
}

/* nav
----------------------------------------------------*/
#nav {
  position: absolute;
  top: 0;
  z-index: 999;
  right: 0;
  width: 800px;
  height: 60px;
}
@media only screen and (max-width: 940px) {
  #nav {
    display: none;
  }
}
#nav ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: 250px;
  height: 100%;
}
#nav li {
  display: block;
  margin: 0 1em;
  font-family: "Inter", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
#nav li a {
  text-decoration: none;
  transition: opacity 0.2s;
}
#nav li a:hover {
  opacity: 0.6;
}
#nav .menu_ussite img {
  filter: grayscale(1);
  opacity: 0.5;
  transition: filter 0.2s, opacity 0.2s;
}
#nav .menu_ussite a:hover img {
  filter: grayscale(0);
  opacity: 1;
}
#nav .subnav {
  display: none;
  position: absolute;
  top: 60px;
  left: 60px;
  z-index: 10;
  width: 250px;
  height: 160px;
}
#nav .subnav ul {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px 0;
  background: #fff;
}
#nav .subnav li {
  font-size: 1.3rem;
  margin: 0.8em 0;
  text-align: center;
}
#nav .subnav li a {
  display: block;
  width: 100%;
  height: 100%;
}

.nav-onlineshop {
  position: absolute;
  top: 0;
  right: 0;
  width: 210px;
  height: 60px;
}
.nav-onlineshop a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-family: "Inter", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #fff;
  background: #484e5c;
  transition: opacity 0.3s;
}
.nav-onlineshop a:hover {
  opacity: 0.8;
}
.nav-onlineshop a::before {
  content: "";
  margin-right: 7px;
  width: 21px;
  height: 20px;
  background: url(/common/img/icon_cart.svg) no-repeat;
  background-size: 100%;
}
@media only screen and (max-width: 940px) {
  .nav-onlineshop {
    position: relative;
    top: auto;
    right: auto;
    margin: 1em auto;
    width: 70%;
    max-width: 450px;
  }
  .nav-onlineshop a {
    padding: 1em 0;
    font-size: 1.6rem;
    font-weight: 400;
    border-top: solid 1px #707070;
    border-bottom: solid 1px #707070;
    color: #222;
    background: #fff;
  }
  .nav-onlineshop a::before {
    background: url(/common/img/icon_cart_sp.svg) no-repeat;
    background-size: 100%;
  }
}

/* sp-nav
----------------------------------------------------*/
.sp-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 40px;
  background: transparent;
}
.sp-header.active {
  background: #fafafa;
}
@media only screen and (max-width: 940px) {
  .sp-header {
    display: block;
  }
}

#sp-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  z-index: 999;
  background: #fff;
}
#sp-nav .menu-inner {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  padding: 5em 0 10em;
  width: 100%;
  height: auto;
}
#sp-nav .menu-inner ul {
  margin: 0 auto;
  width: 100%;
}
#sp-nav .menu-inner li {
  text-align: center;
}
#sp-nav .menu-inner li a {
  display: block;
  width: 100%;
  padding: 0.5em 0;
  color: #484e5c;
  letter-spacing: 0.1em;
  text-decoration: none;
}
#sp-nav .menu-inner li .menu_insta,
#sp-nav .menu-inner li .menu_fb,
#sp-nav .menu-inner li .menu_tw {
  margin: 0 10px;
  width: 33px;
}
#sp-nav .menu-inner li .menu_ussite {
  margin: 0 auto;
  width: 30px;
}
#sp-nav .nav-col {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
}

.menu-trigger {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 40px;
  z-index: 200;
}

.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
}

.menu-trigger span {
  position: absolute;
  left: 20%;
  width: 60%;
  height: 2px;
  background-color: #484E5C;
}

.menu-trigger span:nth-of-type(1) {
  top: 10px;
}

.menu-trigger span:nth-of-type(2) {
  top: 20px;
}

.menu-trigger span:nth-of-type(2)::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 90%;
  height: 2px;
  background-color: #fff;
  transition: all 0.15s;
  -webkit-transform: rotate(0);
  transform: rotate(0);
  opacity: 0;
}

.menu-trigger.active span {
  background-color: #484E5C;
}

.menu-trigger span:nth-of-type(3) {
  bottom: 8px;
}

.menu-trigger.active span:nth-of-type(1) {
  transform: translate(50%) scale(0);
}

.menu-trigger.active span:nth-of-type(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.menu-trigger.active span:nth-of-type(2)::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  opacity: 1;
  background-color: #484E5C;
}

.menu-trigger.active span:nth-of-type(3) {
  transform: translate(-50%) scale(0);
}

/* contents
----------------------------------------------------*/
.contents {
  position: relative;
  width: 100%;
}

.content .title {
  font-family: YakuHanJP, "Inter", "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "Lucida Grande", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  font-size: 6rem;
  font-weight: 400;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .content .title {
    font-size: 9vw;
  }
}

/* media
----------------------------------------------------*/
.media {
  position: relative;
  width: 100%;
  height: 750px;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 767px) {
  .media {
    height: auto;
  }
}

.media-inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 100%;
  max-width: 1300px;
}

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

.media-fig {
  position: absolute;
  box-shadow: 2px 2px 30px 0 rgba(0, 0, 0, 0.16);
}
.media-fig img {
  width: 100%;
  height: auto;
}

.media-img {
  width: 50%;
  max-width: 690px;
  height: auto;
  box-shadow: 2px 2px 30px 0 rgba(0, 0, 0, 0.16);
}
.media-img img {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 767px) {
  .media-img {
    width: 65vw;
    height: 56vw;
  }
}

.media-body {
  margin-left: auto;
  margin-right: auto;
  width: 360px;
}
@media only screen and (max-width: 767px) {
  .media-body {
    width: 80%;
  }
  .media-body p {
    font-size: 3.2vw;
  }
}

.media-bg {
  margin: 0 auto;
  width: 100%;
  max-width: 1300px;
  height: 600px;
  background: #fff;
  background: -moz-linear-gradient(left, #ffffff 0%, #ffffff 88%, #fafafa 88%, #fafafa 100%);
  background: -webkit-linear-gradient(left, #ffffff 0%, #ffffff 88%, #fafafa 88%, #fafafa 100%);
  background: linear-gradient(to right, #ffffff 0%, #ffffff 88%, #fafafa 88%, #fafafa 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#fafafa",GradientType=1 );
}
@media only screen and (max-width: 767px) {
  .media-bg {
    background: #fff;
    height: auto;
  }
}

.media-title {
  font-family: YakuHanJP, "Inter", "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "Lucida Grande", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  font-size: 3rem;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .media-title {
    font-size: 5vw;
  }
}
.media-title + p {
  margin-top: 1.5em;
}

.media-title_lg {
  font-size: 6rem;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .media-title_lg {
    font-size: 10vw;
  }
}

/* slick
  ----------------------------------------------------*/
.slide-arrow {
  position: absolute;
  top: 50%;
  width: 30px;
  padding: 20px;
  transform: translateY(-50%);
  box-sizing: content-box;
}
@media only screen and (max-width: 767px) {
  .slide-arrow {
    width: 20px;
    padding: 10px;
  }
}
.slide-arrow:hover {
  cursor: pointer;
}

.btn-next {
  right: -60px;
}
@media only screen and (max-width: 767px) {
  .btn-next {
    right: -40px;
  }
}

.btn-prev {
  left: -60px;
}
@media only screen and (max-width: 767px) {
  .btn-prev {
    left: -40px;
  }
}

.slick-disabled {
  opacity: 0.1 !important;
  pointer-events: none;
}

/* btn-list
----------------------------------------------------*/
.btn-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 20px;
}
.btn-list .btn-item {
  margin: 8px;
  width: 150px;
  height: 60px;
}
@media only screen and (max-width: 767px) {
  .btn-list .btn-item {
    margin: 1%;
    width: 30%;
    height: auto;
  }
}
.btn-list .btn-item a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 1.6rem;
  font-weight: 400;
  text-align: center;
  color: #484E5C;
  border: solid 2px #484E5C;
  border-width: 1px;
  opacity: 0.4;
  transition: opacity 0.3s;
}
@media only screen and (max-width: 767px) {
  .btn-list .btn-item a {
    padding: 1em 0;
    font-size: 2.6vw;
  }
}
.btn-list .btn-item a.active {
  opacity: 1;
  font-weight: 600;
  border-width: 2px;
}
.btn-list .btn-item a:hover {
  opacity: 0.8;
}

/* btn
----------------------------------------------------*/
.btn-media {
  position: absolute;
  z-index: 100;
  width: 620px;
}
@media only screen and (max-width: 767px) {
  .btn-media {
    position: relative;
    top: auto !important;
    left: auto !important;
    bottom: auto !important;
    right: auto !important;
    margin: 0 auto;
    width: 95%;
  }
}
.btn-media a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 500;
  padding: 0 20px;
  width: 100%;
  height: 165px;
  background: #fff;
}
@media only screen and (max-width: 767px) {
  .btn-media a {
    padding: 0.5em 5%;
    height: auto;
  }
  .btn-media a .btn-media-icon {
    width: 20%;
    height: auto;
  }
  .btn-media a .tx {
    font-size: 3vw;
  }
}
.btn-media a:hover .arrow {
  animation: arrow 1s ease-out infinite forwards;
}
.btn-media .arrow {
  display: block;
  position: relative;
  top: 4px;
  margin-left: 30px;
  width: 30px;
  height: 1px;
  background-color: #222;
  transform-origin: top left;
}
.btn-media .arrow::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-right: 1px solid #222;
  transform: rotate(-45deg);
  transform-origin: right bottom;
  position: absolute;
  bottom: 1px;
  right: 0px;
}

.btn-tx-arrow {
  position: relative;
  z-index: 100;
  display: inline-block;
  float: right;
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  .btn-tx-arrow {
    font-size: 3.3vw;
  }
}
.btn-tx-arrow a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 500;
  padding: 1em 0;
}
.btn-tx-arrow a:hover .arrow {
  animation: arrow 1s ease-out infinite forwards;
}
.btn-tx-arrow .arrow {
  display: block;
  position: relative;
  top: 4px;
  margin-left: 10px;
  width: 50px;
  height: 1px;
  background-color: #222;
  transform-origin: top left;
}
@media only screen and (max-width: 767px) {
  .btn-tx-arrow .arrow {
    width: 40px;
  }
}
.btn-tx-arrow .arrow::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-right: 1px solid #222;
  transform: rotate(-45deg);
  transform-origin: right bottom;
  position: absolute;
  bottom: 1px;
  right: 0px;
}
@media only screen and (max-width: 767px) {
  .btn-tx-arrow .arrow::after {
    width: 7px;
    height: 7px;
  }
}

@keyframes arrow {
  0% {
    transform: scale(0, 1);
    opacity: 0;
  }
  30% {
    transform: scale(1.3, 1);
    opacity: 1;
  }
  60% {
    transform: scale(1.3, 1);
    opacity: 1;
  }
  100% {
    transform: scale(1.3, 1);
    opacity: 0;
  }
}
.btn-tx-link {
  margin-top: 1em;
  font-family: YakuHanJP, "Inter", "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "Lucida Grande", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
}
@media only screen and (max-width: 767px) {
  .btn-tx-link {
    font-size: 3vw;
  }
}

#footer {
  margin-top: 160px;
  width: 100%;
  background: #484e5c;
}
@media only screen and (max-width: 767px) {
  #footer {
    margin-top: 120px;
  }
}

.footer-inner {
  margin: 0 auto;
  padding: 80px 0 60px;
  width: 90%;
  max-width: 840px;
}
@media only screen and (max-width: 767px) {
  .footer-inner {
    padding: 20px 0;
  }
}

.footer-nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .footer-nav {
    display: none;
  }
}
.footer-nav li {
  width: 210px;
}
.footer-nav a {
  font-family: YakuHanJP, "Inter", "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "Lucida Grande", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  font-size: 1.2rem;
  color: #fff;
}
.footer-nav a:link {
  color: #fff;
  text-decoration: none;
}
.footer-nav a:visited {
  color: #fff;
  text-decoration: none;
}
.footer-nav a:hover, .footer-nav a:active {
  color: #fff;
  text-decoration: none;
  opacity: 0.7;
}
.footer-nav .nav-col {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
.footer-nav .f-menu a {
  font-size: 1.6rem;
}
.footer-nav .menu_insta,
.footer-nav .menu_fb,
.footer-nav .menu_tw {
  margin-top: 1.5em;
  margin-right: 15px;
  transition: opacity 0.3s;
}
.footer-nav .menu_insta:hover,
.footer-nav .menu_fb:hover,
.footer-nav .menu_tw:hover {
  opacity: 0.6;
}

.copyright {
  margin-top: 80px;
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  text-align: center;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .copyright {
    margin-top: 0;
    font-size: 2.5vw;
  }
}

/*# sourceMappingURL=common.css.map */
