@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap");
/*
$serif: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
$sansSerif: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
$sansSerifBold: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
$msSerif: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
$msSansSerif: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
*/
* {
  box-sizing: border-box;
}

body {
  color: #000000;
  font-weight: 400;
  line-height: 1.5;
  font-feature-settings: "palt";
  min-height: 100vh;
  /* Fallback */
  min-height: calc(var(--vh, 1vh) * 100);
  font-family: "Noto Serif JP", serif;
  font-size: 1.5rem;
  line-height: 2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 3.2vw;
  }
}

img,
video {
  max-width: 100%;
}

img {
  width: 100%;
  height: auto;
}
img[src$="_sp.jpg"], img[src$="_sp.png"], img[src$="_sp.svg"] {
  display: none;
}
@media screen and (max-width: 768px) {
  img[src$="_sp.jpg"], img[src$="_sp.png"], img[src$="_sp.svg"] {
    display: inline-block;
  }
  img[src$="_sp.jpg"] + img, img[src$="_sp.png"] + img, img[src$="_sp.svg"] + img {
    display: none;
  }
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: initial;
  }
}

a:visited {
  color: #000;
}

.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.pr {
  position: relative;
}

.pa {
  position: absolute;
}

em {
  font-style: normal;
}

/*//////////////////////////////////////////
//  共通設定
//////////////////////////////////////////*/
.inner {
  max-width: 120rem;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .inner {
    padding: 0 4rem;
  }
}
@media screen and (max-width: 768px) {
  .inner {
    padding: 0 4vw;
  }
}

.picture {
  display: block;
}

.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.mincho {
  font-family: "Noto Serif JP", serif;
}

.pr {
  position: relative;
}

.pa {
  position: absolute;
}

.sp {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  br.sp {
    display: inline;
  }
}
/*セレクトボックスの設定(全ブラウザ共通にするため)
//設定やアイコンは用途に合わせて書き換え*/
select::-ms-expand {
  display: none;
}

label {
  font-size: 1.5rem;
}

.select-box {
  position: relative;
  display: block;
  padding: 0;
  max-width: 7rem;
  width: 100%;
  height: 3.8rem;
}
.select-box:after {
  content: "";
  position: absolute;
  width: 9px;
  height: 8px;
  top: 50%;
  transform: translateY(-50%);
  right: 1em;
  z-index: 2;
  background: url("../images/arrow-select.svg") 0 0 no-repeat;
  pointer-events: none;
}
.select-box select {
  display: block;
  width: 100%;
  height: 3.8rem;
  padding-left: 1.5em;
  margin: 0;
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 0.5rem;
  outline: none;
  box-sizing: border-box;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  line-height: 1;
}

.commonSec {
  padding: 6rem 0 8rem;
}
@media screen and (max-width: 768px) {
  .commonSec {
    padding: 8vw 0 10.6666666667vw;
  }
}

.secHeader {
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .secHeader {
    margin-bottom: 8vw;
  }
}
.secHeader h1,
.secHeader h2 {
  text-align: center;
  font-size: 3.6rem;
  letter-spacing: 0.025em;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .secHeader h1,
  .secHeader h2 {
    font-size: 6vw;
  }
}
.secHeader h1 span,
.secHeader h2 span {
  border-bottom: 1px solid #cacaca;
  position: relative;
  padding-bottom: 1rem;
}
.secHeader h1 span:after,
.secHeader h2 span:after {
  content: "";
  display: block;
  width: 4rem;
  border-bottom: 1px solid #d60000;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -1px;
}
@media screen and (max-width: 768px) {
  .secHeader h1 span:after,
  .secHeader h2 span:after {
    width: 5.3333333333vw;
  }
}

#mainHeader p {
  margin: 0;
  padding: 0;
}
#mainHeader .headerBand {
  background: #000;
}
#mainHeader .headerBand .inner {
  display: flex;
  justify-content: space-between;
  line-height: 1;
  padding: 1rem 0;
}
#mainHeader .headerBand .inner .catch {
  font-size: 1.3rem;
  color: #fff;
}
#mainHeader .headerBand .inner .deliFree {
  font-size: 1.3rem;
  color: #ff9800;
}
@media screen and (max-width: 768px) {
  #mainHeader .headerBand .inner .deliFree {
    font-size: 2.6666666667vw;
    text-align: center;
    width: 100%;
  }
}
#mainHeader .headerBand .inner .deliFree span {
  display: flex;
  align-items: center;
  gap: 0 0.9rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  #mainHeader .headerBand .inner .deliFree span {
    justify-content: center;
  }
}
#mainHeader .headerBand .inner .deliFree span:before {
  content: "";
  display: inline-block;
  width: 2.5rem;
  height: 1.8rem;
  background-image: url("https://senriya.itembox.design/item/assets/images/icon-deli.png");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  #mainHeader .headerBand .inner .deliFree span:before {
    width: 3.4666666667vw;
    height: 2.2666666667vw;
  }
}
#mainHeader .headerContents {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  #mainHeader .headerContents {
    padding: 2.1333333333vw 4vw 0;
  }
}
#mainHeader .headerContents .logo {
  max-width: 26rem;
  width: 100%;
  padding-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  #mainHeader .headerContents .logo {
    max-width: 32vw;
    padding-bottom: 2.1333333333vw;
  }
}
#mainHeader .headerContents .searchArea {
  max-width: 40rem;
  width: 100%;
  margin-top: 1.5rem;
  padding-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  #mainHeader .headerContents .searchArea {
    display: none;
    padding-bottom: 2.1333333333vw;
  }
}
#mainHeader .headerContents .searchArea form {
  position: relative;
  height: 5rem;
}
#mainHeader .headerContents .searchArea form input {
  border: 1px solid #e5e5e5;
  background: #f5f5f5;
  width: 100%;
  position: relative;
  height: 5rem;
  padding-left: 5.5rem;
}
#mainHeader .headerContents .searchArea form button {
  width: 5rem;
  height: 5rem;
  padding: 0;
  border: none;
  position: absolute;
  left: 0;
  top: 0;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}
#mainHeader .headerContents .searchArea form button img {
  width: 2.6rem;
  height: 2.6rem;
}
#mainHeader .headerContents .searchArea .tags {
  margin-left: 1rem;
}
#mainHeader .headerContents .searchArea .tags li {
  display: inline-block;
  margin-right: 1rem;
}
#mainHeader .headerContents .searchArea .tags li a {
  color: #900000;
  font-size: 1.2rem;
  letter-spacing: 0.025em;
}
#mainHeader .headerContents .searchArea .tags li a:before {
  content: "#";
}
#mainHeader .headerContents .sysMenu {
  max-width: 27.7rem;
  width: 100%;
  display: flex;
  gap: 0 0.6rem;
  position: relative;
  align-self: stretch;
  padding-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  #mainHeader .headerContents .sysMenu {
    justify-content: flex-end;
    gap: 0 1.6vw;
    max-width: initial;
    padding-bottom: 2.1333333333vw;
  }
}
#mainHeader .headerContents .sysMenu li {
  width: 7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #mainHeader .headerContents .sysMenu li {
    width: 10.6666666667vw;
  }
}
#mainHeader .headerContents .sysMenu li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #000;
}
#mainHeader .headerContents .sysMenu li a figure {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: #900000;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #mainHeader .headerContents .sysMenu li a figure {
    width: 8.4vw;
    height: 8.4vw;
  }
}
#mainHeader .headerContents .sysMenu li a figure.user img {
  width: 2.3rem;
}
@media screen and (max-width: 768px) {
  #mainHeader .headerContents .sysMenu li a figure.user img {
    width: 4.9333333333vw;
  }
}
#mainHeader .headerContents .sysMenu li a figure.heart img {
  width: 2.6rem;
}
@media screen and (max-width: 768px) {
  #mainHeader .headerContents .sysMenu li a figure.heart img {
    width: 4.4vw;
  }
}
#mainHeader .headerContents .sysMenu li a figure.cart img {
  width: 3.5rem;
}
@media screen and (max-width: 768px) {
  #mainHeader .headerContents .sysMenu li a figure.cart img {
    width: 6vw;
  }
}
#mainHeader .headerContents .sysMenu li a figure.info img {
  width: 0.8rem;
}
@media screen and (max-width: 768px) {
  #mainHeader .headerContents .sysMenu li a figure.info img {
    width: 1.4666666667vw;
  }
}
#mainHeader .headerContents .sysMenu li a span {
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  #mainHeader .headerContents .sysMenu li a span {
    font-size: 2.04vw;
  }
}
#mainHeader .headerContents .sysMenu li a:hover {
  color: #000;
}
#mainHeader .headerContents .sysMenu .supportMenu {
  display: none;
  width: 30rem;
  background: #8e6c1b;
  height: initial;
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 99;
  padding: 2rem;
}
@media screen and (max-width: 768px) {
  #mainHeader .headerContents .sysMenu .supportMenu {
    right: 0;
  }
}
#mainHeader .headerContents .sysMenu .supportMenu li {
  width: 100%;
  display: block;
}
#mainHeader .headerContents .sysMenu .supportMenu li a {
  text-align: left;
  color: #fff !important;
  font-size: 1.6rem;
  font-weight: 700;
  justify-content: flex-start;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  #mainHeader .headerContents .sysMenu .supportMenu li a {
    font-size: 1.4rem;
  }
}
#mainHeader .gNav {
  background: #3e0000;
  padding: 0.5rem 0;
  position: relative;
}
#mainHeader .gNav .inner {
  padding-left: 2rem;
  display: flex;
  gap: 0 6rem;
}
@media screen and (max-width: 768px) {
  #mainHeader .gNav .inner {
    gap: 0 4.6666666667vw;
  }
}
#mainHeader .gNav .inner li {
  display: inline-block;
}
#mainHeader .gNav .inner li a {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  #mainHeader .gNav .inner li a {
    font-size: 3.6vw;
  }
}
#mainHeader .gNav .inner li a:hover {
  text-decoration: none;
}
#mainHeader .gNav .inner li.drop .megaMenu {
  display: none;
  width: 100%;
  background: #f9f5e0;
  height: auto;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 99;
  padding-top: 5rem;
  padding-bottom: 5rem;
  box-shadow: 0.2rem 0 1rem rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 768px) {
  #mainHeader .gNav .inner li.drop .megaMenu {
    padding-top: 4vw;
    padding-bottom: 6.6666666667vw;
  }
  #mainHeader .gNav .inner li.drop .megaMenu .inner {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 4vw 0;
  }
}
#mainHeader .gNav .inner li.drop .megaMenu dl {
  width: 22rem;
  display: flex;
  flex-direction: column;
  gap: 1rem 0;
}
@media screen and (max-width: 768px) {
  #mainHeader .gNav .inner li.drop .megaMenu dl {
    width: 47%;
    gap: 1.3333333333vw 0;
  }
}
#mainHeader .gNav .inner li.drop .megaMenu dl dt {
  width: 100%;
  height: 4rem;
  margin: 1rem;
  margin: 0;
  background-image: url("../images/back-menu.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  #mainHeader .gNav .inner li.drop .megaMenu dl dt {
    font-size: 3.2vw;
  }
}
#mainHeader .gNav .inner li.drop .megaMenu dl dd {
  width: 100%;
  padding-left: 1em;
  display: flex;
  align-items: center;
  gap: 0 1rem;
}
#mainHeader .gNav .inner li.drop .megaMenu dl dd:before {
  content: "";
  display: inline-block;
  width: 0.4rem;
  height: 0.4rem;
  background: #ea460a;
}
#mainHeader .gNav .inner li.drop .megaMenu dl dd a {
  color: #000;
}
@media screen and (max-width: 768px) {
  #mainHeader .gNav .inner li.drop .megaMenu dl dd a {
    font-size: 3.2vw;
  }
}
#mainHeader .gNav .inner li.drop > a {
  display: flex;
  align-items: center;
  gap: 0 1rem;
}
#mainHeader .gNav .inner li.drop > a:after {
  content: "";
  display: block;
  width: 0.6rem;
  height: 0.4rem;
  background: #fff600;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
  transition: linear all 0.2s;
}
@media screen and (max-width: 768px) {
  #mainHeader .gNav .inner li.drop > a:after {
    width: 1.3333333333vw;
    height: 1.2vw;
  }
}
#mainHeader .gNav .inner li.drop > a:hover:after {
  transform: rotate(180deg);
}

#mainFooter {
  background: #3e0000;
}
#mainFooter .inner {
  padding-top: 8rem;
  padding-bottom: 3rem;
  display: flex;
  gap: 0 11.8rem;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #mainFooter .inner {
    display: block;
    padding-bottom: 0;
    padding-top: 9.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  #mainFooter .footerInfo {
    text-align: center;
  }
}
#mainFooter .footerInfo .fLogo {
  width: 25.6rem;
}
@media screen and (max-width: 768px) {
  #mainFooter .footerInfo .fLogo {
    width: 34.1333333333vw;
  }
}
#mainFooter .footerInfo ul {
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  #mainFooter .footerInfo ul {
    margin-top: 6vw;
  }
}
#mainFooter .footerInfo ul li {
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 768px) {
  #mainFooter .footerInfo ul li {
    font-size: 3.2vw;
  }
}
#mainFooter .footerMenu {
  display: flex;
  flex-wrap: wrap;
  gap: 5rem 5rem;
}
@media screen and (max-width: 768px) {
  #mainFooter .footerMenu {
    margin-right: -4vw;
    margin-left: -4vw;
    display: block;
    margin-top: 8vw;
  }
}
#mainFooter .footerMenu ul li {
  line-height: 1.2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  #mainFooter .footerMenu ul li {
    width: 50%;
  }
}
#mainFooter .footerMenu ul li:not(:first-child) {
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  #mainFooter .footerMenu ul li:not(:first-child) {
    margin-top: 0;
  }
}
#mainFooter .footerMenu ul li a {
  color: #fff;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  #mainFooter .footerMenu ul li a {
    font-size: 4vw;
  }
}
#mainFooter .footerMenu ul li a:hover {
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  #mainFooter .footerMenu ul.menu03 {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid #fff;
  }
  #mainFooter .footerMenu ul.menu03 li {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #fff;
  }
  #mainFooter .footerMenu ul.menu03 li.fm-guide {
    order: 1;
    border-right: 1px solid #fff;
  }
  #mainFooter .footerMenu ul.menu03 li.fm-pay {
    order: 2;
  }
  #mainFooter .footerMenu ul.menu03 li.fm-rank {
    display: none;
    order: 8;
  }
  #mainFooter .footerMenu ul.menu03 li.fm-faq {
    order: 3;
    border-right: 1px solid #fff;
  }
  #mainFooter .footerMenu ul.menu03 li.fm-contact {
    order: 4;
  }
  #mainFooter .footerMenu ul.menu03 li.fm-blog {
    display: none;
    order: 7;
  }
  #mainFooter .footerMenu ul.menu03 li.fm-terms {
    order: 5;
    border-right: 1px solid #fff;
    border-bottom: none;
  }
  #mainFooter .footerMenu ul.menu03 li.fm-privacy {
    order: 6;
    border-bottom: none;
  }
  #mainFooter .footerMenu ul.menu03 li a {
    padding: 4vw 0;
    display: block;
  }
  #mainFooter .footerMenu ul.menu04 {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid #fff;
  }
  #mainFooter .footerMenu ul.menu04 li {
    border-bottom: 1px solid #fff;
  }
  #mainFooter .footerMenu ul.menu04 li:nth-child(1) {
    border-right: 1px solid #fff;
  }
  #mainFooter .footerMenu ul.menu04 li a {
    padding: 1.3333333333vw 0 1.3333333333vw 10.6666666667vw;
    display: block;
  }
}
#mainFooter small {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
  color: #fff;
  line-height: 1;
  padding: 0.5rem 0;
}
@media screen and (max-width: 768px) {
  #mainFooter small {
    font-size: 3.2vw;
    padding: 2.6666666667vw 0;
  }
}

/*//////////////////////////////////////////
//  drawer
//////////////////////////////////////////*/
.drawer.drawer--right .drawer-hamburger {
  width: 4.8vw;
  height: 4vw;
  left: 5.3333333333vw;
  top: 5.3333333333vw;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 100;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .drawer.drawer--right .drawer-hamburger {
    display: flex;
  }
}
.drawer.drawer--right .drawer-open .drawer-hamburger {
  top: 5%;
}
.drawer.drawer--right .drawer-nav {
  right: -100vw;
  z-index: 99;
  width: 84.5vw;
  height: 100vh;
  background: #fff;
  overflow: scroll;
  top: 0;
}
.drawer.drawer--right .drawer-nav .sp-logo {
  padding: 3rem 5rem;
  display: block;
  border-bottom: 1px solid #c2c2c2;
}
.drawer.drawer--right .drawer-nav .drawer-menu {
  margin-top: 0;
  padding: 2rem 5rem;
}
.drawer.drawer--right .drawer-nav .drawer-menu li {
  font-size: 4vw;
  margin: 0.2rem 0;
  width: 100%;
}
.drawer.drawer--right .drawer-nav .drawer-menu li span {
  display: block;
  font-size: 0.12rem;
}
.drawer.drawer--right .drawer-overlay {
  z-index: 98;
  background-color: rgba(0, 0, 0, 0.5);
}
.drawer.drawer--right .drawer-hamburger-icon {
  background-color: #474747;
  margin-top: 0;
  width: 100%;
}
.drawer.drawer--right .drawer-hamburger-icon,
.drawer.drawer--right .drawer-hamburger-icon:after,
.drawer.drawer--right .drawer-hamburger-icon:before {
  height: 0.5333333333vw;
  background-color: black;
}
.drawer.drawer--right .drawer-hamburger-icon:before {
  width: 100%;
  top: -1.7333333333vw;
}
.drawer.drawer--right .drawer-hamburger-icon:after {
  top: 1.7333333333vw;
  width: 100%;
}
.drawer.drawer--right.drawer-open .drawer-nav {
  right: 0;
}
.drawer.drawer--right.drawer-open .drawer-hamburger-icon {
  background-color: transparent;
}
.drawer.drawer--right.drawer-open .drawer-hamburger-icon:before {
  top: 0;
  background: #fff;
}
.drawer.drawer--right.drawer-open .drawer-hamburger-icon:after {
  top: 0;
  background: #fff;
}
.drawer.drawer--right .drawer-dropdown .drawer-caret {
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-left: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transform: rotate(0deg);
  vertical-align: middle;
  border-top: none;
  border-right: none;
  border-left: none;
  float: right;
}
.drawer.drawer--right .drawer-dropdown.open .drawer-caret {
  transform: rotate(90deg);
}
.drawer.drawer--right ion-icon {
  --ionicon-stroke-width: 16px;
  color: #474747;
}
.drawer.drawer--right .dr-link,
.drawer.drawer--right .drawer-dropdown-menu-item {
  background: #eeeeee;
}
.drawer.drawer--right .dr-link {
  font-size: 0.18rem;
  padding: 0.8em 0 0.8em 0.75rem;
}
.drawer.drawer--right .drawer-dropdown-menu-item {
  font-size: 0.18rem;
  margin: 0.1em 0;
  padding-left: 1.5em;
  font-weight: normal;
  color: #474747;
}
.drawer.drawer--right .drawer-dropdown-menu li a {
  padding-top: 0.3em !important;
  padding-bottom: 0.3em !important;
}

/*//////////////////////////////////////////
//  アニメーション設定
//////////////////////////////////////////*/
.fu {
  transition: 1s;
  opacity: 0;
  transform: translate3d(0, 10%, 0);
}

.fu.fadeup {
  opacity: 1;
  transform: translateZ(0);
}

.fadeIn {
  transition: all 0.9s linear;
  opacity: 1 !important;
}

@keyframes fadeup {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0, 10%, 0);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translateZ(0);
  }
}
.faderight {
  animation-name: faderight;
}

@keyframes faderight {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*//////////////////////////////////////////
//  slick上書き
//////////////////////////////////////////*/
/* Arrows */
.slick-prev,
.slick-next {
  height: 4rem;
  width: 4rem;
  line-height: 0;
  font-size: 0;
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 768px) {
  .slick-prev,
  .slick-next {
    width: 5.3333333333vw;
    height: 5.3333333333vw;
    border: 0.4vw solid #000;
  }
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: rgba(0, 0, 0, 0.5);
  color: transparent;
}
.slick-prev:before,
.slick-next:before {
  content: "" !important;
}

.slick-prev {
  left: 0;
}
@media screen and (max-width: 768px) {
  .slick-prev {
    left: 0;
  }
}
.slick-prev:before {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  border-bottom: 0.1rem solid #fff;
  border-right: 0.1rem solid #fff;
  transform: rotate(135deg);
  margin-left: 0.8rem;
}
@media screen and (max-width: 768px) {
  .slick-prev:before {
    width: 2vw;
    height: 2vw;
    border-bottom: 0.1333333333vw solid #fff;
    border-right: 0.1333333333vw solid #fff;
    margin-left: 1.0666666667vw;
  }
}

.slick-next {
  right: 0;
}
@media screen and (max-width: 768px) {
  .slick-next {
    right: 0;
  }
}
.slick-next:before {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  border-bottom: 0.1rem solid #fff;
  border-right: 0.1rem solid #fff;
  transform: rotate(-45deg);
  margin-right: 0.8rem;
}
@media screen and (max-width: 768px) {
  .slick-next:before {
    width: 2vw;
    height: 2vw;
    border-bottom: 0.1rem solid #fff;
    border-right: 0.1rem solid #fff;
    margin-right: 1.0666666667vw;
  }
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 0rem;
}

.slick-dots {
  position: absolute;
  bottom: -3rem;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .slick-dots {
    bottom: -2.5rem;
  }
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 1.5rem;
  width: 1.5rem;
  margin: 0 0.5rem;
  padding: 0;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .slick-dots li {
    height: 2vw;
    width: 2vw;
  }
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 1.5rem;
  width: 1.5rem;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .slick-dots li button {
    height: 2vw;
    width: 2vw;
  }
}
.slick-dots li button:before {
  content: "";
  background: #9a9a9a;
  position: absolute;
  border-radius: 50%;
  top: 0;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  line-height: 1.5rem;
  text-align: center;
  opacity: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 768px) {
  .slick-dots li button:before {
    height: 2vw;
    width: 2vw;
  }
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li.slick-active button:before {
  background: #000;
}/*# sourceMappingURL=common.css.map */