@charset "UTF-8";
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

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

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  text-indent: 0.01px;
  text-overflow: "";
  appearance: none;
  border-radius: 0;
  border: 0;
  margin: 0;
  padding: 0;
  background: none transparent;
  vertical-align: middle;
  color: inherit;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

select::-ms-expand {
  display: none;
}

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  padding: 0;
  background: none;
  border: none;
}

em {
  font-style: normal;
}

main {
  display: block;
}

html, body {
  height: 100%;
  width: 100%;
}

html {
  font-size: 62.5%;
}

body {
  background: #fff;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  /* font-family: "ヒラギノ角ゴ Pro W6", sans-serif; */
  /* font-family: "Oswald", sans-serif; */
  font-weight: 500;
  color: #000000;
  line-height: 1.8;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-break: normal;
  word-wrap: break-word;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
}

a {
  /*transition: all 0.3s linear;*/
  color: #000;
  text-decoration: none;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

p {
  letter-spacing: 0.3px;
}
@media screen and (min-width: 768px) {
  p {
    letter-spacing: 0;
  }
}

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

*:focus {
  outline: none;
}

img {
  max-width: 100%;
  width: 100%;
  height: auto;
  vertical-align: top;
}

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

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

/*-- ファイル読み込み --*/
/*----------------------------------------------------
header
----------------------------------------------------*/
header {
  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: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 6.4%;
  height: 9.8vh;
  position: sticky;
  top: 0;
  background: #ffffff;
  z-index: 99;
}
@media screen and (min-width: 768px) {
  header {
    height: max(88px, 11vh);
    padding: 0 2.1%;
  }
}
header .logo {
  width: 130px;
  z-index: 99;
}
@media screen and (min-width: 768px) {
  header .logo {
    width: 195px;
  }
}
header .logo a {
  display: block;
  width: 100%;
  height: 100%;
}
header .trigger {
  width: 30px;
  height: 18px;
  z-index: 99;
}
@media screen and (min-width: 768px) {
  header .trigger {
    width: 50px;
    height: 30px;
    cursor: pointer;
  }
}
header .trigger__content {
  width: 100%;
  height: 100%;
  position: relative;
}
header .trigger__content span {
  width: 28px;
  height: 2px;
  position: absolute;
  right: 0;
  background: #0d6d4f;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
@media screen and (min-width: 768px) {
  header .trigger__content span {
    width: 50px;
    height: 3px;
  }
}
header .trigger__content span:first-child {
  top: 0;
}
header .trigger__content span:nth-child(2) {
  top: 8px;
}
@media screen and (min-width: 768px) {
  header .trigger__content span:nth-child(2) {
    top: 13px;
  }
}
header .trigger__content span:last-child {
  bottom: 0;
}
header .trigger.open span {
  width: 32px;
  right: 0;
}
@media screen and (min-width: 768px) {
  header .trigger.open span {
    width: 50px;
  }
}
header .trigger.open span:first-child {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 8px;
}
@media screen and (min-width: 768px) {
  header .trigger.open span:first-child {
    top: 13px;
  }
}
header .trigger.open span:nth-child(2) {
  width: 0;
  opacity: 0;
}
header .trigger.open span:last-child {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  bottom: 8px;
}
@media screen and (min-width: 768px) {
  header .trigger.open span:last-child {
    bottom: 12px;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  header .trigger.open span:last-child {
    bottom: 14px;
  }
}
header .menu {
  width: 100%;
  height: 100dvh;
  padding: 100px 0 0;
  position: fixed;
  top: 0;
  left: 0;
  background: #ffffff;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  z-index: 98;
}
@media screen and (min-width: 768px) {
  header .menu {
    padding: 0;
  }
}
header .menu nav {
  width: 90%;
  max-width: 710px;
  margin: 0 auto 0px;
}
@media screen and (min-width: 768px) {
  header .menu nav {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
header .menu nav ul {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  header .menu nav ul {
    margin-bottom: 50px;
  }
}
header .menu nav ul li {
  padding: 14px 0;
  border-bottom: 1px solid #d9d9d9;
}
@media screen and (min-width: 768px) {
  header .menu nav ul li {
    padding: 28px 0;
  }
}
@media screen and (min-width: 768px) {
  header .menu nav ul li:first-child {
    border-top: 1px solid #d9d9d9;
  }
}
header .menu nav ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 96%;
  margin: 0 auto;
}
header .menu nav ul li a p {
  line-height: 1;
  text-box-trim: trim-end;
}
header .menu nav ul li a p img {
  display: block;
  vertical-align: middle;
}
header .menu nav ul li a p.select {
  display: block;
  margin-right: 10px;
  width: 70px;
  padding: 6px 0;
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  header .menu nav ul li a p.select {
    width: 110px;
    margin-right: 20px;
    padding: 7px 0;
  }
}
header .menu nav ul li a p.select img {
  margin: 0 auto;
}
header .menu nav ul li a p.select__01 {
  background: #6ac1a9;
}
header .menu nav ul li a p.select__01 img {
  width: 52px;
}
@media screen and (min-width: 768px) {
  header .menu nav ul li a p.select__01 img {
    width: 78px;
  }
}
header .menu nav ul li a p.select__02 {
  background: #37b1c6;
}
header .menu nav ul li a p.select__02 img {
  width: 53px;
}
@media screen and (min-width: 768px) {
  header .menu nav ul li a p.select__02 img {
    width: 79px;
  }
}
header .menu nav ul li a p.select__03 {
  background: #3b6db5;
}
header .menu nav ul li a p.select__03 img {
  width: 53px;
}
@media screen and (min-width: 768px) {
  header .menu nav ul li a p.select__03 img {
    width: 79px;
  }
}
header .menu nav ul li a p.name {
  width: 31%;
  font-family: "Zen Maru Gothic", sans-serif;
}
@media screen and (min-width: 768px) {
  header .menu nav ul li a p.name {
    width: 22%;
    font-size: 2.2rem;
  }
}
header .menu nav ul li a p.name__01 {
  color: #6ac1a9;
}
header .menu nav ul li a p.name__02 {
  color: #37b1c6;
}
header .menu nav ul li a p.name__03 {
  color: #3b6db5;
}
header .menu nav ul li a p.size {
  width: 42%;
}
@media screen and (min-width: 768px) {
  header .menu nav ul li a p.size {
    width: 56%;
  }
}
header .menu nav ul li a p.size.size-a img {
  width: 54px;
}
@media screen and (min-width: 768px) {
  header .menu nav ul li a p.size.size-a img {
    width: 76px;
  }
}
header .menu nav ul li a p.size.size-b img {
  width: 101px;
}
@media screen and (min-width: 768px) {
  header .menu nav ul li a p.size.size-b img {
    width: 145px;
  }
}
header .menu nav ul li a p.size.size-c img {
  width: 52px;
}
@media screen and (min-width: 768px) {
  header .menu nav ul li a p.size.size-c img {
    width: 75px;
  }
}
header .menu nav ul li a .arrow {
  width: 6px;
}
@media screen and (min-width: 768px) {
  header .menu nav ul li a:hover {
    opacity: 0.7;
  }
}
header .menu nav .top-back {
  width: 174px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  header .menu nav .top-back {
    width: 204px;
  }
}
header .menu nav .top-back a {
  display: block;
  padding: 10px 0;
  position: relative;
  border-radius: 24px;
  border: 1px solid #0d6d4f;
  line-height: 1;
  text-box-trim: trim-end;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #0d6d4f;
}
@media screen and (min-width: 768px) {
  header .menu nav .top-back a {
    padding: 7px 0;
    font-size: 2rem;
  }
}
header .menu nav .top-back a p {
  margin-left: 8px;
}
header .menu nav .top-back a .arrow {
  display: block;
  width: 6px;
  position: absolute;
  top: 50%;
  left: 20px;
  -webkit-transform: translateY(-50%) rotate(180deg);
      -ms-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
  line-height: 0;
}
@media screen and (min-width: 768px) {
  header .menu nav .top-back a:hover {
    background: #0d6d4f;
    color: #ffffff;
  }
}
@media screen and (min-width: 768px) {
  header .menu nav .top-back a:hover .arrow .arrow-path {
    fill: #ffffff;
  }
}
header .menu.open {
  visibility: visible;
  opacity: 1;
}

.page-ttl__lead .select, .collection__new-arrivals .new-arrivals, .point h3, .link-list h3 {
  width: 100px;
  margin: 0 auto 24px;
  padding: 10px 0;
  position: relative;
  border-radius: 5px;
  line-height: 0;
  text-align: center;
}
.page-ttl__lead .select .bubble, .collection__new-arrivals .new-arrivals .bubble, .point h3 .bubble, .link-list h3 .bubble {
  width: 12px;
  position: absolute;
  right: 0;
  left: 0;
  bottom: -10px;
  margin: auto;
}

.point__list___item h4, .link-list h4, .feature h3 {
  margin-bottom: 18px;
  line-height: 1.5;
  text-align: center;
  font-family: YakuHanJP, "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  color: #0d6d4f;
}

.page-ttl__lead::before, .point::before {
  content: "";
  width: 100%;
  height: 12px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: url("../img/common/edge.svg") repeat-x bottom/contain;
}

/*-------------------------------------
link-list
-------------------------------------*/
.link-list {
  padding-bottom: 60px;
}
.link-list__top {
  position: relative;
}
.link-list__top::before {
  content: "";
  width: 90%;
  height: 1px;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: #d9d9d9;
}
.link-list__page {
  border-bottom: 1px solid #d9d9d9;
}
.link-list h3 {
  background: #0d6d4f;
  -webkit-animation: scaling 4s infinite;
          animation: scaling 4s infinite;
}
.link-list h3 img {
  width: 47px;
}
@media screen and (min-width: 768px) {
  .link-list h3 img {
    width: 56px;
  }
}
@media screen and (min-width: 768px) {
  .link-list h4 {
    margin-bottom: 30px;
  }
}
.link-list ul {
  width: 86%;
  max-width: 710px;
  margin: 0 auto 0px;
}
@media screen and (min-width: 768px) {
  .link-list ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 0 5%;
  }
}
@media screen and (min-width: 768px) {
  .link-list ul li {
    width: 30%;
  }
}
.link-list ul li:not(:last-child) {
  margin-bottom: 14px;
}
@media screen and (min-width: 768px) {
  .link-list ul li:not(:last-child) {
    margin-bottom: 0;
  }
}
.link-list ul li a {
  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: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  padding: 4% 5.4% 4% 3.6%;
  position: relative;
  border-radius: 8px;
  border-width: 2px;
  border-style: solid;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .link-list ul li a {
    display: block;
    padding: 26px 0 34px;
  }
}
.link-list ul li a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 19.5%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .link-list ul li a::before {
    top: 63.8%;
    right: auto;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}
.link-list ul li a .link-img {
  width: 44%;
}
@media screen and (min-width: 768px) {
  .link-list ul li a .link-img {
    display: block;
    width: 84%;
    margin: 0 auto 24px;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
}
.link-list ul li a .txt {
  width: 50%;
}
@media screen and (min-width: 768px) {
  .link-list ul li a .txt {
    width: 100%;
  }
}
.link-list ul li a .txt p {
  text-align: center;
}
.link-list ul li a .txt p.name {
  margin-bottom: 10px;
  font-family: YakuHanJP, "Zen Maru Gothic", sans-serif;
  line-height: 1;
  font-size: 2rem;
}
.link-list ul li a .txt p.name__01 {
  color: #6ac1a9;
}
.link-list ul li a .txt p.name__02 {
  color: #37b1c6;
}
.link-list ul li a .txt p.name__03 {
  color: #3b6db5;
}
.link-list ul li a .txt p.size {
  display: block;
  margin: 0 auto;
  line-height: 0;
}
.link-list ul li a .txt p.size.size-a {
  width: 54px;
}
.link-list ul li a .txt p.size.size-b {
  width: 102px;
}
.link-list ul li a .txt p.size.size-c {
  width: 53px;
}
.link-list ul li a .arrow {
  width: 9px;
}
@media screen and (min-width: 768px) {
  .link-list ul li a:hover .link-img {
    -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
            transform: scale(1.05);
  }
}
.link-list ul li.link-combidress a {
  background: url("../img/common/pat-b.jpg") repeat center/426px;
  border-color: #6ac1a9;
}
.link-list ul li.link-combidress a::before {
  width: 23.6%;
  aspect-ratio: 73/54;
  background-image: url("../img/txt/number-01.svg");
}
@media screen and (min-width: 768px) {
  .link-list ul li.link-combidress a::before {
    width: 35%;
  }
}
.link-list ul li.link-preall a {
  background: url("../img/common/pat-c.jpg") repeat center/426px;
  border-color: #37b1c6;
}
.link-list ul li.link-preall a::before {
  width: 25.7%;
  aspect-ratio: 80/54;
  background-image: url("../img/txt/number-02.svg");
}
@media screen and (min-width: 768px) {
  .link-list ul li.link-preall a::before {
    width: 38.5%;
  }
}
.link-list ul li.link-winter-item a {
  background: url("../img/common/pat-d.jpg") repeat center/426px;
  border-color: #3b6db5;
}
.link-list ul li.link-winter-item a::before {
  width: 25.4%;
  aspect-ratio: 79/54;
  background-image: url("../img/txt/number-03.svg");
}
@media screen and (min-width: 768px) {
  .link-list ul li.link-winter-item a::before {
    width: 37.8%;
  }
}

/*-------------------------------------
banner
-------------------------------------*/
.banner {
  width: 90%;
  max-width: 900px;
  margin: 0 auto 60px;
  padding-top: 60px;
}
@media screen and (min-width: 768px) {
  .banner__item {
    width: 90%;
    max-width: 685px;
    margin: 0 auto 0px;
  }
}
@media screen and (min-width: 768px) {
  .banner__item a:hover {
    opacity: 0.8;
  }
}

/*-------------------------------------
feature
-------------------------------------*/
.feature {
  padding: 40px 0 60px;
  background: url("../img/common/pat-a.jpg") repeat center/426px;
}
@media screen and (min-width: 768px) {
  .feature {
    padding: 70px 0;
  }
}
.feature p {
  width: 86%;
  max-width: 900px;
  margin: 0 auto 30px;
}
@media screen and (min-width: 768px) {
  .feature p {
    text-align: center;
  }
}
.feature .feature-link {
  width: min(90%, 326px);
  margin: 0 auto;
}
.feature .feature-link a {
  display: block;
  width: 100%;
  height: 100%;
  background: #0d6d4f;
  padding: 14px 0;
  position: relative;
  border-radius: 40px;
  border: 2px solid #0d6d4f;
  line-height: 1.4;
  text-box-trim: trim-end;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.5rem;
  color: #ffffff;
}
.feature .feature-link a .win-icon {
  width: 17px;
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .feature .feature-link a .win-icon {
    right: 24px;
  }
}
@media screen and (min-width: 768px) {
  .feature .feature-link a:hover {
    background: #ffffff;
    color: #0d6d4f;
  }
}
@media screen and (min-width: 768px) {
  .feature .feature-link a:hover .win-icon .window-path {
    fill: #0d6d4f;
  }
}

/*----------------------------------------------------
footer
----------------------------------------------------*/
#footer {
  min-width: 320px;
  position: relative;
}
#footer .recommend {
  min-width: 320px;
}
#footer .recommend .recommend-inner {
  margin: 0 auto 35px;
  padding: 40px 8vw 0;
}
@media screen and (min-width: 768px) {
  #footer .recommend .recommend-inner {
    width: min(96%, 1100px);
    margin: 0 auto 80px;
    padding: 50px 0 0;
  }
}
#footer .recommend .recommend-inner .recommend-title {
  font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  font-size: 1.4rem;
  text-align: center;
  padding: 0 0 15px;
}
@media screen and (min-width: 768px) {
  #footer .recommend .recommend-inner .recommend-title {
    font-size: 2rem;
    padding: 0 0 35px;
  }
}
#footer .recommend .recommend-inner ul {
  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;
  width: min(100%, 620px);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  #footer .recommend .recommend-inner ul {
    width: min(92%, 860px);
    /*   justify-content: center;*/
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
#footer .recommend .recommend-inner ul li {
  width: 47.5%;
  margin: 0 0 4.5vw;
}
@media screen and (min-width: 768px) {
  #footer .recommend .recommend-inner ul li {
    width: 23.5%;
    margin: 0 2% 30px 0;
  }
}
@media screen and (min-width: 768px) {
  #footer .recommend .recommend-inner ul li:last-child {
    margin-right: 0;
  }
}
@media screen and (min-width: 768px) {
  #footer .recommend .recommend-inner ul li:nth-of-type(4n) {
    margin-right: 0;
  }
}
@media screen and (min-width: 768px) {
  #footer .recommend .recommend-inner ul li a:hover {
    opacity: 0.7;
  }
}
#footer .recommend .recommend-inner ul li a img {
  border-radius: 8px;
}
#footer .footer-inner {
  padding: 30px 4vw 10px;
  background-color: #f4f4f4;
  text-align: center;
}
@media screen and (min-width: 768px) {
  #footer .footer-inner {
    padding: 50px 0 10px;
    margin: 0 auto;
  }
}
#footer .footer-inner .footer-btn {
  position: relative;
  width: 250px;
  height: 75px;
  background-color: #fff;
  border-radius: 75px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  #footer .footer-inner .footer-btn {
    width: 390px;
    height: 120px;
    border-radius: 120px;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
  }
}
#footer .footer-inner .footer-btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media screen and (min-width: 768px) {
  #footer .footer-inner .footer-btn::after {
    right: 25px;
    width: 14px;
    height: 14px;
    margin-top: -7px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
  }
}
@media screen and (min-width: 768px) {
  #footer .footer-inner .footer-btn:hover {
    opacity: 0.7;
  }
}
#footer .footer-inner .footer-btn a {
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  #footer .footer-inner .footer-btn a {
    display: block;
    width: 100%;
    height: 100%;
  }
}
#footer .footer-inner .footer-btn a img {
  width: 117px;
  margin: 12px auto 0;
}
@media screen and (min-width: 768px) {
  #footer .footer-inner .footer-btn a img {
    width: 195px;
    margin: 15px auto 0;
  }
}
#footer .footer-inner .footer-btn a p {
  font-size: 1rem;
  font-weight: 700;
  padding: 2px 0 0;
  font-family: YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
}
@media screen and (min-width: 768px) {
  #footer .footer-inner .footer-btn a p {
    font-size: 1.5rem;
    padding: 5px 0 0;
  }
}
#footer .footer-inner .copyright {
  font-size: 0.9rem;
  padding: 20px 0 0;
  font-family: YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  color: #000000;
}
@media screen and (min-width: 768px) {
  #footer .footer-inner .copyright {
    font-size: 1.1rem;
    padding: 50px 0 0;
  }
}

/*-- ファイル読み込み --*/
/*-------------------------------------
page-mv
-------------------------------------*/
.page-mv {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 60px;
}
@media screen and (min-width: 768px) {
  .page-mv {
    width: 96%;
    margin-bottom: 50px;
  }
}
.page-mv__ttl {
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
}
.page-mv__ttl .page-mv-img {
  opacity: 0;
  -webkit-animation: fdin 0.3s ease-in forwards;
          animation: fdin 0.3s ease-in forwards;
}
@media screen and (min-width: 768px) {
  .page-mv__ttl .page-mv-img {
    border-radius: 10px;
    overflow: hidden;
  }
}
.page-mv__ttl h1 {
  width: 88%;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 5.6%;
  margin: auto;
  -webkit-filter: drop-shadow(0px 5px 15px rgba(51, 42, 0, 0.25));
          filter: drop-shadow(0px 5px 15px rgba(51, 42, 0, 0.25));
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  z-index: 1;
  opacity: 0;
  -webkit-animation: fdin 0.3s 0.3s ease-in forwards;
          animation: fdin 0.3s 0.3s ease-in forwards;
}
@media screen and (min-width: 768px) {
  .page-mv__ttl h1 {
    width: min(40.9%, 368px);
    bottom: 8%;
  }
}
.page-mv__ttl .parts {
  display: block;
  position: absolute;
  top: -10%;
  line-height: 0;
}
@media screen and (min-width: 768px) {
  .page-mv__ttl .parts {
    top: -11%;
  }
}
.page-mv__ttl .parts__snow01 {
  width: 12%;
  left: -2%;
  -webkit-animation: fall01 8s 1s linear infinite;
          animation: fall01 8s 1s linear infinite;
}
@media screen and (min-width: 768px) {
  .page-mv__ttl .parts__snow01 {
    width: 6%;
    left: 15%;
  }
}
.page-mv__ttl .parts__snow02 {
  width: 10%;
  left: 20%;
  -webkit-animation: fall03 8.8s linear infinite;
          animation: fall03 8.8s linear infinite;
}
@media screen and (min-width: 768px) {
  .page-mv__ttl .parts__snow02 {
    width: 5%;
    left: 35%;
  }
}
.page-mv__ttl .parts__snow03 {
  width: 12%;
  left: 2%;
  -webkit-animation: fall03 8s 3.5s linear infinite;
          animation: fall03 8s 3.5s linear infinite;
}
@media screen and (min-width: 768px) {
  .page-mv__ttl .parts__snow03 {
    width: 6%;
    left: 30%;
  }
}
.page-mv__ttl .parts__snow04 {
  width: 12%;
  left: 14%;
  -webkit-animation: fall01 7.5s 6s linear infinite;
          animation: fall01 7.5s 6s linear infinite;
}
@media screen and (min-width: 768px) {
  .page-mv__ttl .parts__snow04 {
    width: 6%;
    left: 18%;
  }
}
.page-mv__ttl .parts__snow05 {
  width: 12%;
  right: 38%;
  -webkit-animation: fall03 8.8s 8s linear infinite;
          animation: fall03 8.8s 8s linear infinite;
}
@media screen and (min-width: 768px) {
  .page-mv__ttl .parts__snow05 {
    width: 6%;
    right: 44%;
  }
}
.page-mv__ttl .parts__snow06 {
  width: 10%;
  right: 20%;
  -webkit-animation: fall03 8s 7.2s linear infinite;
          animation: fall03 8s 7.2s linear infinite;
}
@media screen and (min-width: 768px) {
  .page-mv__ttl .parts__snow06 {
    width: 5%;
    right: 38%;
  }
}
.page-mv__ttl .parts__snow07 {
  width: 12%;
  right: 24%;
  -webkit-animation: fall02 7.8s 6.4s linear infinite;
          animation: fall02 7.8s 6.4s linear infinite;
}
@media screen and (min-width: 768px) {
  .page-mv__ttl .parts__snow07 {
    width: 6%;
  }
}
.page-mv__ttl .parts__snow08 {
  width: 12%;
  right: 16%;
  -webkit-animation: fall02 8s 1.3s linear infinite;
          animation: fall02 8s 1.3s linear infinite;
}
@media screen and (min-width: 768px) {
  .page-mv__ttl .parts__snow08 {
    width: 6%;
    right: 8%;
  }
}
.page-mv__ttl .parts__snow09 {
  width: 10%;
  right: 8%;
  -webkit-animation: fall03 9.4s 2.8s linear infinite;
          animation: fall03 9.4s 2.8s linear infinite;
}
@media screen and (min-width: 768px) {
  .page-mv__ttl .parts__snow09 {
    width: 5%;
    right: 1%;
    -webkit-animation-delay: 3.7s;
            animation-delay: 3.7s;
  }
}
.page-mv__ttl .parts__snow10 {
  width: 12%;
  right: -2%;
  -webkit-animation: fall03 7.1s 5s linear infinite;
          animation: fall03 7.1s 5s linear infinite;
}
@media screen and (min-width: 768px) {
  .page-mv__ttl .parts__snow10 {
    width: 4%;
    right: 16%;
    -webkit-animation-delay: 5.1s;
            animation-delay: 5.1s;
  }
}
@media screen and (min-width: 768px) {
  .page-mv__ttl .parts__snow11 {
    width: 5%;
    left: -1%;
    -webkit-animation: fall03 8s 2s linear infinite;
            animation: fall03 8s 2s linear infinite;
  }
}
@media screen and (min-width: 768px) {
  .page-mv__ttl .parts__snow12 {
    width: 5%;
    left: 10%;
    -webkit-animation: fall03 7s 6s linear infinite;
            animation: fall03 7s 6s linear infinite;
  }
}
@media screen and (min-width: 768px) {
  .page-mv__ttl .parts__snow13 {
    width: 4%;
    left: 5%;
    -webkit-animation: fall03 7.8s 3.4s linear infinite;
            animation: fall03 7.8s 3.4s linear infinite;
  }
}
@media screen and (min-width: 768px) {
  .page-mv__ttl .parts__snow14 {
    width: 4%;
    left: 24%;
    -webkit-animation: fall03 7.9s 12s linear infinite;
            animation: fall03 7.9s 12s linear infinite;
  }
}
@media screen and (min-width: 768px) {
  .page-mv__ttl .parts__snow15 {
    width: 4%;
    right: 22%;
    -webkit-animation: fall02 8s 9s linear infinite;
            animation: fall02 8s 9s linear infinite;
  }
}
@media screen and (min-width: 768px) {
  .page-mv__ttl .parts__snow16 {
    width: 4%;
    right: 8%;
    -webkit-animation: fall03 7.9s 11s linear infinite;
            animation: fall03 7.9s 11s linear infinite;
  }
}
.page-mv__greeting {
  width: 86%;
  max-width: 900px;
  margin: 0 auto 0px;
}
.page-mv__greeting h2 {
  margin-bottom: 20px;
  letter-spacing: 1px;
  line-height: 1.6;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2.4rem;
  color: #0d6d4f;
}
@media screen and (min-width: 768px) {
  .page-mv__greeting h2 {
    margin-bottom: 16px;
  }
}
.page-mv__greeting p {
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) {
  .page-mv__greeting p {
    text-align: center;
  }
}

/*-------------------------------------
point
-------------------------------------*/
.point {
  margin-bottom: 60px;
  padding: 40px 0 50px;
  position: relative;
  background: url("../img/common/pat-a.jpg") repeat center/426px;
}
.point h3 {
  background: #0d6d4f;
  -webkit-animation: scaling 4s infinite;
          animation: scaling 4s infinite;
}
@media screen and (min-width: 768px) {
  .point h3 {
    margin-bottom: 30px;
  }
}
.point h3 img {
  width: 37px;
}
@media screen and (min-width: 768px) {
  .point h3 img {
    width: 44px;
  }
}
.point__list {
  width: 86%;
  max-width: 900px;
  margin: 0 auto 0px;
}
@media screen and (min-width: 768px) {
  .point__list {
    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: start;
        -ms-flex-align: start;
            align-items: flex-start;
    max-width: 710px;
  }
}
@media screen and (min-width: 768px) {
  .point__list___item {
    width: min(325px, 46%);
  }
}
.point__list___item:first-child {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .point__list___item h4 {
    margin-bottom: 24px;
  }
}
.point__list___item .point-img {
  margin-bottom: 24px;
  border-radius: 6px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .point__list___item p {
    letter-spacing: 0.2px;
  }
}
@media screen and (min-width: 768px) {
  .point__list___item:last-child p {
    letter-spacing: 0.8px;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
  }
}

/*-------------------------------------
page-ttl
-------------------------------------*/
.page-ttl {
  margin-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .page-ttl {
    margin-bottom: 70px;
  }
}
.page-ttl__lead {
  margin-bottom: 30px;
  padding: 40px 0;
  position: relative;
  opacity: 0;
  -webkit-animation: fdin 0.3s ease-in forwards;
          animation: fdin 0.3s ease-in forwards;
}
@media screen and (min-width: 768px) {
  .page-ttl__lead {
    margin-bottom: 60px;
    padding: 60px 0;
  }
}
.page-ttl__lead .select {
  margin-bottom: 20px;
  -webkit-animation: scaling 4s infinite;
          animation: scaling 4s infinite;
}
.page-ttl__lead .select__01 {
  background: #6ac1a9;
}
.page-ttl__lead .select__01 img {
  width: 65px;
}
@media screen and (min-width: 768px) {
  .page-ttl__lead .select__01 img {
    width: 78px;
  }
}
.page-ttl__lead .select__02 {
  background: #37b1c6;
}
.page-ttl__lead .select__02 img {
  width: 66px;
}
@media screen and (min-width: 768px) {
  .page-ttl__lead .select__02 img {
    width: 79px;
  }
}
.page-ttl__lead .select__03 {
  background: #3b6db5;
}
.page-ttl__lead .select__03 img {
  width: 66px;
}
@media screen and (min-width: 768px) {
  .page-ttl__lead .select__03 img {
    width: 79px;
  }
}
.page-ttl__lead p {
  text-align: center;
}
.page-ttl__lead p.catch {
  margin-bottom: 14px;
  line-height: 1.5;
  font-family: YakuHanJP, "Zen Maru Gothic", sans-serif;
  font-size: 2rem;
}
.page-ttl__lead p.size {
  margin: 0 auto 22px;
  line-height: 1;
}
.page-ttl__lead p.size.size-a {
  width: 77px;
}
.page-ttl__lead p.size.size-b {
  width: 145px;
}
.page-ttl__lead p.size.size-c {
  width: 75px;
}
.page-ttl__lead h1 {
  margin-bottom: 20px;
  line-height: 1;
  text-align: center;
  font-family: YakuHanJP, "Zen Maru Gothic", sans-serif;
  font-size: 2.8rem;
}
.page-ttl__lead .lead-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.page-ttl__lead .lead-img__column {
  position: relative;
}
.page-ttl__lead .lead-img__column::before {
  content: "";
  width: 4%;
  aspect-ratio: 15/20;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url("../img/common/arrow.svg") no-repeat center/contain;
}
.page-ttl__lead .lead-img__item___01:first-child {
  margin-right: 48px;
}
.page-ttl__lead .lead-img__item p {
  margin-top: 10px;
  line-height: 1;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.4rem;
  color: #0d6d4f;
}
.page-ttl__lead___01 {
  background: url("../img/common/pat-b.jpg") repeat center/426px;
}
.page-ttl__lead___01 p, .page-ttl__lead___01 h1 {
  color: #6ac1a9;
}
@media screen and (min-width: 768px) {
  .page-ttl__lead___01 .lead-img {
    width: 86%;
    max-width: 308px;
    margin: 0 auto 0px;
  }
}
.page-ttl__lead___01 .lead-img__item {
  width: 35.4%;
}
.page-ttl__lead___02 {
  background: url("../img/common/pat-c.jpg") repeat center/426px;
}
.page-ttl__lead___02 p, .page-ttl__lead___02 h1 {
  color: #37b1c6;
}
.page-ttl__lead___02 .lead-img__item {
  width: 38.5%;
}
@media screen and (min-width: 768px) {
  .page-ttl__lead___02 .lead-img__item {
    width: 146px;
  }
}
.page-ttl__lead___03 {
  background: url("../img/common/pat-d.jpg") repeat center/426px;
}
.page-ttl__lead___03 p, .page-ttl__lead___03 h1 {
  color: #3b6db5;
}
.page-ttl__lead___03 .lead-img__item {
  width: 90%;
}
@media screen and (min-width: 768px) {
  .page-ttl__lead___03 .lead-img__item {
    width: 346px;
  }
}
.page-ttl .lead-txt {
  width: 86%;
  max-width: 900px;
  margin: 0 auto 0px;
}
@media screen and (min-width: 768px) {
  .page-ttl .lead-txt {
    text-align: center;
  }
}

/*-------------------------------------
collection
-------------------------------------*/
.collection__pickup {
  width: 86%;
  max-width: 900px;
  margin: 0 auto 80px;
}
@media screen and (min-width: 768px) {
  .collection__pickup {
    max-width: 510px;
    margin-bottom: 100px;
  }
}
.collection__pickup___item {
  margin-bottom: 80px;
}
.collection__pickup___item .slide-list {
  width: 85%;
  margin: 0 auto 54px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .collection__pickup___item .slide-list {
    width: 275px;
  }
}
.collection__pickup___item .slide-list .slick-slide {
  border-radius: 6px;
  overflow: hidden;
}
.collection__pickup___item .slide-list .slide-arrow {
  width: 4%;
  aspect-ratio: 12/27;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  cursor: pointer;
  z-index: 1;
}
.collection__pickup___item .slide-list .slide-arrow::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.collection__pickup___item .slide-list .slide-arrow.prev {
  left: -8vw;
}
@media screen and (min-width: 768px) {
  .collection__pickup___item .slide-list .slide-arrow.prev {
    left: -40px;
  }
}
.collection__pickup___item .slide-list .slide-arrow.next {
  right: -8vw;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (min-width: 768px) {
  .collection__pickup___item .slide-list .slide-arrow.next {
    right: -40px;
  }
}
.collection__pickup___item .slide-list .slick-dots {
  bottom: -36px;
}
.collection__pickup___item .slide-list .slick-dots li {
  margin: 0;
}
.collection__pickup___item .slide-list .slick-dots li button:before {
  font-size: 12px;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
@media screen and (min-width: 768px) {
  .collection__pickup___item .slide-list .slick-dots li button:hover::before {
    opacity: 0.3;
  }
}
.collection__pickup___item .slide-list .slick-dots li.slick-active {
  pointer-events: none;
}
.collection__pickup___item .txt-block .txt {
  margin-bottom: 12px;
  padding-bottom: 16px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .collection__pickup___item .txt-block .txt {
    margin-bottom: 16px;
    padding-bottom: 16px;
  }
}
.collection__pickup___item .txt-block .info {
  font-family: "Zen Maru Gothic", sans-serif;
}
@media screen and (min-width: 768px) {
  .collection__pickup___item .txt-block .info {
    text-align: center;
  }
}
.collection__pickup___item____01 .slide-list .slide-arrow::before {
  background-image: url("../img/common/arrow01.svg");
}
.collection__pickup___item____01 .slide-list .slick-dots li.slick-active button:before {
  color: #6ac1a9;
}
.collection__pickup___item____01 .txt-block .txt {
  border-bottom-color: #6ac1a9;
}
.collection__pickup___item____02 .slide-list .slide-arrow::before {
  background-image: url("../img/common/arrow02.svg");
}
.collection__pickup___item____02 .slide-list .slick-dots li.slick-active button:before {
  color: #37b1c6;
}
.collection__pickup___item____02 .txt-block .txt {
  border-bottom-color: #37b1c6;
}
.collection__pickup___item____03 .slide-list .slide-arrow::before {
  background-image: url("../img/common/arrow03.svg");
}
.collection__pickup___item____03 .slide-list .slick-dots li.slick-active button:before {
  color: #3b6db5;
}
.collection__pickup___item____03 .txt-block .txt {
  border-bottom-color: #3b6db5;
}
.collection__new-arrivals {
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid #d9d9d9;
}
@media screen and (min-width: 768px) {
  .collection__new-arrivals {
    margin-bottom: 80px;
  }
}
.collection__new-arrivals .new-arrivals {
  width: 120px;
  -webkit-animation: scaling 4s infinite;
          animation: scaling 4s infinite;
}
@media screen and (min-width: 768px) {
  .collection__new-arrivals .new-arrivals {
    width: 130px;
  }
}
.collection__new-arrivals .new-arrivals img {
  width: 92px;
}
@media screen and (min-width: 768px) {
  .collection__new-arrivals .new-arrivals img {
    width: 110px;
  }
}
.collection__new-arrivals .new-arrivals__01 {
  background: #6ac1a9;
}
.collection__new-arrivals .new-arrivals__02 {
  background: #37b1c6;
}
.collection__new-arrivals .new-arrivals__03 {
  background: #3b6db5;
}
.collection__new-arrivals .ttl {
  margin-bottom: 18px;
  line-height: 1;
  text-align: center;
  font-family: YakuHanJP, "Zen Maru Gothic", sans-serif;
  font-size: 2.2rem;
}
.collection__new-arrivals .ttl__01 {
  color: #6ac1a9;
}
.collection__new-arrivals .ttl__02 {
  color: #37b1c6;
}
.collection__new-arrivals .ttl__03 {
  color: #3b6db5;
}
.collection__new-arrivals___content {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 0px;
}
.collection__new-arrivals___content:not(:last-child) {
  margin-bottom: 50px;
  padding-bottom: 50px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .collection__new-arrivals___content:not(:last-child) {
    margin-bottom: 60px;
    padding-bottom: 60px;
  }
}
.collection__new-arrivals___content:not(:last-child)::before {
  content: "";
  width: 86%;
  height: 1px;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: #d9d9d9;
}
@media screen and (min-width: 768px) {
  .collection__new-arrivals___content:not(:last-child)::before {
    width: 100%;
  }
}
.collection__new-arrivals___content h4 {
  margin: 0 auto 20px;
}
@media screen and (min-width: 768px) {
  .collection__new-arrivals___content h4 {
    margin-bottom: 36px;
  }
}
.collection__new-arrivals___content h4.category {
  line-height: 1;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2.6rem;
  color: #3b6db5;
}
.collection__new-arrivals___content h4.price-699 {
  width: 195px;
}
.collection__new-arrivals___content h4.price-899 {
  width: 196px;
}
.collection__new-arrivals___content h4.price-1299 {
  width: 240px;
}
.collection__new-arrivals___content .annotation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  line-height: 1;
  font-size: 1.4rem;
}
.collection__new-arrivals___content .annotation img {
  display: block;
  width: 14px;
  margin-right: 4px;
}
.collection__new-arrivals___content .product-list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2vw 2%;
}
@media screen and (min-width: 768px) {
  .collection__new-arrivals___content .product-list ul {
    gap: 15px 1.6%;
  }
}
.collection__new-arrivals___content .product-list ul li {
  width: 32%;
}
@media screen and (min-width: 768px) {
  .collection__new-arrivals___content .product-list ul li {
    width: 18.66%;
  }
}
.collection__new-arrivals___content .product-list ul li a {
  display: block;
  position: relative;
  overflow: hidden;
}
.collection__new-arrivals___content .product-list ul li a img {
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.collection__new-arrivals___content .product-list ul li a:before {
  content: "";
  display: block;
  width: 4vw;
  height: 4vw;
  position: absolute;
  bottom: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .collection__new-arrivals___content .product-list ul li a:before {
    width: 23px;
    height: 23px;
  }
}
.collection__new-arrivals___content .product-list ul li a .star {
  display: block;
  width: 12%;
  aspect-ratio: 28/32;
  position: absolute;
  top: 0;
  left: 8.5%;
  background: url("../img/common/bookmark.svg") no-repeat top/contain;
  line-height: 0;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .collection__new-arrivals___content .product-list ul li a .star {
    width: min(11.4%, 19px);
    left: 10px;
  }
}
@media screen and (min-width: 768px) {
  .collection__new-arrivals___content .product-list ul li a:hover img {
    -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
            transform: scale(1.05);
  }
}
.collection__new-arrivals___content____01 .product-list ul li a::before {
  background-image: url("../img/common/item-arrow-a.svg");
}
.collection__new-arrivals___content____02 h4 {
  margin-bottom: 34px;
}
.collection__new-arrivals___content____02 .product-list ul li a::before {
  background-image: url("../img/common/item-arrow-b.svg");
}
.collection__new-arrivals___content____03 .product-list ul li a::before {
  background-image: url("../img/common/item-arrow-c.svg");
}

/*-- ファイル読み込み --*/
/*-------------------------------------
動き関連
-------------------------------------*/
.fdin {
  opacity: 0;
  -webkit-transition: 0.4s ease-in;
  transition: 0.4s ease-in;
}
.fdin.scroll {
  opacity: 1;
}
.fdin__top {
  opacity: 0;
  -webkit-transition: 0.4s linear;
  transition: 0.4s linear;
  -webkit-transform: translateY(-50px);
      -ms-transform: translateY(-50px);
          transform: translateY(-50px);
}
.fdin__top.scroll {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.fdin__bottom {
  opacity: 0;
  -webkit-transition: 0.4s linear;
  transition: 0.4s linear;
  -webkit-transform: translateY(20px);
      -ms-transform: translateY(20px);
          transform: translateY(20px);
}
.fdin__bottom.scroll {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.fdin__left {
  opacity: 0;
  -webkit-transition: 0.4s linear;
  transition: 0.4s linear;
  -webkit-transform: translateX(-50px);
      -ms-transform: translateX(-50px);
          transform: translateX(-50px);
}
.fdin__left.scroll {
  opacity: 1;
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
.fdin__right {
  opacity: 0;
  -webkit-transition: 0.4s linear;
  transition: 0.4s linear;
  -webkit-transform: translateX(50px);
      -ms-transform: translateX(50px);
          transform: translateX(50px);
}
.fdin__right.scroll {
  opacity: 1;
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

@-webkit-keyframes fdin {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fdin {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fdin-btm {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fdin-btm {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fall01 {
  0% {
    opacity: 0;
  }
  15% {
    -webkit-transform: translate(-10px, 80px) rotate(90deg);
            transform: translate(-10px, 80px) rotate(90deg);
    opacity: 1;
  }
  30% {
    -webkit-transform: translate(10px, 160px) rotate(180deg);
            transform: translate(10px, 160px) rotate(180deg);
    opacity: 1;
  }
  45% {
    -webkit-transform: translate(-20px, 240px) rotate(270deg);
            transform: translate(-20px, 240px) rotate(270deg);
  }
  60% {
    -webkit-transform: translate(20px, 320px) rotate(360deg);
            transform: translate(20px, 320px) rotate(360deg);
  }
  75% {
    -webkit-transform: translate(-40px, 400px) rotate(410deg);
            transform: translate(-40px, 400px) rotate(410deg);
  }
  90% {
    -webkit-transform: translate(40px, 480px) rotate(410deg);
            transform: translate(40px, 480px) rotate(410deg);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fall01 {
  0% {
    opacity: 0;
  }
  15% {
    -webkit-transform: translate(-10px, 80px) rotate(90deg);
            transform: translate(-10px, 80px) rotate(90deg);
    opacity: 1;
  }
  30% {
    -webkit-transform: translate(10px, 160px) rotate(180deg);
            transform: translate(10px, 160px) rotate(180deg);
    opacity: 1;
  }
  45% {
    -webkit-transform: translate(-20px, 240px) rotate(270deg);
            transform: translate(-20px, 240px) rotate(270deg);
  }
  60% {
    -webkit-transform: translate(20px, 320px) rotate(360deg);
            transform: translate(20px, 320px) rotate(360deg);
  }
  75% {
    -webkit-transform: translate(-40px, 400px) rotate(410deg);
            transform: translate(-40px, 400px) rotate(410deg);
  }
  90% {
    -webkit-transform: translate(40px, 480px) rotate(410deg);
            transform: translate(40px, 480px) rotate(410deg);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes fall02 {
  0% {
    opacity: 0;
  }
  15% {
    -webkit-transform: translate(0, 80px) rotate(-90deg);
            transform: translate(0, 80px) rotate(-90deg);
    opacity: 1;
  }
  30% {
    -webkit-transform: translate(-10px, 160px) rotate(-180deg);
            transform: translate(-10px, 160px) rotate(-180deg);
    opacity: 1;
  }
  45% {
    -webkit-transform: translate(10px, 240px) rotate(-270deg);
            transform: translate(10px, 240px) rotate(-270deg);
  }
  60% {
    -webkit-transform: translate(-20px, 320px) rotate(-360deg);
            transform: translate(-20px, 320px) rotate(-360deg);
  }
  75% {
    -webkit-transform: translate(20px, 400px) rotate(-410deg);
            transform: translate(20px, 400px) rotate(-410deg);
  }
  90% {
    -webkit-transform: translate(-30px, 480px) rotate(-410deg);
            transform: translate(-30px, 480px) rotate(-410deg);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fall02 {
  0% {
    opacity: 0;
  }
  15% {
    -webkit-transform: translate(0, 80px) rotate(-90deg);
            transform: translate(0, 80px) rotate(-90deg);
    opacity: 1;
  }
  30% {
    -webkit-transform: translate(-10px, 160px) rotate(-180deg);
            transform: translate(-10px, 160px) rotate(-180deg);
    opacity: 1;
  }
  45% {
    -webkit-transform: translate(10px, 240px) rotate(-270deg);
            transform: translate(10px, 240px) rotate(-270deg);
  }
  60% {
    -webkit-transform: translate(-20px, 320px) rotate(-360deg);
            transform: translate(-20px, 320px) rotate(-360deg);
  }
  75% {
    -webkit-transform: translate(20px, 400px) rotate(-410deg);
            transform: translate(20px, 400px) rotate(-410deg);
  }
  90% {
    -webkit-transform: translate(-30px, 480px) rotate(-410deg);
            transform: translate(-30px, 480px) rotate(-410deg);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes fall03 {
  0% {
    -webkit-transform: translate(20px, 0) rotate(0);
            transform: translate(20px, 0) rotate(0);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  75% {
    -webkit-transform: translate(-20px, 480px) rotate(360deg);
            transform: translate(-20px, 480px) rotate(360deg);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fall03 {
  0% {
    -webkit-transform: translate(20px, 0) rotate(0);
            transform: translate(20px, 0) rotate(0);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  75% {
    -webkit-transform: translate(-20px, 480px) rotate(360deg);
            transform: translate(-20px, 480px) rotate(360deg);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes scaling {
  85% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  90% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  95% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  99% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes scaling {
  85% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  90% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  95% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  99% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotation {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/*-------------------------------------
svg
-------------------------------------*/
.path {
  display: block;
  line-height: 0;
}

svg .arrow-path {
  fill: #0d6d4f;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
svg .arrow01-path {
  fill: #6ac1a9;
}
svg .arrow02-path {
  fill: #37b1c6;
}
svg .arrow03-path {
  fill: #3b6db5;
}
svg .window-path {
  fill: #ffffff;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
svg .bubble-path {
  fill: #0d6d4f;
}
svg .bubble01-path {
  fill: #6ac1a9;
}
svg .bubble02-path {
  fill: #37b1c6;
}
svg .bubble03-path {
  fill: #3b6db5;
}

/*-- ファイル読み込み --*/ /*-- ファイル読み込み --*/