@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Caveat&family=Noto+Sans+JP:wght@300;700&family=Noto+Serif+JP:wght@300&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+Thai&display=swap");
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, main,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

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

html {
  overflow-y: scroll;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

blockquote, q {
  quotes: none;
}

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

button, input, select, textarea {
  font-size: 100%;
}

button {
  padding: 0;
  background-color: transparent;
  border: none;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}

input, textarea {
  margin: 0;
  padding: 0;
}

input::-webkit-input-placeholder, input:-moz-placeholder, textarea::-webkit-input-placeholder, textarea:-moz-placeholder {
  color: #888;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 999px #fff inset;
          box-shadow: 0 0 0px 999px #fff inset;
}

input[type=button], input[type=submit], input[type=search], input[type=reset] {
  -webkit-appearance: none;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

caption, th {
  text-align: left;
}

a:focus {
  outline: none;
}

.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

i {
  font-style: normal;
}

::-moz-selection {
  color: #3d3d3d;
  background: #f5f5f5;
}

::selection {
  color: #3d3d3d;
  background: #f5f5f5;
}

/*////////////////////////////////////////////////////////////
 BASE
////////////////////////////////////////////////////////////*/
/*//////////////// html & body ////////////////*/
html {
  position: relative;
  font-size: 62.5%;
}

body {
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
  color: #3d3d3d;
  line-height: 1.7;
  letter-spacing: 0.04em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: 13px;
  font-size: 3.4666666667vw;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 14px;
    font-size: 1.1666666667vw;
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  body {
    font-size: 1.4rem;
  }
}

/*//////////////// for IE SVG ////////////////*/
img[src$=".svg"] {
  width: 100%;
}

/*//////////////// tag ////////////////*/
a {
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  a:hover {
    text-decoration: none;
  }
}

sup {
  font-size: 75%;
}

.nowrap {
  white-space: nowrap;
}

ul.ul-normal {
  list-style: disc;
}
ul.ul-normal li {
  margin-left: 1.2em;
}

ul.ul-kome li {
  position: relative;
  padding-left: 1.2em;
}
ul.ul-kome li::before {
  content: "※";
  position: absolute;
  left: 0;
}

ol.ol-normal {
  list-style: decimal;
}
ol.ol-normal li {
  margin-left: 1.2em;
}

.asta {
  position: relative;
  padding-left: 1.1em;
}
.asta::before {
  content: "＊";
  position: absolute;
  left: 0;
}

/*//////////////// .page-top ////////////////*/
.page-top {
  position: fixed;
  right: 20px;
  bottom: 50px;
  width: 40px;
  height: 40px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-transform: scale(0);
  transform: scale(0);
  z-index: 998;
}
.page-top.page-top-on {
  -webkit-transform: scale(1);
  transform: scale(1);
}

@media screen and (min-width: 768px) {
  .page-top {
    right: 15px;
    bottom: 15px;
  }
  .page-top:hover {
    opacity: 0.6;
  }
}
/*////////////////////////////////////////////////////////////
 COMMON 2023
////////////////////////////////////////////////////////////*/
/*//////////////// page transition ////////////////*/
body.fadeout {
  opacity: 0;
  -webkit-transition: opacity 0.8s ease;
  transition: opacity 0.8s ease;
}

/*//////////////// loading ////////////////*/
.loading-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 99997;
}
.loading-box.is-hidden {
  display: none;
}
.loading-box.is-fadeout {
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.loading-box i {
  width: 30px;
  height: 30px;
  border: 3px solid #8c8c8c;
  border-top-color: #d8d8d8;
  border-radius: 100%;
  -webkit-animation: round 1s linear infinite;
          animation: round 1s linear infinite;
}

@-webkit-keyframes round {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes round {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/*//////////////// main ////////////////*/
.main {
  padding-top: 26.6666666667vw;
}
@media screen and (min-width: 768px) {
  .main {
    padding-top: 8.3333333333vw;
  }
}
@media screen and (min-width: 1200px) {
  .main {
    padding-top: 100px;
  }
}

@media screen and (min-width: 750px) {
  .br-sp {
    display: none;
  }
}

.br-pc {
  display: none;
}
@media screen and (min-width: 750px) {
  .br-pc {
    display: block;
  }
}

/*//////////////// inner ////////////////*/
.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (min-width: 750px) {
  .inner {
    padding: 0 30px;
  }
}
@media screen and (min-width: 1200px) {
  .inner {
    padding-right: 0;
    padding-left: 0;
  }
}

/*//////////////// img ////////////////*/
@media screen and (min-width: 750px) {
  .img-sm {
    display: none;
  }
}

.img-pc {
  display: none;
}
@media screen and (min-width: 750px) {
  .img-pc {
    display: inline;
  }
}

/*//////////////// breadcrumbs ////////////////*/
.breadcrumbs {
  padding: 3.2vw;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  color: #b0b1ad;
}
@media screen and (min-width: 768px) {
  .breadcrumbs {
    padding: 1.3333333333vw 1.6666666667vw;
    font-size: 13px;
    font-size: 1.0833333333vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  .breadcrumbs {
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 1200px) {
  .breadcrumbs {
    padding: 16px 20px;
  }
}
.breadcrumbs a {
  color: #b0b1ad;
}
@media screen and (min-width: 1000px) {
  .breadcrumbs a:hover {
    text-decoration: underline;
  }
}
.breadcrumbs span {
  position: relative;
  display: inline-block;
  padding-left: 0.4em;
}
.breadcrumbs span::before {
  content: "›";
  margin-right: 0.5em;
}

/*//////////////// title 2023 ////////////////*/
@media screen and (min-width: 768px) {
  .content-title {
    position: relative;
    width: 100%;
  }
}
.content-title h2, .content-title h3 {
  font-weight: 400;
}
.content-title h2 {
  display: inline-block;
  padding: 0 0 3.2vw 4.8vw;
  border-bottom: 1px solid #3d3d3d;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .content-title h2 {
    display: block;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0;
    border: none;
  }
  .content-title h2 span {
    position: relative;
    display: inline-block;
    padding: 0 0.3333333333vw 1vw 3.3333333333vw;
  }
  .content-title h2 span::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    display: block;
    overflow: hidden;
    width: 1000%;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: 100% 100%;
            transform-origin: 100% 100%;
    border-bottom: 1px solid #3d3d3d;
  }
}
@media screen and (min-width: 1200px) {
  .content-title h2 span {
    padding: 0 4px 12px 40px;
  }
}
.content-title__name {
  font-family: "Caveat", cursive;
  font-weight: 400;
  letter-spacing: 0;
  font-size: 30px;
  font-size: 8vw;
}
@media screen and (min-width: 768px) {
  .content-title__name {
    font-size: 40px;
    font-size: 3.3333333333vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  .content-title__name {
    font-size: 4rem;
  }
}
.content-title__copy {
  width: 88%;
  margin: 5.8666666667vw auto 3.7333333333vw;
  text-align: center;
  font-size: 20px;
  font-size: 5.3333333333vw;
}
.content-title__copy span {
  display: block;
}
@media screen and (min-width: 768px) {
  .content-title__copy {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
    font-size: 26px;
    font-size: 2.1666666667vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  .content-title__copy {
    font-size: 2.6rem;
  }
}
/*//////////////// content-figure ////////////////*/
.content-figure {
  width: 85.3333333333%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .content-figure {
    position: relative;
    width: 53.3333333333%;
    max-width: 640px;
    margin-top: 3.3333333333vw;
  }
}
@media screen and (min-width: 1000px) {
  .content-figure {
    cursor: pointer;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .content-figure:hover {
    filter: alpha(opacity=65);
    opacity: 0.6;
  }
}
@media screen and (min-width: 1200px) {
  .content-figure {
    margin-top: 40px;
  }
}
.content-figure__cap--video {
  display: block;
  margin-top: 5.3333333333vw;
}
.content-figure__cap--video span {
  position: relative;
  display: block;
  width: 53.3333333333vw;
  margin: 0 auto;
  padding-left: 13.3333333333vw;
  background: #f5f5f5;
  line-height: 2;
  font-family: "Caveat", cursive;
  font-weight: 400;
  letter-spacing: 0;
  font-size: 20px;
  font-size: 5.3333333333vw;
  color: #3d3d3d;
}
.content-figure__cap--video span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 6.9333333333vw;
  width: 0;
  height: 0;
  border: solid 1.6vw transparent;
  border-left: solid 2.9333333333vw #3d3d3d;
  margin-top: -1.6vw;
}
@media screen and (min-width: 768px) {
  .content-figure__cap--video {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -2.0833333333vw 0 0 -8.3333333333vw;
  }
  .content-figure__cap span {
    width: 16.6666666667vw;
    padding-left: 3.3333333333vw;
    line-height: 2.3;
    font-size: 22px;
    font-size: 1.8333333333vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  .content-figure__cap span {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 768px) {
  .content-figure__cap span::before {
    left: 1.6666666667vw;
    border: solid 0.5vw transparent;
    border-left: solid 0.9166666667vw #3d3d3d;
    margin-top: -0.5vw;
  }
}
@media screen and (min-width: 1200px) {
  .content-figure__cap--video {
    margin: -25px 0 0 -100px;
  }
  .content-figure__cap span {
    width: 200px;
    padding-left: 40px;
  }
  .content-figure__cap span::before {
    left: 20px;
    border: solid 6px transparent;
    border-left: solid 11px #3d3d3d;
    margin-top: -6px;
  }
}

/*//////////////// contents-btn ////////////////*/
@media screen and (min-width: 768px) {
  .contents-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.contents-btn li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 53.3333333333vw;
  margin: 5.3333333333vw auto 0;
  font-family: "Caveat", cursive;
  font-weight: 400;
  letter-spacing: 0;
  font-size: 22px;
  font-size: 5.8666666667vw;
}
.contents-btn li a {
  display: block;
  width: 100%;
  height: 10.6666666667vw;
  background: #403f41;
  color: #fff;
  text-align: center;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .contents-btn li {
    width: 16.6666666667vw;
    margin: 2.5vw 1.6666666667vw 0;
    font-size: 26px;
    font-size: 2.1666666667vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  .contents-btn li {
    font-size: 2.6rem;
  }
}
@media screen and (min-width: 768px) {
  .contents-btn li a {
    height: 4.1666666667vw;
  }
}
@media screen and (min-width: 1000px) {
  .contents-btn li a {
    cursor: pointer;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .contents-btn li a:hover {
    filter: alpha(opacity=65);
    opacity: 0.6;
  }
}
@media screen and (min-width: 1200px) {
  .contents-btn li {
    width: 200px;
    margin: 30px 20px 0;
  }
  .contents-btn li a {
    height: 50px;
  }
}

/*//////////////// sns-lists ////////////////*/
.sns-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 24px;
  font-size: 6.4vw;
}
.sns-lists li {
  margin: 0 2%;
}
.sns-lists a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 10.6666666667vw;
  height: 10.6666666667vw;
  color: #403f41;
}
.sns-lists a span {
  display: block;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.sns-lists .snsicon-note {
  width: 16vw;
  background: url(/assets/img/common/note.svg) 50% 50% no-repeat;
  background-size: 10.6666666667vw auto;
}
@media screen and (min-width: 768px) {
  .sns-lists {
    font-size: 24px;
    font-size: 2vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  .sns-lists {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 768px) {
  .sns-lists li {
    margin: 0 0.5%;
  }
  .sns-lists a {
    width: 3.3333333333vw;
    height: 3.3333333333vw;
  }
  .sns-lists .snsicon-note {
    width: 5vw;
    background-size: 3.3333333333vw auto;
  }
}
@media screen and (min-width: 1000px) {
  .sns-lists a {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .sns-lists a:hover {
    filter: alpha(opacity=65);
    opacity: 0.6;
  }
}
@media screen and (min-width: 1200px) {
  .sns-lists a {
    width: 40px;
    height: 40px;
  }
  .sns-lists .snsicon-note {
    width: 60px;
    background-size: 40px auto;
  }
}

/*//////////////// motion ////////////////*/
.fadeIn {
  opacity: 0;
  -webkit-transition: opacity 0.8s ease-in-out 0.3s;
  transition: opacity 0.8s ease-in-out 0.3s;
}
.fadeIn.iv-active {
  opacity: 1;
}

.fadeInUp {
  opacity: 0;
  -webkit-transition: opacity 0.8s ease-in-out 0.3s;
  transition: opacity 0.8s ease-in-out 0.3s;
}
.fadeInUp.iv-active {
  opacity: 1;
}
@media screen and (min-width: 750px) {
  .fadeInUp {
    -webkit-transform: translateY(20%);
            transform: translateY(20%);
    -webkit-transition: opacity 0.3s ease-in-out 0.3s, -webkit-transform 0.8s ease-out 0.3s;
    transition: opacity 0.3s ease-in-out 0.3s, -webkit-transform 0.8s ease-out 0.3s;
    transition: opacity 0.3s ease-in-out 0.3s, transform 0.8s ease-out 0.3s;
    transition: opacity 0.3s ease-in-out 0.3s, transform 0.8s ease-out 0.3s, -webkit-transform 0.8s ease-out 0.3s;
  }
  .fadeInUp.iv-active {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

/*//////////////// Under Construction ////////////////*/
.u-c {
  padding: 40px 0;
  text-align: center;
}

/*////////////////////////////////////////////////////////////
 HEADER 2023
////////////////////////////////////////////////////////////*/
/* コピペ用
@media screen and (min-width:$breakpoints-md) {
}
@media screen and (min-width:$breakpoints-mo) {
}
@media screen and (min-width:$breakpoints-lg) {
}
*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 26.6666666667vw;
  padding: 8vw 0 0;
  color: #403f41;
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  will-change: transform;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  transition: all 0.6s ease, -webkit-transform 0.6s ease;
}
@media screen and (min-width: 768px) {
  .header {
    height: 8.3333333333vw;
    padding: 2.5vw 0 0;
  }
}
@media screen and (min-width: 1200px) {
  .header {
    height: 100px;
    padding: 30px 0 0;
  }
}
.header__inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: end;
      align-self: flex-end;
}
@media screen and (min-width: 768px) {
  .header__inner {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.header__lang {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 8vw;
  overflow: hidden;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media screen and (min-width: 768px) {
  .header__lang {
    height: 2.5vw;
  }
}
@media screen and (min-width: 1200px) {
  .header__lang {
    height: 30px;
  }
}
.header__lang ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__lang ul li {
  display: inline-block;
  width: 11.2vw;
  font-size: 14px;
  font-size: 3.7333333333vw;
  text-align: center;
  line-height: 2.143;
}
@media screen and (min-width: 768px) {
  .header__lang ul li {
    width: 3.5vw;
    font-size: 14px;
    font-size: 1.1666666667vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  .header__lang ul li {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1200px) {
  .header__lang ul li {
    width: 42px;
  }
}
.header__lang ul li a {
  display: block;
  width: 100%;
  color: #3d3d3d;
}
.header__lang ul li:nth-of-type(2), .header__lang ul li:nth-of-type(3) {
  position: relative;
}
.header__lang ul li:nth-of-type(2):before, .header__lang ul li:nth-of-type(3):before {
  content: "";
  position: absolute;
  top: 1.8666666667vw;
  left: 0;
  width: 1px;
  height: 4.2666666667vw;
  background: #b0b1ad;
}
@media screen and (min-width: 768px) {
  .header__lang ul li:nth-of-type(2):before, .header__lang ul li:nth-of-type(3):before {
    top: 0.5833333333vw;
    height: 1.3333333333vw;
  }
}
@media screen and (min-width: 1200px) {
  .header__lang ul li:nth-of-type(2):before, .header__lang ul li:nth-of-type(3):before {
    top: 7px;
    height: 16px;
  }
}
.header--unpinned {
  -webkit-transform: translateY(-150%);
  transform: translateY(-150%);
}
.header--pinned {
  height: 18.6666666667vw;
  padding-top: 0;
}
@media screen and (min-width: 768px) {
  .header--pinned {
    height: 5.8333333333vw;
  }
}
@media screen and (min-width: 1200px) {
  .header--pinned {
    height: 70px;
  }
}
.header--pinned .header__lang {
  -webkit-transform: translateY(-150%);
  transform: translateY(-150%);
}
.header__logo {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-left: 2.9333333333vw;
}
.header__logo a {
  display: block;
  width: 36.8vw;
}
@media screen and (min-width: 768px) {
  .header__logo {
    -webkit-box-flex: inherit;
        -ms-flex-positive: inherit;
            flex-grow: inherit;
    margin-left: 1.6666666667vw;
    z-index: 1;
  }
  .header__logo a {
    width: 13.4166666667vw;
  }
}
@media screen and (min-width: 1000px) {
  .header__logo {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .header__logo:hover {
    filter: alpha(opacity=65);
    opacity: 0.6;
  }
}
@media screen and (min-width: 1200px) {
  .header__logo {
    margin-left: 20px;
  }
  .header__logo a {
    width: 161px;
  }
}
@media screen and (min-width: 768px) {
  .header__cart {
    position: relative;
  }
}
.header__cart a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 10.6666666667vw;
  height: 10.6666666667vw;
  background: #3d3d3d;
  font-family: "Caveat", cursive;
  font-weight: 400;
  letter-spacing: 0;
  color: #fff !important;
  background-image: url("/assets/img/common/cart.svg");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: auto 100%;
  text-indent: -200%;
  white-space: nowrap;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .header__cart a {
    width: 10vw;
    height: 3.3333333333vw;
    margin-right: 1.6666666667vw;
    background-position: 86% 50%;
    text-indent: -60%;
    font-size: 20px;
    font-size: 1.6666666667vw;
    line-height: 2;
    z-index: 1;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  .header__cart a {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1000px) {
  .header__cart a {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .header__cart a:hover {
    filter: alpha(opacity=65);
    opacity: 0.6;
  }
}
@media screen and (min-width: 1200px) {
  .header__cart a {
    width: 120px;
    height: 40px;
    margin-right: 20px;
  }
}
.header__navi-trigger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 14.4vw;
  height: 14.4vw;
  margin-left: 3.2vw;
  margin-right: 2.9333333333vw;
}
@media screen and (min-width: 750px) {
  .header__navi-trigger {
    display: none;
  }
}
.header__navi-trigger span,
.header__navi-trigger span::before,
.header__navi-trigger span::after {
  content: "";
  display: block;
  position: absolute;
  width: 8.5333333333vw;
  height: 0.8vw;
  background-color: #3d3d3d;
}
.header__navi-trigger span::before {
  bottom: 2.6666666667vw;
}
.header__navi-trigger span::after {
  top: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .header__navi-trigger {
    display: none;
  }
}
.header__navi {
  opacity: 0;
  visibility: hidden;
  width: 0;
  -webkit-transition: background 0.3s ease 0s;
  transition: background 0.3s ease 0s;
}
@media screen and (min-width: 768px) {
  .header__navi {
    opacity: 1;
    visibility: visible;
    position: absolute;
    top: 0.4166666667vw;
    left: 0;
    width: 100%;
    height: 5.4166666667vw;
  }
}
@media screen and (min-width: 1200px) {
  .header__navi {
    top: 5px;
    height: 65px;
  }
}
.header__navi-close {
  position: absolute;
  top: 10px;
  right: 2.9333333333%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 14.4vw;
  height: 14.4vw;
}
.header__navi-close span,
.header__navi-close span::before,
.header__navi-close span::after {
  width: 8.5333333333vw;
  height: 0.8vw;
}
.header__navi-close span::before,
.header__navi-close span::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #3d3d3d;
}
.header__navi-close span::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header__navi-close span::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (min-width: 768px) {
  .header__navi-close {
    display: none;
  }
}

.nav-open .header__navi {
  opacity: 1;
  visibility: visible;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: auto;
  width: 100%;
  min-height: 100vh;
  padding-bottom: 5.3333333333vw;
  background: rgba(224, 224, 219, 0.99);
  z-index: 99999;
}
.nav-open .header--unpinned {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.grand-nav {
  position: relative;
  width: 90.6666666667vw;
  margin: 17.0666666667vw auto 0;
  text-align: center;
}
.grand-nav a {
  color: #3d3d3d;
}
@media screen and (min-width: 768px) {
  .grand-nav {
    width: inherit;
    margin: 0;
    z-index: 0;
  }
}
.grand-nav__lists {
  position: relative;
  width: 58.6666666667vw;
  margin: 0 auto;
  font-size: 16px;
  font-size: 4.2666666667vw;
}
.grand-nav__lists::before {
  content: "";
  display: block;
  border-top: 1px solid #3d3d3d;
  -webkit-transform: scaleY(0.5);
          transform: scaleY(0.5);
  -webkit-transform-origin: 100% 0;
          transform-origin: 100% 0;
}
@media screen and (min-width: 768px) {
  .grand-nav__lists {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: inherit;
    font-size: 16px;
    font-size: 1.3333333333vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  .grand-nav__lists {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 768px) {
  .grand-nav__lists::before {
    border: none;
  }
}
.grand-nav__list {
  position: relative;
}
.grand-nav__list::after {
  content: "";
  display: block;
  border-top: 1px solid #3d3d3d;
  -webkit-transform: scaleY(0.5);
          transform: scaleY(0.5);
  -webkit-transform-origin: 100% 0;
          transform-origin: 100% 0;
}
@media screen and (min-width: 768px) {
  .grand-nav__list:first-child {
    display: none;
  }
  .grand-nav__list::after {
    border: none;
  }
}
@media screen and (min-width: 1000px) {
  .grand-nav__list:hover {
    background: #f5f5f5;
  }
}
.grand-nav__list--btn {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .grand-nav__list--btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 5.4166666667vw;
    padding: 0 1.6666666667vw;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
}
@media screen and (min-width: 1000px) {
  .grand-nav__list--btn {
    cursor: pointer;
  }
}
@media screen and (min-width: 1200px) {
  .grand-nav__list--btn {
    height: 65px;
    padding: 0 20px;
  }
}
.grand-nav__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 24px;
  font-size: 6.4vw;
  margin-top: 5.3333333333vw;
}
.grand-nav__sns li {
  margin: 0 2%;
}
.grand-nav__sns a {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 10.6666666667vw;
  height: 10.6666666667vw;
}
.grand-nav__sns a span {
  display: block;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.grand-nav__sns .snsicon-note {
  width: 16vw;
  background: url(/assets/img/common/note.svg) 50% 50% no-repeat;
  background-size: 10.6666666667vw auto;
}
@media screen and (min-width: 768px) {
  .grand-nav__sns {
    display: none;
  }
}
.grand-nav__terms {
  width: 64vw;
  margin: 5.3333333333vw auto 0;
  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;
}
.grand-nav__terms li {
  margin-bottom: 2.6666666667vw;
  font-size: 12px;
  font-size: 3.2vw;
}
@media screen and (min-width: 768px) {
  .grand-nav__terms {
    display: none;
  }
}
.grand-nav__search {
  margin-bottom: 8%;
}
.grand-nav__search form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 9.6vw;
  width: 69.3333333333vw;
  margin: 0 auto;
  padding: 2%;
  background: #f5f5f5;
}
.grand-nav__search form input[type=text] {
  width: 56vw;
  height: 8vw;
  background: transparent;
  border: none;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 15px;
  font-size: 4vw;
}
.grand-nav__search form input[type=text]:focus {
  outline: 0;
}
.grand-nav__search form input[type=submit] {
  cursor: pointer;
  border: none;
  background: url(/assets/img/common/search.svg) 50% 50% no-repeat;
  background-size: 8vw auto;
  outline: none;
  width: 8vw;
  height: 8vw;
}
.grand-nav__search form input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 999px #f5f5f5 inset;
          box-shadow: 0 0 0px 999px #f5f5f5 inset;
}
@media screen and (min-width: 768px) {
  .grand-nav__search {
    display: none;
  }
}
.sub-nav {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
  font-size: 13px;
  font-size: 3.4666666667vw;
}
@media screen and (min-width: 768px) {
  .sub-nav {
    position: fixed;
    left: 0;
    width: 100%;
    background: #f5f5f5;
    font-size: 13px;
    font-size: 1.0833333333vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  .sub-nav {
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 768px) {
  .sub-nav__inner {
    position: relative;
    width: 70vw;
    margin: 3vw auto;
  }
}
@media screen and (min-width: 1200px) {
  .sub-nav__inner {
    width: 840px;
    margin: 36px auto;
  }
}
.sub-nav__items {
  width: 53.3333333333vw;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .sub-nav__items {
    width: inherit;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.sub-nav__item {
  position: relative;
}
.sub-nav__item::before {
  content: "";
  display: block;
  border-top: 1px solid #b0b1ad;
  -webkit-transform: scaleY(0.5);
          transform: scaleY(0.5);
  -webkit-transform-origin: 100% 0;
          transform-origin: 100% 0;
}
@media screen and (min-width: 768px) {
  .sub-nav__item::before {
    border: none;
  }
  .sub-nav__item:first-child {
    width: 100%;
  }
}
.sub-nav__restock {
  display: block;
  width: 53.3333333333vw;
  height: 9.6vw;
  margin: 0 auto 2.6666666667vw;
  background: rgba(255, 255, 255, 0.2);
  line-height: 1.4;
}
.sub-nav__restock span {
  position: relative;
  top: 4%;
  display: inline-block;
  padding-right: 3%;
  font-family: "Caveat", cursive;
  font-weight: 400;
  letter-spacing: 0;
  font-size: 22px;
  font-size: 5.8666666667vw;
}
@media screen and (min-width: 768px) {
  .sub-nav__restock {
    position: absolute;
    top: -4%;
    right: 0;
    width: 11.6666666667vw;
    height: 2.5vw;
    margin: 0;
    background: rgba(255, 255, 255, 0.4);
    line-height: 1.2;
    z-index: 10;
  }
  .sub-nav__restock span {
    font-size: 22px;
    font-size: 1.8333333333vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  .sub-nav__restock span {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 1000px) {
  .sub-nav__restock {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .sub-nav__restock:hover {
    filter: alpha(opacity=65);
    opacity: 0.6;
  }
}
@media screen and (min-width: 1200px) {
  .sub-nav__restock {
    width: 140px;
    height: 30px;
  }
}
.sub-nav__costom {
  display: block;
  width: 53.3333333333vw;
  height: 9.6vw;
  margin: 0 auto 2.6666666667vw;
  background: rgba(255, 255, 255, 0.2);
  line-height: 1.4;
}
.sub-nav__costom span {
  position: relative;
  top: 4%;
  display: inline-block;
  padding-right: 3%;
  font-family: "Caveat", cursive;
  font-weight: 400;
  letter-spacing: 0;
  font-size: 22px;
  font-size: 5.8666666667vw;
}
@media screen and (min-width: 768px) {
  .sub-nav__costom {
    position: absolute;
    top: -4%;
    right: 13.3333333333vw;
    width: 15.6666666667vw;
    height: 2.5vw;
    margin: 0;
    background: rgba(255, 255, 255, 0.4);
    line-height: 1.2;
    z-index: 10;
  }
  .sub-nav__costom span {
    font-size: 22px;
    font-size: 1.8333333333vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  .sub-nav__costom span {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 1000px) {
  .sub-nav__costom {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .sub-nav__costom:hover {
    filter: alpha(opacity=65);
    opacity: 0.6;
  }
}
@media screen and (min-width: 1200px) {
  .sub-nav__costom {
    right: 160px;
    width: 188px;
    height: 30px;
  }
}
.sub-nav .snav-list h4 {
  padding-top: 2%;
  font-weight: 400;
  text-align: left;
  line-height: 1.4;
}
.sub-nav .snav-list h4 span {
  position: relative;
  top: 4%;
  display: inline-block;
  padding-right: 3%;
  font-family: "Caveat", cursive;
  font-weight: 400;
  letter-spacing: 0;
  font-size: 22px;
  font-size: 5.8666666667vw;
}
@media screen and (min-width: 768px) {
  .sub-nav .snav-list h4 {
    padding: 0;
  }
  .sub-nav .snav-list h4 span {
    padding-right: 0.5833333333vw;
    font-size: 22px;
    font-size: 1.8333333333vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  .sub-nav .snav-list h4 span {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 1200px) {
  .sub-nav .snav-list h4 span {
    padding-right: 7px;
  }
}
.sub-nav .snav-list__cat {
  margin-bottom: 8%;
  font-size: 15px;
  font-size: 4vw;
}
.sub-nav .snav-list__cat a {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 10.6666666667vw;
}
@media screen and (min-width: 768px) {
  .sub-nav .snav-list__cat {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
    margin-bottom: 2.5vw;
    font-size: 15px;
    font-size: 1.25vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  .sub-nav .snav-list__cat {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .sub-nav .snav-list__cat li {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0.6666666667vw 0.6666666667vw 0 0;
  }
  .sub-nav .snav-list__cat li::after {
    content: "/";
    display: inline-block;
    margin-left: 0.6666666667vw;
  }
  .sub-nav .snav-list__cat li:last-child::after {
    content: none;
  }
  .sub-nav .snav-list__cat a {
    display: block;
    -webkit-box-align: inherit;
        -ms-flex-align: inherit;
            align-items: inherit;
    -webkit-box-pack: inherit;
        -ms-flex-pack: inherit;
            justify-content: inherit;
    height: inherit;
  }
}
@media screen and (min-width: 768px) and (min-width: 1000px) {
  .sub-nav .snav-list__cat a {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .sub-nav .snav-list__cat a:hover {
    filter: alpha(opacity=65);
    opacity: 0.6;
  }
}
@media screen and (min-width: 1200px) {
  .sub-nav .snav-list__cat {
    margin-bottom: 30px;
  }
  .sub-nav .snav-list__cat li {
    margin: 8px 8px 0 0;
  }
}
.sub-nav .snav-list__color {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 6% 0 4%;
}
.sub-nav .snav-list__color li {
  width: 45%;
  margin-bottom: 4%;
  text-align: left;
}
.sub-nav .snav-list__color li a {
  position: relative;
  display: block;
  height: 5.8666666667vw;
  padding-left: 6.4vw;
}
.sub-nav .snav-list__color li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4%;
  width: 5.3333333333vw;
  height: 5.3333333333vw;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.5);
}
.sub-nav .snav-list__color--1 a::before {
  background: #e6e2d0;
}
.sub-nav .snav-list__color--2 a::before {
  background: #3e4ba2;
}
@media screen and (min-width: 768px) {
  .sub-nav .snav-list__color {
    margin: 6% 0 0;
  }
  .sub-nav .snav-list__color li {
    width: auto;
    margin-bottom: 0;
    margin-right: 0.8333333333vw;
  }
  .sub-nav .snav-list__color li a {
    height: auto;
    padding-left: 2.5vw;
  }
  .sub-nav .snav-list__color li a::before {
    top: -4%;
    width: 2vw;
    height: 2vw;
    border: none;
  }
}
@media screen and (min-width: 768px) and (min-width: 1000px) {
  .sub-nav .snav-list__color li a {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .sub-nav .snav-list__color li a:hover {
    filter: alpha(opacity=65);
    opacity: 0.6;
  }
}
@media screen and (min-width: 1200px) {
  .sub-nav .snav-list__color li {
    margin-right: 10px;
  }
  .sub-nav .snav-list__color li a {
    padding-left: 30px;
  }
  .sub-nav .snav-list__color li a::before {
    width: 24px;
    height: 24px;
  }
}
.sub-nav .snav-list__weave {
  margin: 6% 0 10%;
}
.sub-nav .snav-list__weave li {
  margin-bottom: 4%;
  text-align: left;
}
.sub-nav .snav-list__weave li a {
  position: relative;
  display: block;
  height: 8vw;
  padding-left: 24vw;
  padding-top: 1.6%;
}
.sub-nav .snav-list__weave li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4%;
  width: 21.3333333333vw;
  height: 8vw;
  background-image: url(/assets/img/common/icon_weave.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.sub-nav .snav-list__weave--suave a::before {
  background-position: 0 0;
}
.sub-nav .snav-list__weave--blando a::before {
  background-position: 0 25%;
}
.sub-nav .snav-list__weave--liso a::before {
  background-position: 0 50%;
}
.sub-nav .snav-list__weave--escamosa a::before {
  background-position: 0 75%;
}
.sub-nav .snav-list__weave--fina a::before {
  background-position: 0 100%;
}
@media screen and (min-width: 768px) {
  .sub-nav .snav-list__weave {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0.8% 0 0;
  }
  .sub-nav .snav-list__weave li {
    margin: 0 1.6666666667vw 0 0;
  }
  .sub-nav .snav-list__weave li:last-of-type {
    margin-right: 0;
  }
  .sub-nav .snav-list__weave li a {
    height: 2.5vw;
    padding-left: 5.5vw;
    padding-top: 3.8%;
  }
  .sub-nav .snav-list__weave li a::before {
    width: 5vw;
    height: 2.5vw;
    background-size: 133.3333333333% auto;
  }
}
@media screen and (min-width: 768px) and (min-width: 1000px) {
  .sub-nav .snav-list__weave li a {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .sub-nav .snav-list__weave li a:hover {
    filter: alpha(opacity=65);
    opacity: 0.6;
  }
}
@media screen and (min-width: 1200px) {
  .sub-nav .snav-list__weave li {
    margin: 0 20px 0 0;
  }
  .sub-nav .snav-list__weave li a {
    height: 30px;
    padding-left: 66px;
  }
  .sub-nav .snav-list__weave li a::before {
    width: 60px;
    height: 30px;
  }
}
.sub-nav .snav-list__mix {
  margin: 0 0 8%;
}
.sub-nav .snav-list__mix li {
  margin-bottom: 4%;
}
.sub-nav .snav-list__mix li span {
  position: relative;
  top: 4%;
  display: inline-block;
  padding-right: 3%;
  font-family: "Caveat", cursive;
  font-weight: 400;
  letter-spacing: 0;
  font-size: 22px;
  font-size: 5.8666666667vw;
}
@media screen and (min-width: 768px) {
  .sub-nav .snav-list__mix {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0;
  }
  .sub-nav .snav-list__mix li {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 1vw 0 0;
    white-space: nowrap;
    line-height: 1;
  }
  .sub-nav .snav-list__mix li::after {
    content: "/";
    display: inline-block;
    margin-left: 1.3333333333vw;
  }
  .sub-nav .snav-list__mix li:last-child::after {
    content: none;
  }
  .sub-nav .snav-list__mix li span {
    font-size: 22px;
    font-size: 1.8333333333vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  .sub-nav .snav-list__mix li span {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 768px) and (min-width: 1000px) {
  .sub-nav .snav-list__mix li a {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .sub-nav .snav-list__mix li a:hover {
    filter: alpha(opacity=65);
    opacity: 0.6;
  }
}
@media screen and (min-width: 1200px) {
  .sub-nav .snav-list__mix li {
    margin: 0 12px 0 0;
  }
  .sub-nav .snav-list__mix li::after {
    margin-left: 16px;
  }
}

.grand-nav__trigger {
  position: relative;
}
@media screen and (min-width: 768px) {
  .grand-nav__trigger .grand-nav__list--btn {
    padding-right: 2.8333333333vw;
  }
}
@media screen and (min-width: 1200px) {
  .grand-nav__trigger .grand-nav__list--btn {
    padding-right: 34px;
  }
}
.grand-nav__trigger i {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 13.3333333333vw;
  height: 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .grand-nav__trigger i {
    width: auto;
    height: auto;
  }
}
.grand-nav__trigger i::after {
  content: "";
  position: absolute;
  top: 5.6vw;
  right: 5.6vw;
  width: 1.8666666667vw;
  height: 1.8666666667vw;
  border-bottom: solid 1px #3d3d3d;
  border-right: solid 1px #3d3d3d;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (min-width: 768px) {
  .grand-nav__trigger i::after {
    top: 2.6666666667vw;
    right: 1.5vw;
    width: 0.4166666667vw;
    height: 0.4166666667vw;
  }
}
@media screen and (min-width: 1200px) {
  .grand-nav__trigger i::after {
    top: 32px;
    right: 18px;
    width: 5px;
    height: 5px;
  }
}

.grand-nav__active i {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.grand-nav__active .sub-nav {
  opacity: 1;
  max-height: 800px;
  -webkit-transition: max-height ease-in 0.6s;
  transition: max-height ease-in 0.6s;
}

@media screen and (min-width: 768px) {
  .grand-nav__list:hover .sub-nav {
    opacity: 1;
    max-height: 21.6666666667vw;
    overflow: scroll;
  }
}
@media screen and (min-width: 1200px) {
  .grand-nav__list:hover .sub-nav {
    max-height: 260px;
  }
}

@media screen and (min-width: 768px) {
  .grand-nav__list:nth-of-type(4):hover .sub-nav,
  .grand-nav__list:nth-of-type(5):hover .sub-nav {
    max-height: 8.3333333333vw;
  }
}
@media screen and (min-width: 1200px) {
  .grand-nav__list:nth-of-type(4):hover .sub-nav,
  .grand-nav__list:nth-of-type(5):hover .sub-nav {
    max-height: 100px;
  }
}

.jp .header__lang ul li:nth-of-type(1) {
  font-weight: 700;
}
@media screen and (min-width: 1000px) {
  .jp .header__lang ul li:nth-of-type(2) a, .jp .header__lang ul li:nth-of-type(3) a {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .jp .header__lang ul li:nth-of-type(2) a:hover, .jp .header__lang ul li:nth-of-type(3) a:hover {
    filter: alpha(opacity=65);
    opacity: 0.6;
  }
}

.en .header__lang ul li:nth-of-type(2) {
  font-weight: 700;
}
@media screen and (min-width: 1000px) {
  .en .header__lang ul li:nth-of-type(1) a, .en .header__lang ul li:nth-of-type(3) a {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .en .header__lang ul li:nth-of-type(1) a:hover, .en .header__lang ul li:nth-of-type(3) a:hover {
    filter: alpha(opacity=65);
    opacity: 0.6;
  }
}

.th .header__lang ul li:nth-of-type(3) {
  font-weight: 700;
}
@media screen and (min-width: 1000px) {
  .th .header__lang ul li:nth-of-type(1) a, .th .header__lang ul li:nth-of-type(2) a {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .th .header__lang ul li:nth-of-type(1) a:hover, .th .header__lang ul li:nth-of-type(2) a:hover {
    filter: alpha(opacity=65);
    opacity: 0.6;
  }
}

/*////////////////////////////////////////////////////////////
 FOOTER 2023
////////////////////////////////////////////////////////////*/
/* コピペ用
@media screen and (min-width:$breakpoints-md) {
}
@media screen and (min-width:$breakpoints-mo) {
}
@media screen and (min-width:$breakpoints-lg) {
}
*/
.footer {
  margin-top: 26.6666666667vw;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  color: #3d3d3d;
}
@media screen and (min-width: 768px) {
  .footer {
    margin-top: 8.3333333333vw;
  }
}
@media screen and (min-width: 1200px) {
  .footer {
    margin-top: 100px;
  }
}
.footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 24px;
  font-size: 6.4vw;
  margin-bottom: 5.3333333333vw;
}
.footer__sns li {
  margin: 0 2%;
}
.footer__sns a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 10.6666666667vw;
  height: 10.6666666667vw;
  color: #403f41;
}
.footer__sns a span {
  display: block;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.footer__sns .snsicon-note {
  width: 16vw;
  background: url(/assets/img/common/note.svg) 50% 50% no-repeat;
  background-size: 10.6666666667vw auto;
}
@media screen and (min-width: 768px) {
  .footer__sns {
    font-size: 24px;
    font-size: 2vw;
    margin-bottom: 1.6666666667vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  .footer__sns {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 768px) {
  .footer__sns li {
    margin: 0 0.5%;
  }
  .footer__sns a {
    width: 3.3333333333vw;
    height: 3.3333333333vw;
  }
  .footer__sns .snsicon-note {
    width: 5vw;
    background-size: 3.3333333333vw auto;
  }
}
@media screen and (min-width: 1000px) {
  .footer__sns a {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .footer__sns a:hover {
    filter: alpha(opacity=65);
    opacity: 0.6;
  }
}
@media screen and (min-width: 1200px) {
  .footer__sns {
    margin-bottom: 20px;
  }
  .footer__sns a {
    width: 40px;
    height: 40px;
  }
  .footer__sns .snsicon-note {
    width: 60px;
    background-size: 40px auto;
  }
}
.footer__inner {
  padding: 2.6666666667vw 2.9333333333vw;
  background: #e0e0db;
  font-size: 12px;
  font-size: 3.2vw;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -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.8333333333vw 1.6666666667vw;
    font-size: 12px;
    font-size: 1vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  .footer__inner {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 1200px) {
  .footer__inner {
    padding: 10px 20px;
  }
}
.footer__inner--logo {
  width: 30.6666666667vw;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .footer__inner--logo {
    width: 13.3333333333vw;
    margin: 0;
  }
}
@media screen and (min-width: 1000px) {
  .footer__inner--logo a {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .footer__inner--logo a:hover {
    filter: alpha(opacity=65);
    opacity: 0.6;
  }
}
@media screen and (min-width: 1200px) {
  .footer__inner--logo {
    width: 160px;
  }
}
.footer__inner--terms {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 70%;
  margin: 4.8vw auto 3.2vw;
}
.footer__inner--terms li {
  margin-bottom: 1em;
}
.footer__inner--terms li a {
  display: block;
  line-height: 2;
  color: #3d3d3d;
}
@media screen and (min-width: 768px) {
  .footer__inner--terms {
    width: 50%;
    margin: 0;
  }
  .footer__inner--terms li {
    margin: 0;
  }
  .footer__inner--terms li a {
    line-height: 1.7;
  }
}
@media screen and (min-width: 1000px) {
  .footer__inner--terms a {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .footer__inner--terms a:hover {
    filter: alpha(opacity=65);
    opacity: 0.6;
  }
}
@media screen and (min-width: 1200px) {
  .footer__inner--terms {
    width: 500px;
  }
}
/*////////////////////////////////////////////////////////////
 HOME 2023
////////////////////////////////////////////////////////////*/
/* コピペ用
@media screen and (min-width:$breakpoints-md) {
}
@media screen and (min-width:$breakpoints-mo) {
}
@media screen and (min-width:$breakpoints-lg) {
}
*/
.hero-mov {
  position: relative;
}
@media screen and (min-width: 768px) {
  .hero-mov {
    width: 43.3333333333vw;
    max-width: 520px;
    margin: 0 auto;
  }
}
.hero-mov__control, .hero-mov__replay {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 11.7333333333vw;
  height: 11.7333333333vw;
  background: rgba(255, 255, 255, 0.4);
  font-size: 18px;
  font-size: 4.8vw;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .hero-mov__control, .hero-mov__replay {
    width: 3.6666666667vw;
    height: 3.6666666667vw;
    font-size: 18px;
    font-size: 1.5vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  .hero-mov__control, .hero-mov__replay {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1200px) {
  .hero-mov__control, .hero-mov__replay {
    width: 44px;
    height: 44px;
  }
}
.hero-mov__control {
  right: 2.1333333333vw;
  bottom: -11.2vw;
}
@media screen and (min-width: 768px) {
  .hero-mov__control {
    right: -3.8333333333vw;
    bottom: 0.5833333333vw;
  }
}
@media screen and (min-width: 1200px) {
  .hero-mov__control {
    right: -46px;
    bottom: 7px;
  }
}
.hero-mov__control-on, .hero-mov__control-off {
  padding: 3.4666666667vw 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .hero-mov__control-on, .hero-mov__control-off {
    padding: 1.7333333333vw 1.3333333333vw;
  }
}
@media screen and (min-width: 1000px) {
  .hero-mov__control-on, .hero-mov__control-off {
    cursor: pointer;
  }
}
@media screen and (min-width: 1200px) {
  .hero-mov__control-on, .hero-mov__control-off {
    padding: 13px 10px;
  }
}
.hero-mov__control-on {
  display: none;
}
.hero-mov__control-on.is-active {
  display: block;
}
.hero-mov__control-off {
  display: none;
}
.hero-mov__control-off.is-active {
  display: block;
}
.hero-mov__replay {
  display: none;
  right: 14.6666666667vw;
  bottom: -11.2vw;
  margin: -5.8666666667vw 0 0 -5.8666666667vw;
  font-size: 22px;
  font-size: 5.8666666667vw;
}
@media screen and (min-width: 768px) {
  .hero-mov__replay {
    right: 0;
    bottom: 0.5833333333vw;
    margin: -1.8333333333vw 0 0 -1.8333333333vw;
    font-size: 22px;
    font-size: 1.8333333333vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  .hero-mov__replay {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 1200px) {
  .hero-mov__replay {
    right: 0;
    bottom: 7px;
    margin: -22px 0 0 -22px;
  }
}
.hero-mov__replay-again {
  padding: 2.6666666667vw 2.9333333333vw;
}
@media screen and (min-width: 768px) {
  .hero-mov__replay-again {
    padding: 1.3333333333vw 1.4666666667vw;
  }
}
@media screen and (min-width: 1000px) {
  .hero-mov__replay-again {
    cursor: pointer;
  }
}
@media screen and (min-width: 1200px) {
  .hero-mov__replay-again {
    padding: 10px 11px;
  }
}

.home-content {
  margin-top: 21.3333333333vw;
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
  text-align: justify;
  text-justify: inter-ideograph;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.home-content:nth-of-type(1) {
  margin: 0;
}
@media screen and (min-width: 768px) {
  .home-content {
    width: 80vw;
    margin: 8.3333333333vw auto 0;
  }
  .home-content:nth-of-type(1) {
    margin: 0 auto;
  }
  .home-content--left, .home-content--right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .home-content--right {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media screen and (min-width: 1200px) {
  .home-content {
    width: 960px;
    margin: 100px auto 0;
  }
}
.home-content__pic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.home-content__pic img {
  width: 80vw;
  height: auto;
}
.home-content__pic--right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (min-width: 768px) {
  .home-content__pic {
    display: block;
    width: 35vw;
  }
}
@media screen and (min-width: 1200px) {
  .home-content__pic {
    width: 420px;
  }
}
@media screen and (min-width: 768px) {
  .home-content__wrap {
    width: 41.6666666667vw;
  }
}
@media screen and (min-width: 1200px) {
  .home-content__wrap {
    width: 500px;
  }
}
.home-content__title {
  position: relative;
  margin-top: 8vw;
  margin-bottom: 2.6666666667vw;
  font-size: 18px;
  font-size: 4.8vw;
  font-weight: 400;
}
.home-content__title span {
  display: block;
}
.home-content__title::after {
  content: "";
  display: block;
  padding-bottom: 6.4vw;
  border-bottom: 1px solid #3d3d3d;
  -webkit-transform: scaleY(0.5);
          transform: scaleY(0.5);
  -webkit-transform-origin: 100% 0;
          transform-origin: 100% 0;
}
@media screen and (min-width: 768px) {
  .home-content__title {
    margin: 0;
    font-size: 25px;
    font-size: 2.0833333333vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  .home-content__title {
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 768px) {
  .home-content__title::after {
    padding-bottom: 1.6666666667vw;
  }
}
@media screen and (min-width: 1200px) {
  .home-content__title::after {
    padding-bottom: 20px;
  }
}
.home-content__title--center {
  margin-bottom: 3.7333333333vw;
  font-size: 20px;
  font-size: 5.3333333333vw;
  text-align: center;
}
.home-content__title--center::after {
  content: none;
}
@media screen and (min-width: 768px) {
  .home-content__title--center {
    margin-top: 5vw;
    margin-bottom: 2.5vw;
    font-size: 30px;
    font-size: 2.5vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  .home-content__title--center {
    font-size: 3rem;
  }
}
@media screen and (min-width: 1200px) {
  .home-content__title--center {
    margin-top: 60px;
    margin-bottom: 30px;
  }
}
.home-content__title--left, .home-content__title--right {
  width: 93.8666666667vw;
}
.home-content__title--left span, .home-content__title--right span {
  width: 88vw;
}
@media screen and (min-width: 768px) {
  .home-content__title--left, .home-content__title--right {
    width: 41.6666666667vw;
  }
  .home-content__title--left span, .home-content__title--right span {
    width: auto;
  }
}
@media screen and (min-width: 1200px) {
  .home-content__title--left, .home-content__title--right {
    width: 500px;
  }
}
.home-content__title--left span {
  padding-left: 5.8666666667vw;
}
@media screen and (min-width: 768px) {
  .home-content__title--left span {
    padding: 0;
  }
}
.home-content__title--right {
  float: right;
}
@media screen and (min-width: 768px) {
  .home-content__title--right {
    float: inherit;
  }
}
.home-content__inner {
  width: 88vw;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .home-content__inner {
    width: 100%;
  }
}
.home-content__inner-dscr {
  font-size: 13px;
  font-size: 3.4666666667vw;
}
@media screen and (min-width: 768px) {
  .home-content__inner-dscr {
    font-size: 14px;
    font-size: 1.1666666667vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  .home-content__inner-dscr {
    font-size: 1.4rem;
  }
}
.home-content__inner-dscr--center {
  font-size: 14px;
  font-size: 3.7333333333vw;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .home-content__inner-dscr--center {
    font-size: 16px;
    font-size: 1.3333333333vw;
    text-align: center;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  .home-content__inner-dscr--center {
    font-size: 1.6rem;
  }
}
.home-content__inner-dscr span {
  display: block;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .home-content__inner-dscr span {
    display: inline;
    white-space: inherit;
  }
}
@media screen and (min-width: 768px) {
  .home-content__inner-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.home-content__inner-btn li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 53.3333333333vw;
  margin: 5.3333333333vw auto 0;
  font-family: "Caveat", cursive;
  font-weight: 400;
  letter-spacing: 0;
  font-size: 22px;
  font-size: 5.8666666667vw;
}
.home-content__inner-btn li a {
  display: block;
  width: 100%;
  height: 10.6666666667vw;
  background: #403f41;
  color: #fff;
  text-align: center;
  line-height: 1.8;
}
.home-content__inner-btn li.btn-video a {
  position: relative;
  padding-left: 4vw;
  background: #f5f5f5;
  line-height: 2;
  font-size: 20px;
  font-size: 5.3333333333vw;
  color: #3d3d3d;
}
.home-content__inner-btn li.btn-video a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 6.9333333333vw;
  width: 0;
  height: 0;
  border: solid 1.6vw transparent;
  border-left: solid 2.9333333333vw #3d3d3d;
  margin-top: -1.6vw;
}
@media screen and (min-width: 768px) {
  .home-content__inner-btn li {
    width: 16.6666666667vw;
    margin: 2.5vw 1.6666666667vw 0;
    font-size: 26px;
    font-size: 2.1666666667vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  .home-content__inner-btn li {
    font-size: 2.6rem;
  }
}
@media screen and (min-width: 768px) {
  .home-content__inner-btn li a {
    height: 4.1666666667vw;
  }
  .home-content__inner-btn li.btn-video a {
    padding-left: 1.25vw;
    line-height: 2.3;
    font-size: 22px;
    font-size: 1.8333333333vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  .home-content__inner-btn li.btn-video a {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 768px) {
  .home-content__inner-btn li.btn-video a::before {
    left: 2.1666666667vw;
    border: solid 0.5vw transparent;
    border-left: solid 0.9166666667vw #3d3d3d;
    margin-top: -0.5vw;
  }
}
@media screen and (min-width: 1000px) {
  .home-content__inner-btn li a {
    cursor: pointer;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .home-content__inner-btn li a:hover {
    filter: alpha(opacity=65);
    opacity: 0.6;
  }
}
@media screen and (min-width: 1200px) {
  .home-content__inner-btn li {
    width: 200px;
    margin: 30px 20px 0;
  }
  .home-content__inner-btn li a {
    height: 50px;
  }
  .home-content__inner-btn li.btn-video a {
    padding-left: 15px;
  }
  .home-content__inner-btn li.btn-video a::before {
    left: 26px;
    border: solid 6px transparent;
    border-left: solid 11px #3d3d3d;
    margin-top: -6px;
  }
}
.home-content__inner-info {
  position: relative;
  margin-top: 8vw;
}
.home-content__inner-info::before, .home-content__inner-info::after {
  content: "";
  display: block;
  -webkit-transform: scaleY(0.5);
          transform: scaleY(0.5);
  -webkit-transform-origin: 100% 0;
          transform-origin: 100% 0;
}
.home-content__inner-info::before {
  border-top: 1px solid #3d3d3d;
}
.home-content__inner-info::after {
  border-bottom: 1px solid #3d3d3d;
}
.home-content__inner-info p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2.6666666667vw;
  font-size: 13px;
  font-size: 3.4666666667vw;
}
.home-content__inner-info a {
  display: block;
  width: 37.3333333333vw;
  height: 10.6666666667vw;
  background: #f5f5f5;
  font-family: "Caveat", cursive;
  font-weight: 400;
  letter-spacing: 0;
  font-size: 22px;
  font-size: 5.8666666667vw;
  color: #3d3d3d;
  text-align: center;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .home-content__inner-info {
    width: 28.3333333333vw;
    margin: 5vw auto 0;
  }
  .home-content__inner-info p {
    padding: 0.8333333333vw;
    font-size: 14px;
    font-size: 1.1666666667vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  .home-content__inner-info p {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 768px) {
  .home-content__inner-info a {
    width: 11.6666666667vw;
    height: 4.1666666667vw;
    font-size: 24px;
    font-size: 2vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  .home-content__inner-info a {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 1000px) {
  .home-content__inner-info a {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .home-content__inner-info a:hover {
    filter: alpha(opacity=65);
    opacity: 0.6;
  }
}
@media screen and (min-width: 1200px) {
  .home-content__inner-info {
    width: 340px;
    margin: 60px auto 0;
  }
  .home-content__inner-info p {
    padding: 10;
  }
  .home-content__inner-info a {
    width: 140px;
    height: 50px;
  }
}

/*////////////////////////////////////////////////////////////
 CONCEPT 2023
////////////////////////////////////////////////////////////*/
/* コピペ用
@media screen and (min-width:$breakpoints-md) {
}
@media screen and (min-width:$breakpoints-mo) {
}
@media screen and (min-width:$breakpoints-lg) {
}
*/
.concept .concept-units {
  width: 85.3333333333%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .concept .concept-units {
    width: 53.3333333333%;
    max-width: 640px;
  }
}
.concept .concept-units__unit {
  margin-top: 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .concept .concept-units__unit {
    margin-top: 5.8333333333vw;
  }
}
@media screen and (min-width: 1200px) {
  .concept .concept-units__unit {
    margin-top: 70px;
  }
}
.concept .concept-units__head {
  margin-bottom: 3.2vw;
  font-weight: 400;
  font-size: 22px;
  font-size: 5.8666666667vw;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .concept .concept-units__head {
    margin-bottom: 0.6666666667vw;
    font-size: 28px;
    font-size: 2.3333333333vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  .concept .concept-units__head {
    font-size: 2.8rem;
  }
}
@media screen and (min-width: 1200px) {
  .concept .concept-units__head {
    margin-bottom: 8px;
  }
}
.concept .concept-units__dscr {
  padding-top: 2.1333333333vw;
  font-size: 13px;
  font-size: 3.4666666667vw;
  text-align: justify;
  text-justify: inter-ideograph;
}
.concept .concept-units__dscr em {
  font-size: 15px;
  font-size: 4vw;
  font-style: normal;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .concept .concept-units__dscr {
    padding-top: 1.1666666667vw;
    font-size: 15px;
    font-size: 1.25vw;
    text-align: center;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  .concept .concept-units__dscr {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .concept .concept-units__dscr em {
    font-size: 18px;
    font-size: 1.5vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  .concept .concept-units__dscr em {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1200px) {
  .concept .concept-units__dscr {
    padding-top: 14px;
  }
}
.concept .concept-units .contents-btn {
  margin-top: 16vw;
}
@media screen and (min-width: 768px) {
  .concept .concept-units .contents-btn {
    margin-top: 5vw;
  }
}
@media screen and (min-width: 1200px) {
  .concept .concept-units .contents-btn {
    margin-top: 60px;
  }
}

/*////////////////////////////////////////////////////////////
 PROCESS 2023
////////////////////////////////////////////////////////////*/
/* コピペ用
@media screen and (min-width:$breakpoints-md) {
}
@media screen and (min-width:$breakpoints-mo) {
}
@media screen and (min-width:$breakpoints-lg) {
}
*/
.process .process-box {
  margin-top: 21.3333333333vw;
}
.process .process-box:nth-of-type(1) {
  margin-top: 8vw;
}
@media screen and (min-width: 768px) {
  .process .process-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 86.6666666667%;
    max-width: 1040px;
    margin: 18.3333333333vw auto 0;
    padding: 0;
  }
  .process .process-box:nth-of-type(1) {
    margin-top: 4.1666666667vw;
  }
  .process .process-box:last-child {
    padding-bottom: 5vw;
  }
}
@media screen and (min-width: 1200px) {
  .process .process-box {
    margin-top: 220px;
  }
  .process .process-box:nth-of-type(1) {
    margin-top: 50px;
  }
  .process .process-box:last-child {
    padding-bottom: 60px;
  }
}
@media screen and (min-width: 768px) {
  .process .process-box--reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.process .process-box__slide {
  width: 90.6666666667vw;
}
.process .process-box__slide--reverse {
  float: right;
}
.process .process-box__slide button {
  display: none;
}
@media screen and (min-width: 768px) {
  .process .process-box__slide {
    width: 50vw;
  }
  .process .process-box__slide--reverse {
    float: inherit;
  }
}
@media screen and (min-width: 1200px) {
  .process .process-box__slide {
    width: 600px;
  }
}
.process .process-box .slide-nav {
  margin-top: 2.1333333333vw;
  overflow: hidden;
}
.process .process-box .slide-nav li {
  padding: 0 1.3333333333vw;
  opacity: 0.3;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.process .process-box .slide-nav li.slick-current {
  opacity: 1;
}
.process .process-box .slide-nav button {
  display: none;
}
@media screen and (min-width: 768px) {
  .process .process-box .slide-nav {
    margin-top: 0.5vw;
  }
  .process .process-box .slide-nav li {
    padding: 0 0.3333333333vw;
  }
}
@media screen and (min-width: 1200px) {
  .process .process-box .slide-nav {
    margin-top: 6px;
  }
  .process .process-box .slide-nav li {
    padding: 0 4px;
  }
}
.process .process-box__ex {
  clear: both;
  width: 85.3333333333vw;
  margin: 0 auto;
  text-align: justify;
  text-justify: inter-ideograph;
}
@media screen and (min-width: 768px) {
  .process .process-box__ex {
    clear: inherit;
    width: 31.6666666667vw;
    margin: 0;
  }
}
@media screen and (min-width: 1200px) {
  .process .process-box__ex {
    width: 380px;
  }
}
.process .process-box__ex-head {
  position: relative;
  margin-left: -1.3333333333vw;
  margin-bottom: 2.1333333333vw;
  padding: 6.9333333333vw 0 3.2vw 0;
  font-weight: 400;
  font-size: 18px;
  font-size: 4.8vw;
  line-height: 1;
}
.process .process-box__ex-head small {
  font-size: 13px;
  font-size: 3.4666666667vw;
}
.process .process-box__ex-head::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 94vw;
  height: 1px;
  background: #3d3d3d;
  border-bottom: 1px solid #3d3d3d;
}
.process .process-box__ex-head--reverse::after {
  left: inherit;
  right: 0;
}
@media screen and (min-width: 768px) {
  .process .process-box__ex-head {
    margin: 0;
    padding: 0 0 1.5vw;
    font-size: 22px;
    font-size: 1.8333333333vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  .process .process-box__ex-head {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 768px) {
  .process .process-box__ex-head small {
    font-size: 16px;
    font-size: 1.3333333333vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  .process .process-box__ex-head small {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 768px) {
  .process .process-box__ex-head::after {
    width: 100%;
  }
  .process .process-box__ex-head--reverse::after {
    left: 0;
    right: inherit;
  }
}
@media screen and (min-width: 1200px) {
  .process .process-box__ex-head {
    padding: 0 0 18px;
  }
}
.process .process-box__ex p {
  padding-top: 2.1333333333vw;
}
@media screen and (min-width: 768px) {
  .process .process-box__ex p {
    padding-top: 1.1666666667vw;
  }
}
@media screen and (min-width: 1200px) {
  .process .process-box__ex p {
    padding-top: 14px;
  }
}

/*////////////////////////////////////////////////////////////
 PEOPLE 2023
////////////////////////////////////////////////////////////*/
/* コピペ用
@media screen and (min-width:$breakpoints-md) {
}
@media screen and (min-width:$breakpoints-mo) {
}
@media screen and (min-width:$breakpoints-lg) {
}
*/
.people .people-box {
  margin: 13.3333333333vw 0 0;
}
.people .people-box:nth-of-type(1) {
  margin: 8vw auto 0;
}
@media screen and (min-width: 768px) {
  .people .people-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 86.6666666667%;
    max-width: 1040px;
    margin: 10vw auto 0;
    padding: 0;
  }
  .people .people-box:nth-of-type(1) {
    margin-top: 4.1666666667vw;
  }
}
@media screen and (min-width: 1200px) {
  .people .people-box {
    margin-top: 120px;
  }
  .people .people-box:nth-of-type(1) {
    margin-top: 50px;
  }
}
@media screen and (min-width: 768px) {
  .people .people-box--reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.people .people-box__slide {
  width: 90.6666666667vw;
}
.people .people-box__slide--reverse {
  float: right;
}
@media screen and (min-width: 768px) {
  .people .people-box__slide {
    width: 50vw;
  }
  .people .people-box__slide--reverse {
    float: inherit;
  }
}
@media screen and (min-width: 1200px) {
  .people .people-box__slide {
    width: 600px;
  }
}
.people .people-box__ex {
  clear: both;
  width: 85.3333333333vw;
  margin: 0 auto;
  text-align: justify;
  text-justify: inter-ideograph;
}
@media screen and (min-width: 768px) {
  .people .people-box__ex {
    clear: inherit;
    width: 31.6666666667vw;
    margin: 0;
  }
}
@media screen and (min-width: 1200px) {
  .people .people-box__ex {
    width: 380px;
  }
}
.people .people-box__ex-head {
  position: relative;
  margin-left: -1.3333333333vw;
  margin-bottom: 2.1333333333vw;
  padding: 3.2vw 0 3.2vw 0;
  font-weight: 400;
  font-size: 18px;
  font-size: 4.8vw;
  line-height: 1.6;
}
.people .people-box__ex-head::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 94vw;
  height: 1px;
  background: #3d3d3d;
  border-bottom: 1px solid #3d3d3d;
}
.people .people-box__ex-head--reverse::after {
  left: inherit;
  right: 0;
}
@media screen and (min-width: 768px) {
  .people .people-box__ex-head {
    margin: 0;
    padding: 0 0 1.5vw;
    font-size: 22px;
    font-size: 1.8333333333vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  .people .people-box__ex-head {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 768px) {
  .people .people-box__ex-head::after {
    width: 100%;
  }
  .people .people-box__ex-head--reverse::after {
    left: 0;
    right: inherit;
  }
}
@media screen and (min-width: 1200px) {
  .people .people-box__ex-head {
    padding: 0 0 18px;
  }
}
.people .people-box__ex p {
  padding-top: 2.1333333333vw;
}
@media screen and (min-width: 768px) {
  .people .people-box__ex p {
    padding-top: 1.1666666667vw;
  }
}
@media screen and (min-width: 1200px) {
  .people .people-box__ex p {
    padding-top: 14px;
  }
}
.people .people-thinking {
  width: 85.3333333333vw;
  margin: 16vw auto 0;
  font-size: 14px;
  font-size: 3.7333333333vw;
  text-align: justify;
  text-justify: inter-ideograph;
  line-height: 1.8;
  letter-spacing: 0.22em;
}
.people .people-thinking p {
  padding-top: 3.2vw;
}
@media screen and (min-width: 768px) {
  .people .people-thinking {
    width: 53.3333333333%;
    max-width: 640px;
    margin: 10vw auto 0;
    font-size: 16px;
    font-size: 1.3333333333vw;
    text-align: center;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  .people .people-thinking {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 768px) {
  .people .people-thinking p {
    padding-top: 1.1666666667vw;
  }
}
@media screen and (min-width: 1200px) {
  .people .people-thinking {
    margin: 120px auto 0;
  }
  .people .people-thinking p {
    padding-top: 14px;
  }
}
.people .ceo-info {
  margin-top: 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .people .ceo-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 53.3333333333%;
    max-width: 640px;
    margin: 10vw auto 0;
  }
}
@media screen and (min-width: 1200px) {
  .people .ceo-info {
    margin: 120px auto 0;
  }
}
.people .ceo-info__pic {
  float: right;
  width: 90.6666666667vw;
  margin-bottom: 0.5em;
}
@media screen and (min-width: 768px) {
  .people .ceo-info__pic {
    float: inherit;
    display: block;
    width: 35vw;
  }
}
@media screen and (min-width: 1200px) {
  .people .ceo-info__pic {
    width: 420px;
  }
}
.people .ceo-info__name {
  clear: both;
  margin-left: 9.3333333333vw;
}
.people .ceo-info__name h4 {
  font-weight: 400;
}
.people .ceo-info__name h4 span {
  display: inline-block;
}
.people .ceo-info__name-title {
  font-size: 12px;
  font-size: 3.2vw;
}
.people .ceo-info__name-jp {
  font-size: 16px;
  font-size: 4.2666666667vw;
}
.people .ceo-info__name-en {
  padding-left: 0.5em;
  font-size: 12px;
  font-size: 3.2vw;
}
@media screen and (min-width: 768px) {
  .people .ceo-info__name {
    clear: inherit;
    width: 14.1666666667vw;
    margin: 0;
  }
  .people .ceo-info__name-title {
    font-size: 12px;
    font-size: 1vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  .people .ceo-info__name-title {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 768px) {
  .people .ceo-info__name-jp {
    font-size: 16px;
    font-size: 1.3333333333vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  .people .ceo-info__name-jp {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 768px) {
  .people .ceo-info__name-en {
    padding-left: 0;
    font-size: 12px;
    font-size: 1vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  .people .ceo-info__name-en {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 1200px) {
  .people .ceo-info__name {
    width: 170px;
  }
}
.people .ceo-info__profile {
  position: relative;
  width: 85.3333333333vw;
  margin: 5.3333333333vw auto 0;
}
.people .ceo-info__profile::before, .people .ceo-info__profile::after {
  content: "";
  display: block;
  -webkit-transform: scaleY(0.5);
          transform: scaleY(0.5);
  -webkit-transform-origin: 100% 0;
          transform-origin: 100% 0;
}
.people .ceo-info__profile::before {
  border-top: 1px solid #3d3d3d;
}
.people .ceo-info__profile::after {
  border-bottom: 1px solid #3d3d3d;
}
.people .ceo-info__profile h5 {
  margin-top: 1em;
  font-weight: 400;
}
.people .ceo-info__profile dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 1em;
}
.people .ceo-info__profile dt, .people .ceo-info__profile dd {
  margin-bottom: 3.2vw;
}
.people .ceo-info__profile dt {
  width: 12%;
  margin-top: 0.8vw;
  font-size: 11px;
  font-size: 2.9333333333vw;
  line-height: 1.2;
}
.people .ceo-info__profile dt span {
  white-space: nowrap;
}
.people .ceo-info__profile dd {
  width: 88%;
  padding-left: 1em;
  text-align: justify;
  text-justify: inter-ideograph;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.people .ceo-info__profile dd a {
  color: #403f41;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .people .ceo-info__profile {
    width: 53.3333333333vw;
    margin: 1.6666666667vw auto 0;
  }
  .people .ceo-info__profile dl {
    margin-bottom: 0.5em;
  }
  .people .ceo-info__profile dt, .people .ceo-info__profile dd {
    margin-bottom: 1.5vw;
  }
  .people .ceo-info__profile dt {
    display: -ms-grid;
    display: grid;
    width: 4.1666666667vw;
    margin-top: 0.25vw;
    font-size: 12px;
    font-size: 1vw;
    text-align: left;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  .people .ceo-info__profile dt {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 768px) {
  .people .ceo-info__profile dd {
    width: 49.1666666667vw;
    padding-left: 0.8333333333vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1000px) {
  .people .ceo-info__profile dd a {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .people .ceo-info__profile dd a:hover {
    filter: alpha(opacity=65);
    opacity: 0.6;
  }
}
@media screen and (min-width: 1200px) {
  .people .ceo-info__profile {
    width: 640px;
  }
  .people .ceo-info__profile dt, .people .ceo-info__profile dd {
    margin-bottom: 18px;
  }
  .people .ceo-info__profile dt {
    width: 50px;
    margin-top: 3px;
  }
  .people .ceo-info__profile dd {
    width: 590px;
    padding-left: 10px;
  }
}

/*////////////////////////////////////////////////////////////
 PHOTOS 2023
////////////////////////////////////////////////////////////*/
.photos .photos-cont__new-size {
  width: 91.7333333333%;
  margin: 8vw auto 0;
}
@media screen and (min-width: 768px) {
  .photos .photos-cont__new-size {
    width: 86.6666666667%;
    max-width: 1040px;
    margin-top: 5vw;
  }
}
@media screen and (min-width: 1200px) {
  .photos .photos-cont__new-size {
    margin-top: 60px;
  }
}
.photos .photos-cont__new-size .photos-ul {
  width: auto;
}
.photos .photos-cont__new-size .photos-ul li {
  width: 21.3333333333vw;
  margin: 0.8vw;
}
.photos .photos-cont__new-size .photos-ul li:nth-child(6n+3), .photos .photos-cont__new-size .photos-ul li:nth-child(6n+4) {
  width: 44.2666666667vw;
}
@media screen and (min-width: 768px) {
  .photos .photos-cont__new-size .photos-ul li {
    width: 16.5vw;
    margin: 0.4166666667vw;
  }
  .photos .photos-cont__new-size .photos-ul li:nth-child(6n+3), .photos .photos-cont__new-size .photos-ul li:nth-child(6n+4) {
    width: 16.5vw;
  }
  .photos .photos-cont__new-size .photos-ul li:nth-child(9n+4), .photos .photos-cont__new-size .photos-ul li:nth-child(9n+5) {
    width: 33.8333333333vw;
  }
}
@media screen and (min-width: 1200px) {
  .photos .photos-cont__new-size .photos-ul li {
    width: 198px;
    margin: 5px;
  }
  .photos .photos-cont__new-size .photos-ul li:nth-child(6n+3), .photos .photos-cont__new-size .photos-ul li:nth-child(6n+4) {
    width: 198px;
  }
  .photos .photos-cont__new-size .photos-ul li:nth-child(9n+4), .photos .photos-cont__new-size .photos-ul li:nth-child(9n+5) {
    width: 406px;
  }
}
.photos .photos-cont__new-size .photographer {
  padding: 0 0.8% 0.8%;
}
.photos .photos-cont__new-size .photographer a {
  color: #3d3d3d;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .photos .photos-cont__new-size .photographer {
    width: auto;
    margin: 0 auto;
    padding: 0 0.8% 0.8%;
  }
}
@media screen and (min-width: 1000px) {
  .photos .photos-cont__new-size .photographer a {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .photos .photos-cont__new-size .photographer a:hover {
    filter: alpha(opacity=65);
    opacity: 0.6;
  }
}
@media screen and (min-width: 1200px) {
  .photos .photos-cont__new-size .photographer {
    width: auto;
  }
}
.photos .photos-ul {
  margin: 0 auto;
}
.photos .photos-ul li {
  width: 25%;
}
.photos .photos-ul li:nth-child(6n+3), .photos .photos-ul li:nth-child(6n+4) {
  width: 50%;
}
@media screen and (min-width: 750px) {
  .photos .photos-ul {
    width: calc(100% - 38px);
  }
  .photos .photos-ul li {
    width: 20%;
  }
  .photos .photos-ul li:nth-child(6n+3), .photos .photos-ul li:nth-child(6n+4) {
    width: 20%;
  }
  .photos .photos-ul li:nth-child(9n+4), .photos .photos-ul li:nth-child(9n+5) {
    width: 40%;
  }
}
@media screen and (min-width: 768px) {
  .photos .photos-ul {
    width: 980px;
    padding: 0;
  }
}
.photos .photographer {
  padding: 0 10px 10px;
  text-align: right;
}
.photos .photographer a {
  color: #707070;
}
@media screen and (min-width: 750px) {
  .photos .photographer {
    width: calc(100% - 38px);
    margin: 0 auto;
    padding: 0 0 10px;
  }
}
@media screen and (min-width: 768px) {
  .photos .photographer {
    width: 980px;
  }
}

/*////////////////////////////////////////////////////////////
 SHOP 2023
////////////////////////////////////////////////////////////*/
/* コピペ用
@media screen and (min-width:$breakpoints-md) {
}
@media screen and (min-width:$breakpoints-mo) {
}
@media screen and (min-width:$breakpoints-lg) {
}
*/
@media screen and (min-width: 768px) {
  .shop .shop-cont {
    padding-bottom: 5vw;
  }
}
@media screen and (min-width: 1200px) {
  .shop .shop-cont {
    padding-bottom: 60px;
  }
}
.shop .shop-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap-reverse;
      flex-wrap: wrap-reverse;
  margin: 32vw 0 0;
}
.shop .shop-info:nth-of-type(1) {
  margin: 8vw auto 0;
}
@media screen and (min-width: 768px) {
  .shop .shop-info {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: inherit;
        flex-wrap: inherit;
    width: 86.6666666667%;
    max-width: 1040px;
    margin: 13.3333333333vw auto 0;
  }
  .shop .shop-info:nth-of-type(1) {
    margin-top: 4.1666666667vw;
  }
  .shop .shop-info--reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media screen and (min-width: 1200px) {
  .shop .shop-info {
    margin-top: 160px;
  }
  .shop .shop-info:nth-of-type(1) {
    margin-top: 50px;
  }
}
.shop .shop-info__wrap {
  position: relative;
  width: 85.3333333333vw;
  margin: 0 auto;
  text-align: justify;
  text-justify: inter-ideograph;
}
@media screen and (min-width: 768px) {
  .shop .shop-info__wrap {
    clear: inherit;
    width: 31.6666666667vw;
    margin: 0;
  }
}
@media screen and (min-width: 1200px) {
  .shop .shop-info__wrap {
    width: 380px;
  }
}
.shop .shop-info__name {
  position: relative;
  margin-left: -1.3333333333vw;
  margin-bottom: 2.1333333333vw;
  padding: 3.2vw 0 3.2vw 0;
  font-weight: 400;
  font-size: 18px;
  font-size: 4.8vw;
  line-height: 1.6;
}
.shop .shop-info__name::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 94vw;
  height: 1px;
  background: #3d3d3d;
  border-bottom: 1px solid #3d3d3d;
}
.shop .shop-info__name--reverse::after {
  left: inherit;
  right: 0;
}
@media screen and (min-width: 768px) {
  .shop .shop-info__name {
    margin: 0 0 0.8333333333vw;
    padding: 0 0 1.5vw;
    font-size: 20px;
    font-size: 1.6666666667vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  .shop .shop-info__name {
    font-size: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .shop .shop-info__name::after {
    width: 100%;
  }
  .shop .shop-info__name--reverse::after {
    left: 0;
    right: inherit;
  }
}
@media screen and (min-width: 1200px) {
  .shop .shop-info__name {
    margin: 0 0 10px;
    padding: 0 0 18px;
  }
}
.shop .shop-info__sns {
  position: absolute;
  top: 2.1333333333vw;
  right: 0;
}
@media screen and (min-width: 768px) {
  .shop .shop-info__sns {
    top: -0.3333333333vw;
  }
}
@media screen and (min-width: 1200px) {
  .shop .shop-info__sns {
    top: -4px;
  }
}
.shop .shop-info__comment {
  position: relative;
  margin-top: 2.6666666667vw;
}
.shop .shop-info__comment::before, .shop .shop-info__comment::after {
  content: "";
  display: block;
  -webkit-transform: scaleY(0.5);
          transform: scaleY(0.5);
  -webkit-transform-origin: 100% 0;
          transform-origin: 100% 0;
}
.shop .shop-info__comment::before {
  border-top: 1px solid #e0e0db;
}
.shop .shop-info__comment::after {
  border-bottom: 1px solid #e0e0db;
}
.shop .shop-info__comment p {
  padding: 2.6666666667vw 0;
}
.shop .shop-info__comment-website {
  margin: 2.1333333333vw auto 4.2666666667vw;
}
.shop .shop-info__comment-website li {
  margin: 0 auto;
}
.shop .shop-info__comment-sns {
  margin-bottom: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .shop .shop-info__comment {
    margin-top: 0.8333333333vw;
  }
  .shop .shop-info__comment p {
    padding: 0.8333333333vw;
  }
  .shop .shop-info__comment-website {
    margin: 0.6666666667vw auto 1.3333333333vw;
  }
  .shop .shop-info__comment-sns {
    margin-bottom: 0.8333333333vw;
  }
}
@media screen and (min-width: 1200px) {
  .shop .shop-info__comment {
    margin-top: 10px;
  }
  .shop .shop-info__comment p {
    padding: 10px;
  }
  .shop .shop-info__comment-website {
    margin: 8px auto 16px;
  }
  .shop .shop-info__comment-sns {
    margin-bottom: 10px;
  }
}
.shop .shop-info__map {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 70%;
  overflow: hidden;
}
.shop .shop-info__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 100%;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}
.shop .shop-info__map--reverse iframe {
  left: 10%;
}
@media screen and (min-width: 768px) {
  .shop .shop-info__map {
    width: 50vw;
    padding-bottom: 40%;
  }
  .shop .shop-info__map iframe {
    width: 100%;
  }
  .shop .shop-info__map--reverse iframe {
    left: 0;
  }
}
@media screen and (min-width: 1200px) {
  .shop .shop-info__map {
    width: 600px;
    margin: 0;
  }
}

/*////////////////////////////////////////////////////////////
 SLICK
////////////////////////////////////////////////////////////*/
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("/assets/img/common/ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("/assets/fonts/slick.eot");
  src: url("/assets/fonts/slick.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/slick.woff") format("woff"), url("/assets/fonts/slick.ttf") format("truetype"), url("/assets/fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: 3.2vw;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .slick-dots {
    bottom: -2vw;
  }
}
@media screen and (min-width: 1200px) {
  .slick-dots {
    bottom: -24px;
  }
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 2.6666666667vw;
  width: 2.6666666667vw;
  margin: 0 1.0666666667vw;
  padding: 0;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .slick-dots li {
    height: 0.8333333333vw;
    width: 0.8333333333vw;
    margin: 0 2.8333333333vw;
  }
}
@media screen and (min-width: 1200px) {
  .slick-dots li {
    height: 10px;
    width: 10px;
    margin: 0 4px;
  }
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 2.6666666667vw;
  width: 2.6666666667vw;
  outline: none;
  line-height: 0;
  font-size: 0;
  color: transparent;
  padding: 0 1.6vw;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .slick-dots li button {
    height: 0.8333333333vw;
    width: 0.8333333333vw;
    padding: 0 0.3333333333vw;
  }
}
@media screen and (min-width: 1000px) {
  .slick-dots li button:hover, .slick-dots li button:focus {
    outline: none;
  }
  .slick-dots li button:hover:before, .slick-dots li button:focus:before {
    opacity: 1;
  }
}
@media screen and (min-width: 1200px) {
  .slick-dots li button {
    height: 10px;
    width: 10px;
    padding: 0 4px;
  }
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .slick-dots li button:before {
    width: 0.8333333333vw;
    height: 0.8333333333vw;
    background: transparent;
    border: 1px solid #e0e0db;
  }
}
@media screen and (min-width: 1200px) {
  .slick-dots li button:before {
    width: 10px;
    height: 10px;
    border-width: 1px;
  }
}
.slick-dots li.slick-active button:before {
  background: #fff;
}
@media screen and (min-width: 768px) {
  .slick-dots li.slick-active button:before {
    border-color: #3d3d3d;
    background: #3d3d3d;
  }
}

.slider {
  display: none;
}

.slider.slick-initialized {
  display: block; /*slick-initializedが付与されたら表示*/
}

@-webkit-keyframes modal-video {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes modal-video {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes modal-video-inner {
  from {
    -webkit-transform: translate(0, 100px);
            transform: translate(0, 100px);
  }
  to {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes modal-video-inner {
  from {
    -webkit-transform: translate(0, 100px);
            transform: translate(0, 100px);
  }
  to {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
.modal-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000000;
  cursor: pointer;
  opacity: 1;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-name: modal-video;
          animation-name: modal-video;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

.modal-video-close {
  opacity: 0;
}
.modal-video-close .modal-video-movie-wrap {
  -webkit-transform: translate(0, 100px);
  transform: translate(0, 100px);
}

.modal-video-body {
  max-width: 940px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: table;
}

.modal-video-inner {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  height: 100%;
}

.modal-video-movie-wrap {
  width: 100%;
  height: 0;
  position: relative;
  padding-bottom: 56.25%;
  background-color: #333;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-name: modal-video-inner;
          animation-name: modal-video-inner;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.modal-video-movie-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal-video-close-btn {
  position: absolute;
  z-index: 2;
  top: -35px;
  right: -35px;
  display: inline-block;
  width: 35px;
  height: 35px;
  overflow: hidden;
  border: none;
  background: transparent;
}
.modal-video-close-btn:before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.modal-video-close-btn:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.modal-video-close-btn:before, .modal-video-close-btn:after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: -1px;
  background: #fff;
  border-radius: 5px;
  margin-top: -6px;
}

/*////////////////////////////////////////////////////////////
 Magnific Popup
////////////////////////////////////////////////////////////*/
/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100000;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100001;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
          box-shadow: none;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: 40px;
}

.mfp-arrow:before {
  width: 30px;
  height: 30px;
  border-top: 3px solid #dcdcdc;
  border-right: 3px solid #dcdcdc;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:before {
  left: 40px;
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:before {
  right: 40px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 768px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  .mfp-arrow:before {
    width: 20px;
    height: 20px;
  }
  .mfp-arrow-left {
    left: -10px;
  }
  .mfp-arrow-left:before {
    left: 8px;
  }
  .mfp-arrow-right {
    right: -10px;
  }
  .mfp-arrow-right:before {
    right: 8px;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
/*//////////////// original ////////////////*/
.mfp-bg {
  background: #000;
  opacity: 0.9;
}

.mfp-container {
  padding-left: 20px;
  padding-right: 20px;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: pointer;
}

.mfp-bg {
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.mfp-bg.mfp-ready {
  opacity: 0.9;
}

.mfp-wrap {
  opacity: 0;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
.mfp-wrap.mfp-ready {
  opacity: 1;
}

.mfp-s-loading .mfp-content {
  opacity: 0;
}

/* Content successfully loaded */
.mfp-s-ready .mfp-content {
  opacity: 1;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}

/*////////////////////////////////////////////////////////////
 EN 2023
////////////////////////////////////////////////////////////*/
:lang(en) {
  /*/////////
  COMMON
  /////////*/
  /*/////////
  HOME
  /////////*/
  /*/////////
  PROCESS
  /////////*/
  /*/////////
  PEOPLE
  /////////*/
  /*/////////
  ORDER
  /////////*/
}
:lang(en) .onlineshop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}
:lang(en) .onlineshop .footer {
  margin-top: auto;
}
:lang(en) .onlineshop .footer__sns {
  margin-top: 26.6666666667vw;
}
@media screen and (min-width: 768px) {
  :lang(en) .onlineshop .footer__sns {
    margin-top: 8.3333333333vw;
  }
}
@media screen and (min-width: 1200px) {
  :lang(en) .onlineshop .footer__sns {
    margin-top: 100px;
  }
}
:lang(en) .header__cart a {
  width: 29.3333333333vw;
  background: #403f41;
  background-image: none;
  background-position: inherit;
  background-repeat: inherit;
  background-size: inherit;
  text-indent: 0;
  white-space: nowrap;
  overflow: hidden;
  font-size: 18px;
  font-size: 4.8vw;
}
:lang(en) .header__cart a i {
  position: relative;
  top: -0.2666666667vw;
  display: inline-block;
  margin-left: 1em;
  font-size: 10px;
  font-size: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  :lang(en) .header__cart a {
    width: 11.6666666667vw;
    height: 3.3333333333vw;
    margin-right: 1.6666666667vw;
    font-size: 20px;
    font-size: 1.6666666667vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  :lang(en) .header__cart a {
    font-size: 2rem;
  }
}
@media screen and (min-width: 768px) {
  :lang(en) .header__cart a i {
    top: -0.0833333333vw;
    font-size: 12px;
    font-size: 1vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  :lang(en) .header__cart a i {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 1000px) {
  :lang(en) .header__cart a {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  :lang(en) .header__cart a:hover {
    filter: alpha(opacity=65);
    opacity: 0.6;
  }
}
@media screen and (min-width: 1200px) {
  :lang(en) .header__cart a {
    width: 140px;
    height: 40px;
    margin-right: 20px;
  }
  :lang(en) .header__cart a i {
    top: -1px;
  }
}
:lang(en) .grand-nav__online {
  margin-bottom: 8%;
}
:lang(en) .grand-nav__online--btn {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 58.6666666667vw;
  height: 13.3333333333vw;
  margin: 0 auto;
  background: #3d3d3d;
  color: #f5f5f5;
  font-size: 16px;
  font-size: 4.2666666667vw;
}
:lang(en) .grand-nav__online--btn i {
  position: relative;
  top: 0.6666666667vw;
  font-size: 12px;
  font-size: 3.2vw;
  display: inline-block;
  margin-left: 0.8em;
}
@media screen and (min-width: 768px) {
  :lang(en) .grand-nav__online {
    display: none;
  }
}
:lang(en) .home-content__inner-info p span {
  width: 42%;
}
@media screen and (min-width: 768px) {
  :lang(en) .home-content__inner-info p span {
    width: 45%;
  }
}
:lang(en) .home-content__inner-btn li a i {
  position: relative;
  top: -0.6666666667vw;
  display: inline-block;
  margin-left: 0.6em;
  font-size: 12px;
  font-size: 3.2vw;
}
@media screen and (min-width: 768px) {
  :lang(en) .home-content__inner-btn li a i {
    top: -0.1666666667vw;
    font-size: 12px;
    font-size: 1vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  :lang(en) .home-content__inner-btn li a i {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 1200px) {
  :lang(en) .home-content__inner-btn li a i {
    top: -2px;
  }
}
@media screen and (min-width: 768px) {
  :lang(en) .process .content-title__copy {
    top: -1.6666666667vw;
  }
}
@media screen and (min-width: 1200px) {
  :lang(en) .process .content-title__copy {
    top: -20px;
  }
}
@media screen and (min-width: 768px) {
  :lang(en) .process .process-box:nth-of-type(1) {
    margin-top: 5.8333333333vw;
  }
}
@media screen and (min-width: 1200px) {
  :lang(en) .process .process-box:nth-of-type(1) {
    margin-top: 70px;
  }
}
:lang(en) .process .process-box__ex {
  text-align: left;
}
@media screen and (min-width: 768px) {
  :lang(en) .people .content-title__copy {
    top: -1.6666666667vw;
  }
}
@media screen and (min-width: 1200px) {
  :lang(en) .people .content-title__copy {
    top: -20px;
  }
}
@media screen and (min-width: 768px) {
  :lang(en) .people .people-box:nth-of-type(1) {
    margin-top: 5.8333333333vw;
  }
}
@media screen and (min-width: 1200px) {
  :lang(en) .people .people-box:nth-of-type(1) {
    margin-top: 70px;
  }
}
:lang(en) .people .people-box__ex {
  text-align: left;
}
:lang(en) .people .people-thinking {
  font-size: 15px;
  font-size: 4vw;
  text-align: center;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  :lang(en) .people .people-thinking {
    font-size: 16px;
    font-size: 1.3333333333vw;
    text-align: center;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  :lang(en) .people .people-thinking {
    font-size: 1.6rem;
  }
}
:lang(en) .ceo-info__profile dd {
  text-align: left;
}
:lang(en) .order .contents-btn li a {
  text-decoration: none !important;
}
@media screen and (min-width: 768px) {
  :lang(en) .order .topics .customorder__color {
    width: 33.3333333333vw;
  }
}
@media screen and (min-width: 1200px) {
  :lang(en) .order .topics .customorder__color {
    width: 400px;
  }
}

/*////////////////////////////////////////////////////////////
 TH 2023
////////////////////////////////////////////////////////////*/
:lang(th) {
  /*/////////
  COMMON
  /////////*/
  /*/////////
  HOME
  /////////*/
  /*/////////
  PROCESS
  /////////*/
  /*/////////
  PEOPLE
  /////////*/
  /*/////////
  ORDER
  /////////*/
}
:lang(th) .home-content {
  font-family: "Noto Serif Thai", serif;
}
:lang(th) .home-content__inner-dscr {
  text-align: left;
}
@media screen and (min-width: 768px) {
  :lang(th) .home-content__inner-dscr--center {
    text-align: center;
  }
}
:lang(th) .concept-units__dscr {
  text-align: left;
}
@media screen and (min-width: 768px) {
  :lang(th) .concept-units__dscr {
    text-align: center;
  }
}
:lang(th) .main {
  font-family: "Noto Serif Thai", serif;
}
:lang(th) .onlineshop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}
:lang(th) .onlineshop .footer {
  margin-top: auto;
}
:lang(th) .onlineshop .footer__sns {
  margin-top: 26.6666666667vw;
}
@media screen and (min-width: 768px) {
  :lang(th) .onlineshop .footer__sns {
    margin-top: 8.3333333333vw;
  }
}
@media screen and (min-width: 1200px) {
  :lang(th) .onlineshop .footer__sns {
    margin-top: 100px;
  }
}
:lang(th) .header__cart a {
  width: 29.3333333333vw;
  background: #403f41;
  background-image: none;
  background-position: inherit;
  background-repeat: inherit;
  background-size: inherit;
  text-indent: 0;
  white-space: nowrap;
  overflow: hidden;
  font-size: 18px;
  font-size: 4.8vw;
}
:lang(th) .header__cart a i {
  position: relative;
  top: -0.2666666667vw;
  display: inline-block;
  margin-left: 1em;
  font-size: 10px;
  font-size: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  :lang(th) .header__cart a {
    width: 11.6666666667vw;
    height: 3.3333333333vw;
    margin-right: 1.6666666667vw;
    font-size: 20px;
    font-size: 1.6666666667vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  :lang(th) .header__cart a {
    font-size: 2rem;
  }
}
@media screen and (min-width: 768px) {
  :lang(th) .header__cart a i {
    top: -0.0833333333vw;
    font-size: 12px;
    font-size: 1vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  :lang(th) .header__cart a i {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 1000px) {
  :lang(th) .header__cart a {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  :lang(th) .header__cart a:hover {
    filter: alpha(opacity=65);
    opacity: 0.6;
  }
}
@media screen and (min-width: 1200px) {
  :lang(th) .header__cart a {
    width: 140px;
    height: 40px;
    margin-right: 20px;
  }
  :lang(th) .header__cart a i {
    top: -1px;
  }
}
:lang(th) .grand-nav__online {
  margin-bottom: 8%;
}
:lang(th) .grand-nav__online--btn {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 58.6666666667vw;
  height: 13.3333333333vw;
  margin: 0 auto;
  background: #3d3d3d;
  color: #f5f5f5;
  font-size: 16px;
  font-size: 4.2666666667vw;
}
:lang(th) .grand-nav__online--btn i {
  position: relative;
  top: 0.6666666667vw;
  font-size: 12px;
  font-size: 3.2vw;
  display: inline-block;
  margin-left: 0.8em;
}
@media screen and (min-width: 768px) {
  :lang(th) .grand-nav__online {
    display: none;
  }
}
:lang(th) .home-content__inner-info p span {
  width: 42%;
}
@media screen and (min-width: 768px) {
  :lang(th) .home-content__inner-info p span {
    width: 45%;
  }
}
:lang(th) .home-content__inner-btn li a i {
  position: relative;
  top: -0.6666666667vw;
  display: inline-block;
  margin-left: 0.6em;
  font-size: 12px;
  font-size: 3.2vw;
}
@media screen and (min-width: 768px) {
  :lang(th) .home-content__inner-btn li a i {
    top: -0.1666666667vw;
    font-size: 12px;
    font-size: 1vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  :lang(th) .home-content__inner-btn li a i {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 1200px) {
  :lang(th) .home-content__inner-btn li a i {
    top: -2px;
  }
}
:lang(th) .process .process-box__ex {
  text-align: left;
}
:lang(th) .people .people-box__ex {
  text-align: left;
}
:lang(th) .people .people-thinking {
  font-size: 16px;
  font-size: 4.2666666667vw;
  text-align: center;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  :lang(th) .people .people-thinking {
    font-size: 20px;
    font-size: 1.6666666667vw;
    text-align: center;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  :lang(th) .people .people-thinking {
    font-size: 2rem;
  }
}
:lang(th) .ceo-info__profile dd {
  text-align: left;
}
:lang(th) .order .contents-btn li a {
  text-decoration: none !important;
}
@media screen and (min-width: 768px) {
  :lang(th) .order .topics .customorder__color {
    width: 33.3333333333vw;
  }
}
@media screen and (min-width: 1200px) {
  :lang(th) .order .topics .customorder__color {
    width: 400px;
  }
}