@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/* ======================================================================
 common
====================================================================== */
* {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  font-size: 16px;
  color: #333;
  letter-spacing: 0.025em;
}

@media screen and (max-width: 779px) {
  body {
    font-size: 13px;
  }
}

b, strong, .bold {
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI semibold", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic", "Segoe UI", Verdana, Meiryo, sans-serif;
}

/* IEだけに適応 */
_:lang(x)::-ms-backdrop, .selector {
  font-family: "Segoe UI", Meiryo, sans-serif;
}

a {
  text-decoration: none;
  color: #333;
}

img {
  vertical-align: bottom;
}

@media screen and (max-width: 779px) {
  img {
    width: 100%;
  }
}

.container {
  width: 1000px;
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 779px) {
  .container {
    width: 92%;
  }
}

.sm {
  display: none !important;
}

@media screen and (max-width: 779px) {
  .sm {
    display: block !important;
  }
  .md {
    display: none !important;
  }
}

.trans {
  opacity: 1;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

@media screen and (max-width: 779px) {
  .trans {
    -webkit-transition: none;
    transition: none;
  }
}

.trans:hover,
.trans:hover img {
  opacity: .6;
}

@media screen and (max-width: 779px) {
  .trans:hover,
  .trans:hover img {
    opacity: 1;
  }
}

main {
  padding-top: 95px;
}

@media screen and (max-width: 779px) {
  main {
    padding-top: 63px;
  }
}

/* iOSでのデフォルトスタイルをリセット */
input, select, textarea, button {
  font-family: "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-size: 16px;
  letter-spacing: 0.05em;
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

input::-webkit-search-decoration, select::-webkit-search-decoration, textarea::-webkit-search-decoration, button::-webkit-search-decoration {
  display: none;
}

input::focus, select::focus, textarea::focus, button::focus {
  outline-offset: -2px;
}

@media screen and (max-width: 779px) {
  input, select, textarea, button {
    font-size: 14px;
  }
}

select::-ms-expand {
  display: none;
}

.sec_btn01 {
  margin: 0 auto;
  border: 1px solid;
  color: #4ca9b3;
  text-align: center;
  display: block;
  font-weight: bold;
  background: #FFF url("https://labo.itembox.design/item/tsuda/img/common/arrow01_r.png") no-repeat 92% 50%;
  background-size: 9px;
  width: 370px;
  height: 70px;
  line-height: 70px;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

@media screen and (max-width: 779px) {
  .sec_btn01 {
    width: 70%;
    height: 50px;
    line-height: 50px;
    background-size: 7px;
  }
}

.sec_btn01:hover {
  background: #4ca9b3 url("https://labo.itembox.design/item/tsuda/img/common/arrow02_r.png") no-repeat 92% 50%;
  background-size: 9px;
  color: #FFF;
}

/* ======================================================================
 header
====================================================================== */
header {
  z-index: 999;
  position: fixed;
  width: 94%;
  top: 0;
  left: 0;
  background: #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 3% 15px;
}

@media screen and (max-width: 779px) {
  header {
    padding: 15px 3% 10px;
  }
}

header .copy {
  font-size: 10px;
  position: absolute;
  z-index: 1;
  top: 5px;
  color: #737373;
}

@media screen and (max-width: 779px) {
  header .copy {
    text-align: center;
    top: 3px;
  }
}

header .logo {
  width: 80px;
  min-width: auto;
}

@media screen and (max-width: 779px) {
  header .logo {
    width: 50px;
  }
}

header .logo a {
  width: 80px;
  display: block;
}

@media screen and (max-width: 779px) {
  header .logo a {
    width: auto;
  }
}

header .menu {
  width: 100%;
}

@media screen and (max-width: 779px) {
  header .menu {
    display: none;
    background: #c1e5e8;
    position: fixed;
    width: 92%;
    top: 63px;
    left: 0;
    padding: 4%;
    height: 100%;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
  }
}

header .menu .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 10px;
}

@media screen and (max-width: 779px) {
  header .menu .list {
    display: block;
    margin-top: 0;
  }
}

header .menu .list > li {
  margin-left: 5%;
}

@media screen and (max-width: 779px) {
  header .menu .list > li {
    margin-left: 0;
    background: #FFF;
  }
}

header .menu .list > li:not(:last-child) {
  margin-bottom: 1px;
}

header .menu .list > li.active > a span:before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

header .menu .list > li.active > a span:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

header .menu .list > li > a, header .menu .list > li .sub_btn {
  display: block;
  font-weight: bold;
  font-size: 14px;
}

@media screen and (max-width: 779px) {
  header .menu .list > li > a, header .menu .list > li .sub_btn {
    position: relative;
    display: block;
    font-size: 15px;
    padding: 17px 15px;
  }
  header .menu .list > li > a span, header .menu .list > li .sub_btn span {
    position: absolute;
    top: 50%;
    right: 4%;
    z-index: 1;
    display: block;
    width: 15px;
    height: 15px;
    margin-top: -7.5px;
  }
}

@media screen and (max-width: 779px) and (max-width: 779px) {
  header .menu .list > li > a span:before, header .menu .list > li > a span:after, header .menu .list > li .sub_btn span:before, header .menu .list > li .sub_btn span:after {
    content: "";
    position: absolute;
    background-color: #4ca9b3;
    -webkit-transition: -webkit-transform 0.2s ease-out;
    transition: -webkit-transform 0.2s ease-out;
    transition: transform 0.2s ease-out;
    transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
  }
}

@media screen and (max-width: 779px) and (max-width: 779px) {
  header .menu .list > li > a span:before, header .menu .list > li .sub_btn span:before {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    margin-left: -1px;
  }
}

@media screen and (max-width: 779px) and (max-width: 779px) {
  header .menu .list > li > a span:after, header .menu .list > li .sub_btn span:after {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    margin-top: -1px;
  }
}

header .menu .list > li > a:after, header .menu .list > li .sub_btn:after {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  content: "";
  display: block;
  background: #4ca9b3;
  width: 0;
  height: 2px;
  margin-top: 10px;
}

@media screen and (max-width: 779px) {
  header .menu .list > li > a:after, header .menu .list > li .sub_btn:after {
    display: none;
  }
}

header .menu .list > li > a:hover:after, header .menu .list > li .sub_btn:hover:after {
  width: 100%;
}

header .menu .list > li .sub_btn {
  position: relative;
  background-size: 10px;
}

header .menu .list > li .sub_btn--open {
  cursor: pointer;
  position: absolute;
  right: -24px;
  top: 0;
  z-index: 1;
}

header .menu .list > li .sub_btn--open img {
  width: 18px;
}

@media screen and (max-width: 779px) {
  header .menu .list > li .sub_btn {
    background: url("https://labo.itembox.design/item/tsuda/img/common/arrow01_d.png") no-repeat 96% 50%;
    background-size: 15px;
  }
}

@media screen and (max-width: 779px) {
  header .menu .list > li .btn {
    background: url("https://labo.itembox.design/item/tsuda/img/common/arrow01_r.png") no-repeat 95% 50%;
    background-size: 9px;
  }
}

header .menu .list .sub_box {
  display: none;
  position: fixed;
  background: #FFF;
  top: 95px;
  left: 10%;
  width: 80%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 2% 3%;
  overflow-y: scroll;
  height: 80vh;
}

@media screen and (max-width: 779px) {
  header .menu .list .sub_box {
    margin-top: 1px;
    position: static;
    width: 100%;
    padding: 0 4% 7%;
    overflow-y: auto;
    height: auto;
  }
}

header .menu .list .sub_box--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 3%;
}

@media screen and (max-width: 779px) {
  header .menu .list .sub_box--list {
    margin-bottom: 7%;
  }
}

header .menu .list .sub_box--item {
  width: 24%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 20px;
}

@media screen and (max-width: 779px) {
  header .menu .list .sub_box--item {
    width: 48%;
    margin-top: 4%;
  }
}

header .menu .list .sub_box--item:not(:nth-child(4n)) {
  margin-right: 1.333%;
}

@media screen and (max-width: 779px) {
  header .menu .list .sub_box--item:not(:nth-child(4n)) {
    margin-right: 0;
  }
}

@media screen and (max-width: 779px) {
  header .menu .list .sub_box--item:not(:nth-child(2n)) {
    margin-right: 4%;
  }
}

header .menu .list .sub_box--ttl {
  font-family: "Playfair Display", serif;
  font-size: 30px;
}

@media screen and (max-width: 779px) {
  header .menu .list .sub_box--ttl {
    font-size: 20px;
  }
}

header .menu .list .sub_box--img {
  width: 35%;
}

header .menu .list .sub_box--img img {
  width: 100%;
}

header .menu .list .sub_box--desc {
  width: 60%;
  line-height: 1.4;
}

header .menu .list .sub_box--copy {
  font-size: 11px;
  margin-bottom: 1em;
  display: none;
}

header .menu .list .sub_box--name {
  font-size: 14px;
  font-weight: bold;
}

@media screen and (max-width: 779px) {
  header .menu .list .sub_box--name {
    font-size: 12px;
  }
}

header .menu .list .sub_box--more {
  /* display: block;
  text-align: right;
  background: url("https://labo.itembox.design/item/tsuda/img/common/arrow01_r.png") no-repeat 100% 50%;
  background-size: 7px; */
  /* padding-right: 13px; */
  display: inline-block;
  margin: 0 0 -1.5em;
  /* background: #c3e5e9; */
  background: #4ca9b3;
  color: #FFF;
  float: right;
  padding: 15px 40px 15px 20px;
  font-weight: bold;
  position: relative;
}
header .menu .list .sub_box--more::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 779px) {
  header .menu .list .sub_box--more {
    margin: 10px 0;
    float: none;
    display: block;
    background: none;
    color: #333;
    padding: 0 10px 0 0;
    text-align: right;
  }
  header .menu .list .sub_box--more::after {
    right: 0;
    width: 5px;
    height: 5px;
    margin-top: -1px;
    border-top: 2px solid #333;
    border-right: 2px solid #333;

  }
}

header .menu .topics {
  margin-top: 25px;
}

header .menu .topics .ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #737373;
  font-size: 9px;
  margin-bottom: 10px;
}

header .menu .topics .ttl span {
  font-family: "Playfair Display", serif;
  color: #333;
  font-size: 20px;
  margin-right: 1em;
}

header .menu .topics .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

header .menu .topics .list a {
  position: relative;
  width: 49.8%;
  height: 55px;
  background: #FFF;
  margin-bottom: 1px;
}

header .menu .topics .list a:not(:nth-child(2n)) {
  margin-right: 1px;
}

header .menu .topics .list a span {
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  position: absolute;
  top: 50%;
  left: 0;
  left: 4%;
  line-height: 1.3;
  font-size: 13px;
}

header .menu .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 25px;
}

header .menu .link a {
  display: block;
  width: 50%;
  font-size: 12px;
  margin-bottom: 10px;
}

header .box {
  position: absolute;
  right: 20px;
  top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 779px) {
  header .box {
    right: 4%;
    top: 15px;
  }
}

header .box a {
  position: relative;
  padding-left: 20px;
}

@media screen and (max-width: 779px) {
  header .box a {
    padding: 0 7px;
    width: 50px;
  }
}

header .box a .count {
  z-index: 9;
  position: absolute;
  top: -5px;
  right: 0;
  background: #da3955;
  border: 2px solid #FFF;
  border-radius: 18px;
  width: 18px;
  height: 18px;
}

@media screen and (max-width: 779px) {
  header .box a .count {
    right: 5px;
  }
}

header .box a .count span {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  color: #FFF;
  font-size: 10px;
}

header .box .menu_btn {
  width: 31px;
  padding-left: 10px;
}

.header_info {
  background: #4ca9b3;
  color: #FFF;
  text-align: center;
  padding: 10px 0;
}

@media screen and (max-width: 779px) {
  .header_info {
    padding: 1%;
  }
}

.header_info .txt {
  line-height: 1.5;
}

.header_info .txt a {
  color: #FFF;
  font-size: 14px;
}

@media screen and (max-width: 779px) {
  .header_info .txt a {
    display: block;
    font-size: 10px;
  }
}

.header_info .txt a span {
  color: #4ca9b3;
  background: #fff;
  padding: 1px 5px;
  margin: 0 .25em;
}

.overlay {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 99;
}

/* ======================================================================
 footer
====================================================================== */
footer .bnr {
  background: #FFF;
  padding: 40px 0 20px;
}

@media screen and (max-width: 779px) {
  footer .bnr {
    padding: 7% 0;
  }
}

footer .bnr .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 845px;
}

@media screen and (max-width: 779px) {
  footer .bnr .container {
    width: 92%;
  }
}

footer .bnr .container a {
  margin-bottom: 20px;
}

@media screen and (max-width: 779px) {
  footer .bnr .container a {
    margin-bottom: 3%;
  }
}

footer .bnr .container a:not(:nth-child(2n)) {
  margin-right: 205px;
}

@media screen and (max-width: 779px) {
  footer .bnr .container a:not(:nth-child(2n)) {
    margin-right: 0;
  }
}

footer .menu {
  line-height: 1.3;
  padding: 30px 0 60px;
}

@media screen and (max-width: 779px) {
  footer .menu {
    padding: 5% 0;
  }
}

footer .menu .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

footer .menu .container a {
  color: #737373;
}

footer .menu .container .box {
  width: 25%;
}

@media screen and (max-width: 779px) {
  footer .menu .container .box {
    width: 90%;
    margin: 0 auto;
  }
}

footer .menu .container .box:first-child {
  width: 50%;
}

footer .menu .container .box:first-child .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

footer .menu .container .box:first-child .link a {
  width: 50%;
}

footer .menu .container .box:last-child {
  margin-top: 15px;
}

@media screen and (max-width: 779px) {
  footer .menu .container .box:last-child {
    margin-top: 0;
  }
}

footer .menu .container .box .ttl {
  display: block;
  font-weight: bold;
  font-size: 12px;
  margin: 20px 0 10px;
}

@media screen and (max-width: 779px) {
  footer .menu .container .box .link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -webkit-box-pack: center;
            justify-content: center;
    -ms-flex-pack: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

footer .menu .container .box .link a {
  display: block;
  margin-top: 5px;
  font-size: 10px;
}

@media screen and (max-width: 779px) {
  footer .menu .container .box .link a {
    margin-top: 2%;
    padding: 0 0.5em;
  }
  footer .menu .container .box .link a:not(:last-child) {
    border-right: 1px solid #c0bfbf;
  }
}

footer .copy {
  text-align: center;
  color: #737373;
  font-size: 10px;
  padding: 30px 0;
}

@media screen and (max-width: 779px) {
  footer .copy {
    border-top: 1px solid #eef3f3;
    line-height: 1.5;
    padding: 4% 0 7%;
  }
}

footer .sns .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 50px;
}

@media screen and (max-width: 779px) {
  footer .sns .container {
    padding-top: 7%;
  }
}

footer .sns .container a {
  text-align: center;
  width: 60px;
  height: 60px;
  display: block;
  margin: 0 30px;
  border: 1px solid;
  border-radius: 50%;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

@media screen and (max-width: 779px) {
  footer .sns .container a {
    margin: 0 3%;
    width: 40px;
    height: 40px;
  }
}

footer .sns .container a.tw {
  color: #55acee;
}

footer .sns .container a.tw:hover {
  color: #FFF;
  background: #55acee;
}

footer .sns .container a.insta {
  color: #c6549b;
}

footer .sns .container a.insta:hover {
  color: #FFF;
  background: #c6549b;
}

footer .sns .container a.fb {
  color: #3b5998;
}

footer .sns .container a.fb:hover {
  color: #FFF;
  background: #3b5998;
}

footer .sns .container a.line {
  color: #00c300;
}

footer .sns .container a.line:hover {
  color: #FFF;
  background: #00c300;
}

footer .sns .container a.youtube {
  color: #f00;
}

footer .sns .container a.youtube:hover {
  color: #FFF;
  background: #f00;
}

footer .sns .container a i {
  font-size: 40px;
  line-height: 60px;
}

@media screen and (max-width: 779px) {
  footer .sns .container a i {
    font-size: 25px;
    line-height: 40px;
  }
}

footer .about {
  background: #4ca9b3;
  padding: 50px 0;
}

@media screen and (max-width: 779px) {
  footer .about {
    padding: 4% 0;
  }
}

footer .about .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 779px) {
  footer .about .list {
    display: block;
  }
}

footer .about .list li {
  position: relative;
  text-align: center;
  background: #FFF;
  width: 435px;
  height: 300px;
  padding: 20px;
}

@media screen and (max-width: 779px) {
  footer .about .list li {
    width: 92%;
    height: auto;
    padding: 4%;
  }
}

footer .about .list li:not(:nth-child(2n)) {
  margin-right: 50px;
}

@media screen and (max-width: 779px) {
  footer .about .list li:not(:nth-child(2n)) {
    margin: 0 0 4%;
  }
}

footer .about .list li .ttl {
  font-weight: bold;
  font-size: 18px;
  margin: 10px 0 20px;
}

@media screen and (max-width: 779px) {
  footer .about .list li .ttl {
    font-size: 16px;
    margin: 2% 0 4%;
  }
}

footer .about .list li .txt {
  line-height: 1.5;
  font-size: 14px;
}

@media screen and (max-width: 779px) {
  footer .about .list li .txt {
    font-size: 12px;
    margin-bottom: 4%;
  }
}

footer .about .list li .img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 10px 0 20px;
}

@media screen and (max-width: 779px) {
  footer .about .list li .img {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -4% 4%;
  }
}

footer .about .list li .img img {
  height: 30px;
}

@media screen and (max-width: 779px) {
  footer .about .list li .img img {
    width: auto;
    margin-top: 4%;
  }
}

footer .about .list li .img img:not(:last-child) {
  margin-right: 10px;
}

footer .about .list li .btn {
  font-weight: bold;
  display: block;
  border-radius: 5px;
  color: #4ca9b3;
  border: 1px solid;
  width: 238px;
  height: 38px;
  line-height: 38px;
  position: absolute;
  bottom: 20px;
  left: 50%;
  margin-left: -119px;
}

@media screen and (max-width: 779px) {
  footer .about .list li .btn {
    position: static;
    margin: 0 auto;
  }
}

#gototop {
  display: none;
  cursor: pointer;
  position: fixed;
  z-index: 999;
  bottom: 40px;
  right: 30px;
  width: 50px;
  height: 50px;
}

@media screen and (max-width: 779px) {
  #gototop {
    width: 35px;
    height: 35px;
    right: 10px;
    bottom: 25px;
  }
}

#gototop img {
  width: 100%;
}

.pickup_bnr, .pickup_bnr_list {
  margin-bottom: 20px;
}

@media screen and (max-width: 779px) {
  .pickup_bnr, .pickup_bnr_list {
    margin-bottom: 4%;
  }
}

.pickup_bnr_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.pickup_bnr_list a:not(:nth-child(2n)) {
  margin-right: 20px;
}

@media screen and (max-width: 779px) {
  .pickup_bnr_list a:not(:nth-child(2n)) {
    margin: 0 0 4%;
  }
}

/* ======================================================================
 top
====================================================================== */
.top_ttl {
  text-align: center;
  margin-bottom: 50px;
}

@media screen and (max-width: 779px) {
  .top_ttl {
    margin-bottom: 5%;
  }
}

.top_ttl img {
  width: 70px;
}

@media screen and (max-width: 779px) {
  .top_ttl img {
    width: 60px;
  }
}

.top_ttl .en {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  margin: 15px 0 10px;
}

@media screen and (max-width: 779px) {
  .top_ttl .en {
    font-size: 33px;
    margin: 10px 0;
  }
}

.top_ttl span {
  display: block;
}

.top_ttl .ja {
  font-weight: bold;
  color: #737373;
  letter-spacing: 0.025em;
  font-size: 12px;
}

.top_kv img {
  width: 100%;
}

.top_kv .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-pack: center;
  position: absolute;
  width: 100%;
  z-index: 9;
  bottom: 20px;
}

@media screen and (max-width: 779px) {
  .top_kv .slick-dots {
    bottom: 25px;
  }
}

.top_kv .slick-dots li {
  margin: 0 10px;
}

@media screen and (max-width: 779px) {
  .top_kv .slick-dots li {
    margin: 0 5px;
  }
}

.top_kv .slick-dots li button {
  cursor: pointer;
  width: 10px;
  height: 10px;
  font-size: 0;
  border-radius: 10px;
  background: #bfbfc2;
}

@media screen and (max-width: 779px) {
  .top_kv .slick-dots li button {
    width: 7px;
    height: 7px;
  }
}

.top_kv .slick-dots li.slick-active button {
  background: #7ac0c1;
}

.top_pickup {
  background: #c8e5e7;
  padding: 50px 0 70px;
}

@media screen and (max-width: 779px) {
  .top_pickup {
    padding: 7% 0;
  }
}

.top_pickup .container > .txt {
  text-align: center;
  font-size: 18px;
  margin-bottom: 50px;
}

@media screen and (max-width: 779px) {
  .top_pickup .container > .txt {
    line-height: 1.5;
    margin-bottom: 5%;
  }
}

.top_topics {
  background: #e2f6f5;
  padding: 50px 0 150px;
}

@media screen and (max-width: 779px) {
  .top_topics {
    padding: 7% 0 25%;
  }
}

.top_topics .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 779px) {
  .top_topics .list {
    margin-top: 10%;
  }
}

.top_topics .list .box {
  position: relative;
  width: 310px;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 779px) {
  .top_topics .list .box {
    width: 165px;
    margin: 0 7px;
  }
}

.top_topics .list .box:not(:last-child) {
  margin-right: 35px;
}

@media screen and (max-width: 779px) {
  .top_topics .list .box:not(:last-child) {
    margin-right: 7px;
  }
}

.top_topics .list .box .badge {
  font-family: "Playfair Display", serif;
  position: absolute;
  z-index: 9;
  top: 20px;
  left: 15px;
  text-align: center;
  font-size: 34px;
}

@media screen and (max-width: 779px) {
  .top_topics .list .box .badge {
    font-size: 17px;
    top: 5px;
    left: 5px;
  }
}

.top_topics .list .box .badge.rank01 {
  color: #bca468;
}

.top_topics .list .box .badge.rank02 {
  color: #93918c;
}

.top_topics .list .box .badge.rank03 {
  color: #792913;
}

.top_topics .list .box .badge img {
  display: block;
  width: 26px;
}

@media screen and (max-width: 779px) {
  .top_topics .list .box .badge img {
    width: 14px;
  }
}

.top_topics .list .box .img {
  margin-bottom: 10px;
  background: #FFF;
  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;
  flex: 1;
}

@media screen and (max-width: 779px) {
  .top_topics .list .box .img {
    /* height: 50%; */
  }
}

.top_topics .list .box .img img {
  width: 100%;
}

.top_topics .list .box .tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  font-size: 11px;
  height: 20px;
  line-height: 20px;
  margin-bottom: 10px;
}

@media screen and (max-width: 779px) {
  .top_topics .list .box .tag {
    height: 17px;
    line-height: 17px;
    font-size: 10px;
  }
}

.top_topics .list .box .tag p {
  margin-right: 5px;
}

.top_topics .list .box .tag .free {
  border: 1px solid;
  color: #4ca9b3;
  background: #FFF;
  padding: 0px 7px;
}

.top_topics .list .box .tag .new {
  border: 1px solid #da3955;
  background: #da3955;
  color: #FFF;
  width: 60px;
}

.top_topics .list .box .ttl {
  font-weight: bold;
  line-height: 1.7;
  margin-bottom: 10px;
}

@media screen and (max-width: 779px) {
  .top_topics .list .box .ttl {
    line-height: 1.3;
    font-size: 14px;
  }
}

.top_topics .list .box .ttl .price {
  font-weight: normal;
  margin-left: 20px;
}

.top_topics .list .box .txt {
  color: #737373;
  line-height: 1.7;
  font-size: 14px;
  margin-bottom: 10px;
}

@media screen and (max-width: 779px) {
  .top_topics .list .box .txt {
    /* display: none; */
  }
}

.top_topics .list .box .price {
  line-height: 1.7;
  font-weight: bold;
}

@media screen and (max-width: 779px) {
  .top_topics .list .box .price {
    font-size: 12px;
    line-height: 1.3;
  }
}

.top_topics .sec_btn01 {
  margin-top: 150px;
}

.top_topics .box_bottom {
  background-color: #ffffff;
  padding: 20px 20px 40px 20px;
  margin-top: -10px;
  position: relative;
  flex: 1;
  height: 100%;
  min-height: 0%;
}

.top_topics .box_bottom::before {
  content: '';
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 1px;
  background-color: #a0a0a0;
}

.top_topics .box_bottom::after {
  content: '';
  position: absolute;
  bottom: 26px;
  right: 18px;
  width: 17px;
  height: 1px;
  background-color: #a0a0a0;
  transform: rotate(45deg);
}

.top_topics .bnr {
  display: block;
  margin-top: 50px;
}

@media screen and (max-width: 779px) {
  .top_topics .bnr {
    margin-top: 7%;
  }
}

.top_topics .slick_topics .slick-track {
  display: flex;
}
.top_topics .slick_topics .slick-slide {
  height: auto !important;
}

@media screen and (max-width: 779px) {
  .top_topics .slick_topics .slick-slide {
    padding: 0 4.6vw;
  }
}

.top_topics .container .slick_topics .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-pack: center;
  height: 20px;
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 779px) {
  .top_topics .container .slick_topics .slick-dots {
    bottom: -50px;
  }
}

.top_topics .container .slick_topics .slick-dots li {
  margin: 0 10px;
}

@media screen and (max-width: 779px) {
  .top_topics .container .slick_topics .slick-dots li {
    margin: 0 5px;
  }
}

.top_topics .container .slick_topics .slick-dots li button {
  cursor: pointer;
  width: 12px;
  height: 12px;
  font-size: 0;
  border-radius: 10px;
  background: #bfbfc2;
}

@media screen and (max-width: 779px) {
  .top_topics .container .slick_topics .slick-dots li button {
    width: 10px;
    height: 10px;
  }
}

.top_topics .container .slick_topics .slick-dots li.slick-active button {
  background: #7ac0c1;
}

.top_topics .container .slick_topics .slick-arrow {
  cursor: pointer;
  position: absolute;
  bottom: -98px;
  z-index: 9;
}

@media screen and (max-width: 779px) {
  .top_topics .container .slick_topics .slick-arrow {
    bottom: -58px;
  }
}

.top_topics .container .slick_topics .slick-arrow.slider-next {
  right: 30%;
}

@media screen and (max-width: 779px) {
  .top_topics .container .slick_topics .slick-arrow.slider-next {
    right: 10%;
  }
}

.top_topics .container .slick_topics .slick-arrow.slider-prev {
  left: 30%;
}

@media screen and (max-width: 779px) {
  .top_topics .container .slick_topics .slick-arrow.slider-prev {
    left: 10%;
  }
}

.top_topics .container .slick_topics .slick-arrow img {
  width: 46px;
}

@media screen and (max-width: 779px) {
  .top_topics .container .slick_topics .slick-arrow img {
    width: 35px;
  }
}

.top_about {
  background: url("https://labo.itembox.design/item/tsuda/img/top/bg01.jpg") no-repeat 0 50%;
  padding: 50px 0 100px;
}

@media screen and (max-width: 779px) {
  .top_about {
    padding: 7% 0 14%;
    background: url("https://labo.itembox.design/item/tsuda/img/top/sm/bg01.jpg") no-repeat 0 0;
    background-size: 100%;
  }
}

.top_about .box {
  line-height: 1.9;
}

.top_about .box::after {
  content: "";
  display: block;
  clear: both;
}

@media screen and (max-width: 779px) {
  .top_about .box {
    line-height: 1.7;
    margin-top: 10%;
  }
}

.top_about .box > img, .top_about .box > a {
  display: block;
  float: left;
  margin-right: 40px;
}

@media screen and (max-width: 779px) {
  .top_about .box > img, .top_about .box > a {
    width: 45%;
    margin-right: 3%;
  }
}

.top_about .box .txt {
  margin-bottom: 2em;
}

@media screen and (max-width: 779px) {
  .top_about .box .txt {
    margin-bottom: 0;
  }
}

.top_about .name {
  text-align: right;
  font-size: 14px;
  margin-bottom: 45px;
}

@media screen and (max-width: 779px) {
  .top_about .name {
    text-align: left;
    font-size: 10px;
    margin: 7% 0 10%;
    line-height: 1.3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -moz-align-items: center;
    -ms-align-items: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -webkit-box-pack: center;
            justify-content: center;
    -ms-flex-pack: center;
  }
}

.top_about .name img {
  vertical-align: middle;
  width: 180px;
  margin-left: 20px;
}

@media screen and (max-width: 779px) {
  .top_about .name img {
    width: 40%;
    margin-left: 3%;
  }
}

.top_bestcosme {
  background: #e2f6f5;
  padding: 50px 0 80px;
}

@media screen and (max-width: 779px) {
  .top_bestcosme {
    padding: 7% 0 14%;
  }
}

.top_bestcosme .container > .txt {
  text-align: center;
  font-size: 18px;
}

@media screen and (max-width: 779px) {
  .top_bestcosme .container > .txt {
    font-size: 13px;
    line-height: 1.5;
  }
}

.top_bestcosme .container .slick_bestcosme {
  margin: 70px 0 0;
}

@media screen and (max-width: 779px) {
  .top_bestcosme .container .slick_bestcosme {
    margin: 5% 0 0;
  }
}

.top_bestcosme .container .slick_bestcosme .box {
  position: relative;
  width: 220px;
  margin: 0 20px;
}

@media screen and (max-width: 779px) {
  .top_bestcosme .container .slick_bestcosme .box {
    width: 165px;
    margin: 0 7px;
  }
}

.top_bestcosme .container .slick_bestcosme .box .badge {
  z-index: 9;
  position: absolute;
  top: 15px;
  left: 15px;
}

@media screen and (max-width: 779px) {
  .top_bestcosme .container .slick_bestcosme .box .badge {
    width: 38px;
    top: 6px;
    left: 6px;
  }
}

.top_bestcosme .container .slick_bestcosme .box .img {
  margin-bottom: 10px;
}

.top_bestcosme .container .slick_bestcosme .box .img img {
  width: 100%;
}

.top_bestcosme .container .slick_bestcosme .box .tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  font-size: 11px;
  height: 20px;
  line-height: 20px;
  margin-bottom: 10px;
}

@media screen and (max-width: 779px) {
  .top_bestcosme .container .slick_bestcosme .box .tag {
    height: 17px;
    line-height: 17px;
    font-size: 10px;
  }
}

.top_bestcosme .container .slick_bestcosme .box .tag p {
  margin-right: 5px;
}

.top_bestcosme .container .slick_bestcosme .box .tag .free {
  border: 1px solid;
  color: #4ca9b3;
  background: #FFF;
  width: 60px;
}

.top_bestcosme .container .slick_bestcosme .box .tag .new {
  border: 1px solid #da3955;
  background: #da3955;
  color: #FFF;
  width: 60px;
}

.top_bestcosme .container .slick_bestcosme .box .ttl {
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 10px;
}

@media screen and (max-width: 779px) {
  .top_bestcosme .container .slick_bestcosme .box .ttl {
    font-size: 15px;
  }
}

.top_bestcosme .container .slick_bestcosme .box .txt {
  color: #737373;
  line-height: 1.5;
  font-size: 12px;
  margin-bottom: 10px;
}

@media screen and (max-width: 779px) {
  .top_bestcosme .container .slick_bestcosme .box .txt {
    display: none;
  }
}

.top_bestcosme .container .slick_bestcosme .box .price {
  font-weight: bold;
  font-size: 14px;
}

@media screen and (max-width: 779px) {
  .top_bestcosme .container .slick_bestcosme .box .price {
    font-size: 12px;
  }
}

.top_bestcosme .container .slick_bestcosme .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-pack: center;
}

.top_bestcosme .container .slick_bestcosme .slick-dots li {
  margin: 0 10px;
}

@media screen and (max-width: 779px) {
  .top_bestcosme .container .slick_bestcosme .slick-dots li {
    margin: 0 5px;
  }
}

.top_bestcosme .container .slick_bestcosme .slick-dots li button {
  cursor: pointer;
  width: 12px;
  height: 12px;
  font-size: 0;
  border-radius: 10px;
  background: #bfbfc2;
}

@media screen and (max-width: 779px) {
  .top_bestcosme .container .slick_bestcosme .slick-dots li button {
    width: 10px;
    height: 10px;
  }
}

.top_bestcosme .container .slick_bestcosme .slick-dots li.slick-active button {
  background: #7ac0c1;
}

.top_bestcosme .container .slick_bestcosme .slick-arrow {
  cursor: pointer;
  position: absolute;
  bottom: -18px;
  z-index: 9;
}

@media screen and (max-width: 779px) {
  .top_bestcosme .container .slick_bestcosme .slick-arrow {
    bottom: -13px;
  }
}

.top_bestcosme .container .slick_bestcosme .slick-arrow.slider-next {
  right: 30%;
}

@media screen and (max-width: 779px) {
  .top_bestcosme .container .slick_bestcosme .slick-arrow.slider-next {
    right: 10%;
  }
}

.top_bestcosme .container .slick_bestcosme .slick-arrow.slider-prev {
  left: 30%;
}

@media screen and (max-width: 779px) {
  .top_bestcosme .container .slick_bestcosme .slick-arrow.slider-prev {
    left: 10%;
  }
}

.top_bestcosme .container .slick_bestcosme .slick-arrow img {
  width: 46px;
}

@media screen and (max-width: 779px) {
  .top_bestcosme .container .slick_bestcosme .slick-arrow img {
    width: 35px;
  }
}

.top_bestcosme .container .slick_bestcosme .slick-list {
  margin-bottom: 60px;
}

@media screen and (max-width: 779px) {
  .top_bestcosme .container .slick_bestcosme .slick-list {
    margin-bottom: 10%;
  }
}

.top_commitment {
  text-align: center;
  background: url("https://labo.itembox.design/item/tsuda/img/top/bg02.jpg") no-repeat 0 50%;
  padding: 50px 0;
}

@media screen and (max-width: 779px) {
  .top_commitment {
    text-align: left;
    background: url("https://labo.itembox.design/item/tsuda/img/top/sm/bg02.jpg") no-repeat 0 0;
    background-size: 100%;
    padding: 7% 0;
  }
}

@media screen and (max-width: 779px) {
  .top_commitment .top_ttl {
    margin-bottom: 12%;
  }
}

.top_commitment .txt {
  line-height: 2.5;
  margin-bottom: 4em;
}

@media screen and (max-width: 779px) {
  .top_commitment .txt {
    line-height: 1.7;
    margin-bottom: 2em;
  }
}

.top_commitment .container iframe {
  margin: 0 auto 3rem;
}

@media screen and (max-width: 779px) {
  .top_commitment .container iframe {
    margin: 0 auto 10%;
    width: 100%;
    height: 230px;
  }
}

.top_ranking {
  background: #fafafa;
  padding: 50px 0 100px;
}

@media screen and (max-width: 779px) {
  .top_ranking {
    padding: 7% 0 14%;
  }
}

.top_ranking .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 779px) {
  .top_ranking .list {
    margin-top: 10%;
  }
}

.top_ranking .list .box {
  position: relative;
  width: 310px;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 779px) {
  .top_ranking .list .box {
    width: 165px;
    margin: 0 7px;
  }
}

.top_ranking .list .box:not(:last-child) {
  margin-right: 35px;
}

@media screen and (max-width: 779px) {
  .top_ranking .list .box:not(:last-child) {
    margin-right: 7px;
  }
}

.top_ranking .list .box .badge {
  font-family: "Playfair Display", serif;
  position: absolute;
  z-index: 9;
  top: 20px;
  left: 15px;
  text-align: center;
  font-size: 34px;
}

@media screen and (max-width: 779px) {
  .top_ranking .list .box .badge {
    font-size: 17px;
    top: 5px;
    left: 5px;
  }
}

.top_ranking .list .box .badge.rank01 {
  color: #bca468;
}

.top_ranking .list .box .badge.rank02 {
  color: #93918c;
}

.top_ranking .list .box .badge.rank03 {
  color: #792913;
}

.top_ranking .list .box .badge img {
  display: block;
  width: 26px;
}

@media screen and (max-width: 779px) {
  .top_ranking .list .box .badge img {
    width: 14px;
  }
}

.top_ranking .list .box .img {
  margin-bottom: 10px;
  background: #FFF;
  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: 310px;
}

@media screen and (max-width: 779px) {
  .top_ranking .list .box .img {
    height: 50%;
  }
}

.top_ranking .list .box .img img {
  width: 90%;
}

.top_ranking .list .box .tag {
  /* display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; */
  /* text-align: center; */
  font-size: 11px;
  height: 20px;
  line-height: 20px;
  margin-bottom: 10px;
}

@media screen and (max-width: 779px) {
  .top_ranking .list .box .tag {
    height: auto;
    line-height: 17px;
    font-size: 10px;
    margin-bottom: 0;
  }
}

.top_ranking .list .box .tag p {
  margin-right: 5px;
}

.top_ranking .list .box .tag .free {
  border: 1px solid;
  color: #4ca9b3;
  background: #FFF;
  padding: 0 7px;
}
.top_ranking .list .box .tag .free {
  margin-right: 4px;
  display: inline-block;
  margin-bottom: 5px;
}

.top_ranking .list .box .tag .new {
  border: 1px solid #da3955;
  background: #da3955;
  color: #FFF;
  width: 60px;
}

.top_ranking .list .box .ttl {
  font-weight: bold;
  line-height: 1.7;
  margin-bottom: 10px;
}

@media screen and (max-width: 779px) {
  .top_ranking .list .box .ttl {
    line-height: 1.3;
    font-size: 14px;
  }
}

.top_ranking .list .box .ttl .price {
  font-weight: normal;
}

@media screen and (max-width: 779px) {
  .top_ranking .list .box .ttl .price {
    margin-left: 0;
  }
}

.top_ranking .list .box .ttl .price .bold {
  font-weight: bold;
  color: #4ca9b3;
}

.top_ranking .list .box .ttl .price .tax {
  font-size: 14px;
  font-weight: normal;
}

@media screen and (max-width: 779px) {
  .top_ranking .list .box .ttl .price .tax {
    font-size: 10px;
  }
}

.top_ranking .list .box .txt {
  color: #737373;
  line-height: 1.7;
  font-size: 14px;
  margin-bottom: 10px;
}

@media screen and (max-width: 779px) {
  .top_ranking .list .box .txt {
    display: none;
  }
}

.top_ranking .list .box .price {
  line-height: 1.7;
  font-weight: bold;
}

@media screen and (max-width: 779px) {
  .top_ranking .list .box .price {
    font-size: 12px;
    line-height: 1.3;
  }
}

.top_ranking .sec_btn01 {
  margin-top: 150px;
}

@media screen and (max-width: 779px) {
  .top_ranking .sec_btn01 {
    margin-top: 150px;
  }
}

.top_ranking .box_bottom {
  background-color: #e6e6e6;
  padding: 20px;
  margin-top: -10px;
  flex: 1;
  height: 100%;
  min-height: 0;
}

.top_ranking .bnr {
  display: block;
  margin-top: 50px;
}

@media screen and (max-width: 779px) {
  .top_ranking .bnr {
    margin-top: 7%;
  }
}

.top_ranking .slick_ranking .slick-track {
  display: flex;
}
.top_ranking .slick_ranking .slick-slide {
  height: auto !important;
}

.top_ranking .container .slick_ranking .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-pack: center;
  height: 20px;
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 779px) {
  .top_ranking .container .slick_ranking .slick-dots {
    bottom: -50px;
  }
}

.top_ranking .container .slick_ranking .slick-dots li {
  margin: 0 10px;
}

@media screen and (max-width: 779px) {
  .top_ranking .container .slick_ranking .slick-dots li {
    margin: 0 5px;
  }
}

.top_ranking .container .slick_ranking .slick-dots li button {
  cursor: pointer;
  width: 12px;
  height: 12px;
  font-size: 0;
  border-radius: 10px;
  background: #bfbfc2;
}

@media screen and (max-width: 779px) {
  .top_ranking .container .slick_ranking .slick-dots li button {
    width: 10px;
    height: 10px;
  }
}

.top_ranking .container .slick_ranking .slick-dots li.slick-active button {
  background: #7ac0c1;
}
@media screen and (max-width: 779px) {
  .top_ranking .sec_btn01 {
    margin-top: 100px;
  }
}

.top_media {
  background: #e7f7f7;
  padding: 70px 0;
}

@media screen and (max-width: 779px) {
  .top_media {
    padding: 7% 0 14%;
  }
}

.top_media .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

@media screen and (max-width: 779px) {
  .top_media .list {
    margin: 10% 0 7%;
    display: block;
  }
}

.top_media .list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
  width: 490px;
}

@media screen and (max-width: 779px) {
  .top_media .list a {
    width: 100%;
    margin-bottom: 3%;
  }
}

.top_media .list a:not(:nth-child(2n)) {
  margin-right: 20px;
}

@media screen and (max-width: 779px) {
  .top_media .list a:not(:nth-child(2n)) {
    margin-right: 0;
  }
}

.top_media .list a:hover .img:before {
  opacity: 1;
}

.top_media .list a .img {
  position: relative;
  width: 80px;
}

@media screen and (max-width: 779px) {
  .top_media .list a .img {
    width: 18%;
  }
}

.top_media .list a .img:before {
  content: "";
  display: block;
  background-color: rgba(51, 51, 51, 0.5);
  background-image: url("https://labo.itembox.design/item/tsuda/img/common/ico_search.png");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.top_media .list a .img img {
  height: auto;
  width: 100%;
}

.top_media .list a .box {
  line-height: 1.7;
  margin-left: 20px;
  width: 470px;
}

@media screen and (max-width: 779px) {
  .top_media .list a .box {
    width: 78%;
    margin-left: 4%;
    line-height: 1.4;
  }
}

.top_media .list a .box .txt {
  overflow: hidden;
  text-overflow: ellipsis;
  height: 3em;
  position: relative;
  padding-right: .5em;
}

.top_media .list a .box .txt :after {
  content: "…";
  position: absolute;
  bottom: 0;
  right: 0;
}

.top_media .list a .box .txt span {
  font-size: inherit !important;
  color: inherit !important;
}

.top_media .list a .box .ttl {
  color: #4ca9b3;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 5px;
}

@media screen and (max-width: 779px) {
  .top_media .list a .box .ttl {
    font-size: 16px;
  }
}

.top_news {
  background: #fff;
  padding: 50px 0;
}

@media screen and (max-width: 779px) {
  .top_news {
    padding: 10% 0 1%;
  }
}

.top_news .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

@media screen and (max-width: 779px) {
  .top_news .container {
    display: block;
  }
}

.top_news .container > * {
  position: relative;
  width: 700px;
}

@media screen and (max-width: 779px) {
  .top_news .container > * {
    width: 100%;
  }
}

.top_news .container > * > .ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
}

@media screen and (max-width: 779px) {
  .top_news .container > * > .ttl {
    margin-bottom: 4%;
  }
}

.top_news .container > * > .ttl .en {
  font-family: "Playfair Display", serif;
  font-size: 32px;
}

@media screen and (max-width: 779px) {
  .top_news .container > * > .ttl .en {
    font-size: 24px;
  }
}

.top_news .container > * > .ttl .ja {
  font-weight: bold;
  font-size: 12px;
  margin-top: 10px;
  margin-left: 15px;
}

@media screen and (max-width: 779px) {
  .top_news .container > * > .ttl .ja {
    font-size: 10px;
    margin-left: 1em;
  }
}

.top_news .container .news {
  /* margin-right: 40px; */
}

@media screen and (max-width: 779px) {
  .top_news .container .news {
    margin: 0 0 10%;
  }
}

.top_news .container .news .list {
  border-top: 1px solid #e8e8e7;
}

.top_news .container .news .list li {
  border-bottom: 1px solid #e8e8e7;
}

.top_news .container .news .list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  padding: 20px 0;
}

@media screen and (max-width: 779px) {
  .top_news .container .news .list li a {
    line-height: 1.3;
  }
}

.top_news .container .news .list li a .date {
  color: #737373;
  margin-right: 2em;
}

.top_news .container .news .more {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  border: 1px solid;
  color: #4ca9b3;
  text-align: center;
  background: #FFF url("https://labo.itembox.design/item/tsuda/img/common/arrow01_r.png") no-repeat 86% 50%;
  background-size: 5px;
  font-size: 14px;
  width: 76px;
  height: 28px;
  line-height: 28px;
}

.top_news .container .news .more:hover {
  color: #FFF;
  background: #4ca9b3 url("https://labo.itembox.design/item/tsuda/img/common/arrow02_r.png") no-repeat 86% 50%;
  background-size: 5px;
}

.top_info {
  background: #e7f7f7;
  padding: 50px 0;
}

@media screen and (max-width: 779px) {
  .top_info {
    padding: 7% 0 14%;
  }
}

.top_info .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

@media screen and (max-width: 779px) {
  .top_info .container {
    display: block;
  }
}

.top_info .container > * {
  position: relative;
  width: 700px;
}

@media screen and (max-width: 779px) {
  .top_info .container > * {
    width: 100%;
  }
}

.top_info .container > * > .ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
          flex-direction: column;
  margin-bottom: 30px;
}

@media screen and (max-width: 779px) {
  .top_info .container > * > .ttl {
    margin-bottom: 4%;
  }
}

.top_info .container > * > .ttl .en {
  font-family: "Playfair Display", serif;
  font-size: 32px;
}

@media screen and (max-width: 779px) {
  .top_info .container > * > .ttl .en {
    font-size: 24px;
  }
}

.top_info .container > * > .ttl .ja {
  font-weight: bold;
  font-size: 12px;
  margin-top: 10px;
}

@media screen and (max-width: 779px) {
  .top_info .container > * > .ttl .ja {
    font-size: 10px;
    margin-left: 1em;
  }
}

.top_info .container .media, .top_info .container .insta {
  background-color: #fff;
  width: 455px;
  padding: 50px 10px;
}

@media screen and (max-width: 779px) {
  .top_info .container .media, .top_info .container .insta {
    width: 100%;
    box-sizing: border-box;
    padding: 7% 10px;
  }
}

.top_info .container .media {
  margin-right: 50px;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 779px) {
  .top_info .container .media {
    margin: 0 0 10%;
  }
}

.top_info .container .media .list {
  display: flex;
}

.top_info .container .media .list .item {
  width: calc(99.9% / 3);
  padding: 0 5px;
  flex-shrink: 0;
}

.top_info .container .media .list li a {

}

@media screen and (max-width: 779px) {
  .top_info .container .media .list li a {

  }
}

.top_info .container .media .list li a .img img {
  width: 100%;
  height: auto;
}

.top_info .container .media .list li a .ttl{
  font-weight: bold;
  margin-top: 15px;
  text-align: center;
  display: block;
}

.top_info .container .media .more {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  border: 1px solid;
  color: #4ca9b3;
  text-align: center;
  background: #FFF url("https://labo.itembox.design/item/tsuda/img/common/arrow01_r.png") no-repeat 86% 50%;
  background-size: 5px;
  font-size: 14px;
  width: 76px;
  height: 28px;
  line-height: 28px;
}

.top_info .container .media .more:hover {
  color: #FFF;
  background: #4ca9b3 url("https://labo.itembox.design/item/tsuda/img/common/arrow02_r.png") no-repeat 86% 50%;
  background-size: 5px;
}

.top_info .container .media .sec_btn01 {
  margin: auto auto 0;
}

@media screen and (max-width: 779px) {
  .top_info .container .media .sec_btn01 {
    margin:  80px auto 0;
  }
}

.top_info .container .slick_media .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-pack: center;
  height: 20px;
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 779px) {
  .top_info .container .slick_media .slick-dots {
    bottom: -50px;
  }
}

.top_info .container .slick_media .slick-dots li {
  margin: 0 10px;
}

@media screen and (max-width: 779px) {
  .top_info .container .slick_media .slick-dots li {
    margin: 0 5px;
  }
}

.top_info .container .slick_media .slick-dots li button {
  cursor: pointer;
  width: 12px;
  height: 12px;
  font-size: 0;
  border-radius: 10px;
  background: #bfbfc2;
}

@media screen and (max-width: 779px) {
  .top_info .container .slick_media .slick-dots li button {
    width: 10px;
    height: 10px;
  }
}

.top_info .container .slick_media .slick-dots li.slick-active button {
  background: #7ac0c1;
}

.top_info .container .insta .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.top_info .container .insta .list li {
  width: 150px;
  margin-bottom: 15px;
}

@media screen and (max-width: 779px) {
  .top_info .container .insta .list li {
    width: 31.33%;
  }
}

.top_info .container .insta .list li:not(:nth-child(3n)) {
  margin-right: 15px;
}

@media screen and (max-width: 779px) {
  .top_info .container .insta .list li:not(:nth-child(3n)) {
    margin-right: 3%;
  }
}

.top_info .container .insta .list li img {
  width: 100%;
}

.top_info .container .insta .sec_btn01 {
  margin-top: 30px;
}

@media screen and (max-width: 779px) {
  .top_info .container .insta .sec_btn01 {
    margin-top: 15px;
  }
}

.emergency {
  margin: 15px 0;
  text-align: center;
  font-weight: bold;
  color: #da3955;
  line-height: 1.5;
}

@media screen and (max-width: 779px) {
  .emergency {
    margin: 3% 0;
  }
}

.emergency a {
  color: #da3955;
  text-decoration: underline;
}

/* ======================================================================
 about
====================================================================== */
.about_ttl {
  text-align: center;
  margin-bottom: 50px;
}

@media screen and (max-width: 779px) {
  .about_ttl {
    margin-bottom: 5%;
  }
}

.about_ttl img {
  width: 70px;
}

@media screen and (max-width: 779px) {
  .about_ttl img {
    width: 60px;
  }
}

.about_ttl .en {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  margin: 0 0 10px;
}

@media screen and (max-width: 779px) {
  .about_ttl .en {
    font-size: 33px;
  }
}

.about_ttl span {
  display: block;
}

.about_ttl .ja {
  font-weight: bold;
  color: #737373;
  letter-spacing: 0.025em;
  font-size: 12px;
}

.about_top {
  padding-top: 70px;
}

@media screen and (max-width: 779px) {
  .about_top {
    padding: 10% 0 7%;
  }
}

@media screen and (max-width: 779px) {
  .about_top .container {
    width: 100%;
  }
}

.about_top .container .box {
  position: relative;
}

@media screen and (max-width: 779px) {
  .about_top .container .box {
    background: url(https://labo.itembox.design/item/tsuda/img/about/sm/img01.jpg) no-repeat 0 0;
    background-size: 100%;
    margin-top: -3%;
  }
}

.about_top .container .box .detail {
  position: absolute;
  bottom: 50px;
  right: 0;
  width: 590px;
}

@media screen and (max-width: 779px) {
  .about_top .container .box .detail {
    position: static;
    width: 100%;
  }
}

.about_top .container .box .detail .profile {
  background-color: rgba(255, 255, 255, 0.83);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(216, 216, 213, 0.4);
          box-shadow: 0px 0px 10px 0px rgba(216, 216, 213, 0.4);
  border-radius: 6px;
  margin-top: 50px;
  padding: 20px;
}

@media screen and (max-width: 779px) {
  .about_top .container .box .detail .profile {
    margin: -20% auto 0;
    width: 84%;
    padding: 6% 4% 4%;
  }
}

.about_top .container .box .detail .profile > .txt {
  font-size: 14px;
  line-height: 1.7;
  padding: 18px 0;
}

@media screen and (max-width: 779px) {
  .about_top .container .box .detail .profile > .txt {
    font-size: 11px;
    line-height: 1.6;
    padding: 4% 0;
  }
}

.about_top .container .box .detail .profile .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.about_top .container .box .detail .profile .list li {
  background-color: rgba(76, 169, 179, 0.11);
  padding: 15px;
  width: 270px;
  border-radius: 4px;
}

@media screen and (max-width: 779px) {
  .about_top .container .box .detail .profile .list li {
    padding: 3%;
    width: 45.5%;
  }
}

.about_top .container .box .detail .profile .list li:last-child {
  width: 248px;
  margin-left: 12px;
}

@media screen and (max-width: 779px) {
  .about_top .container .box .detail .profile .list li:last-child {
    margin-left: 3%;
    width: 45.5%;
  }
}

.about_top .container .box .detail .profile .list li .ttl {
  background: url(https://labo.itembox.design/item/tsuda/img/common/arrow05_b.png) no-repeat 0 50%;
  background-size: 16px;
  font-weight: bold;
  font-size: 15px;
  padding-left: 25px;
  margin-bottom: 10px;
}

@media screen and (max-width: 779px) {
  .about_top .container .box .detail .profile .list li .ttl {
    font-size: 12px;
    padding-left: 15px;
    margin-bottom: 3%;
    background-size: 10px;
  }
}

.about_top .container .box .detail .profile .list li .txt {
  font-size: 11px;
  line-height: 1.9;
}

@media screen and (max-width: 779px) {
  .about_top .container .box .detail .profile .list li .txt {
    font-size: 9px;
    line-height: 1.7;
  }
}

.about_story {
  background: #c8e5e7;
  padding: 70px 0;
}

@media screen and (max-width: 779px) {
  .about_story {
    padding: 7% 0;
  }
}

.about_story .container {
  background: #FFF url(https://labo.itembox.design/item/tsuda/img/about/bg01.jpg) no-repeat 0 0;
  padding: 80px 0 40px;
}

@media screen and (max-width: 779px) {
  .about_story .container {
    background: #FFF url(https://labo.itembox.design/item/tsuda/img/about/sm/bg01.jpg) no-repeat 0 0;
    background-size: 100%;
    padding: 10% 0 5%;
  }
}

.about_story .container .list {
  width: 900px;
  margin: 0 auto;
}

@media screen and (max-width: 779px) {
  .about_story .container .list {
    width: 92%;
  }
}

.about_story .container .list li {
  position: relative;
  margin-top: 40px;
  padding-bottom: 40px;
}

@media screen and (max-width: 779px) {
  .about_story .container .list li {
    margin-top: 0;
    padding: 4% 0 6%;
  }
}

.about_story .container .list li:not(:last-child) {
  border-bottom: 1px solid #e3e3e3;
}

.about_story .container .list li:nth-child(2n) .ttl, .about_story .container .list li:nth-child(2n) .detail {
  margin: 0 360px 0 0;
}

@media screen and (max-width: 779px) {
  .about_story .container .list li:nth-child(2n) .ttl, .about_story .container .list li:nth-child(2n) .detail {
    margin: 0;
  }
}

.about_story .container .list li:nth-child(2n) .detail .img {
  left: inherit;
  right: 0;
}

@media screen and (max-width: 779px) {
  .about_story .container .list li:nth-child(2n) .detail .img {
    float: right;
    margin: 0 0 0 4%;
  }
}

.about_story .container .list li .ttl, .about_story .container .list li .detail {
  margin: 0 0 0 360px;
  width: 540px;
}

@media screen and (max-width: 779px) {
  .about_story .container .list li .ttl, .about_story .container .list li .detail {
    margin: 0;
    width: 100%;
  }
}

.about_story .container .list li .ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.38;
}

@media screen and (max-width: 779px) {
  .about_story .container .list li .ttl {
    margin-bottom: 4%;
  }
}

.about_story .container .list li .ttl .num {
  font-style: italic;
  font-family: "Playfair Display", serif;
  color: #c8e5e7;
  font-size: 65px;
}

@media screen and (max-width: 779px) {
  .about_story .container .list li .ttl .num {
    font-size: 35px;
  }
}

.about_story .container .list li .ttl .ja {
  color: #4ca9b3;
  font-weight: bold;
  font-size: 26px;
  margin-left: .5em;
}

@media screen and (max-width: 779px) {
  .about_story .container .list li .ttl .ja {
    font-size: 15px;
  }
}

.about_story .container .list li .detail .img {
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 779px) {
  .about_story .container .list li .detail .img {
    position: static;
    float: left;
    width: 46%;
    margin: 0 4% 0 0;
  }
}

.about_story .container .list li .detail .txt {
  font-size: 14px;
  line-height: 2;
}

@media screen and (max-width: 779px) {
  .about_story .container .list li .detail .txt {
    font-size: 12px;
    line-height: 1.5;
  }
}

.about_story .container .list li .detail .txt span {
  font-weight: bold;
  color: #4ca9b3;
}

.about_pickup {
  padding: 50px 0;
}

@media screen and (max-width: 779px) {
  .about_pickup {
    padding: 7% 0 3%;
  }
}

/* ======================================================================
 company
====================================================================== */
.company_ttl {
  text-align: center;
  margin-bottom: 50px;
}

@media screen and (max-width: 779px) {
  .company_ttl {
    margin-bottom: 10%;
  }
}

.company_ttl img {
  width: 70px;
}

@media screen and (max-width: 779px) {
  .company_ttl img {
    width: 60px;
  }
}

.company_ttl .en {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  margin: 0 0 10px;
}

@media screen and (max-width: 779px) {
  .company_ttl .en {
    font-size: 33px;
  }
}

.company_ttl span {
  display: block;
}

.company_ttl .ja {
  font-weight: bold;
  color: #737373;
  letter-spacing: 0.025em;
  font-size: 12px;
}

.company {
  padding: 70px 0 150px;
}

@media screen and (max-width: 779px) {
  .company {
    padding: 10% 0 20%;
  }
}

.company table {
  margin: 0 auto;
  width: 700px;
}

@media screen and (max-width: 779px) {
  .company table {
    width: 100%;
  }
}

.company table th, .company table td {
  padding: 15px;
  border-bottom: 1px solid #c8e5e7;
  line-height: 1.5;
}

@media screen and (max-width: 779px) {
  .company table th, .company table td {
    padding: 4% 2%;
  }
}

.company table th {
  font-weight: bold;
}

.company table .tel {
  pointer-events: none;
}

@media screen and (max-width: 779px) {
  .company table .tel {
    pointer-events: inherit;
  }
}

/* ======================================================================
 shoplist
====================================================================== */
.shop_ttl {
  text-align: center;
  margin-bottom: 50px;
}

@media screen and (max-width: 779px) {
  .shop_ttl {
    margin-bottom: 10%;
  }
}

.shop_ttl img {
  width: 70px;
}

@media screen and (max-width: 779px) {
  .shop_ttl img {
    width: 60px;
  }
}

.shop_ttl .en {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  margin: 0 0 10px;
}

@media screen and (max-width: 779px) {
  .shop_ttl .en {
    font-size: 33px;
  }
}

.shop_ttl span {
  display: block;
}

.shop_ttl .ja {
  font-weight: bold;
  color: #737373;
  letter-spacing: 0.025em;
  font-size: 12px;
}

.shop {
  padding: 70px 0 150px;
}

@media screen and (max-width: 779px) {
  .shop {
    padding: 10% 0 20%;
  }
}

.shop .shop_top {
  margin: 50px 0;
  line-height: 1.7;
}

.shop .shop_top .att {
  font-weight: bold;
  color: red;
  margin-top: 1em;
}

.shop .shop_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 779px) {
  .shop .shop_menu {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.shop .shop_menu a {
  position: relative;
  width: 12.5%;
  text-align: center;
  color: #FFF;
  background: #4ca9b3;
  height: 50px;
  line-height: 1.3;
}

@media screen and (max-width: 779px) {
  .shop .shop_menu a {
    width: 24%;
    margin: 1% 1% 0 0;
  }
}

.shop .shop_menu a:not(:last-child) {
  margin-right: 3px;
}

@media screen and (max-width: 779px) {
  .shop .shop_menu a:not(:last-child) {
    margin-right: 1%;
  }
}

.shop .shop_menu a span {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
}

.shop .area_ttl {
  background: #c8e5e7;
  padding: 15px;
  font-weight: bold;
  font-size: 18px;
}

@media screen and (max-width: 779px) {
  .shop .area_ttl {
    font-size: 16px;
    padding: 4%;
  }
}

.shop .shop_list {
  padding: 50px 0 0;
}

@media screen and (max-width: 779px) {
  .shop .shop_list {
    padding: 10% 0 0;
  }
}

.shop .shop_list > .ttl {
  margin-top: 15px;
  font-weight: bold;
  color: #4ca9b3;
  border-left: 4px solid;
  text-indent: .5em;
  font-size: 18px;
  padding: 5px 0;
}

@media screen and (max-width: 779px) {
  .shop .shop_list > .ttl {
    padding: 2% 0;
    font-size: 16px;
  }
}

.shop .shop_list .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 50px;
}

@media screen and (max-width: 779px) {
  .shop .shop_list .list {
    display: block;
    margin-bottom: 7%;
  }
}

.shop .shop_list .list li {
  width: 291px;
  border: 1px solid #c8e5e7;
  padding: 15px;
  margin-top: 15px;
  line-height: 1.5;
  font-size: 14px;
}

@media screen and (max-width: 779px) {
  .shop .shop_list .list li {
    width: 92%;
    padding: 4%;
    margin-top: 4%;
  }
}

.shop .shop_list .list li:not(:nth-child(3n)) {
  margin-right: 15px;
}

@media screen and (max-width: 779px) {
  .shop .shop_list .list li:not(:nth-child(3n)) {
    margin-right: 0;
  }
}

.shop .shop_list .list li .img {
  margin-bottom: 15px;
}

@media screen and (max-width: 779px) {
  .shop .shop_list .list li .img {
    margin-bottom: 4%;
    display: none;
  }
}

.shop .shop_list .list li .img img {
  width: 100%;
}

.shop .shop_list .list li .ttl {
  font-weight: bold;
  color: #4ca9b3;
  margin-bottom: 1em;
}

.shop .shop_list .list li .tel {
  pointer-events: none;
  background: url(https://labo.itembox.design/item/tsuda/img/common/ico_call.png) no-repeat 0 50%;
  background-size: 14px;
  padding-left: 20px;
  color: #4ca9b3;
}

@media screen and (max-width: 779px) {
  .shop .shop_list .list li .tel {
    pointer-events: inherit;
  }
}

.trial_lp {
  margin: 0 auto;
  width: 800px;
}

@media screen and (max-width: 779px) {
  .trial_lp {
    width: 100%;
  }
}

.trial_lp .btn {
  width: 70%;
  margin: 7% auto;
}

.trial_lp .img {
  width: 100%;
}

/*! CSS Used from: https://www.tsuda-cosme.com/wp-content/themes/tsuda_cosume/css/reset.css ; media=all */
/* @media all {
  div, dl, dt, dd, ul, li, h3, h4, p, form, section {
    margin: 0;
    padding: 0;
  }
  h3, h4, section {
    display: block;
  }
  h3, h4 {
    font-size: 100%;
    font-weight: normal;
  }
  ul {
    list-style: none;
  }
  input {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 100%;
    font-family: inherit;
    vertical-align: middle;
  }
  img {
    border: none;
    vertical-align: top;
  }
  img {
    border: 0;
  }
} */
/*! CSS Used from: https://www.tsuda-cosme.com/wp-content/themes/tsuda_cosume/style.css ; media=all */
/* body a {
    text-decoration: none;
    color: #07C2D3;
  } */
#under #main {
  width: 900px;
  background-color: #fff;
  margin: 0 auto;
  padding: 40px;
  -webkit-box-shadow: 0 0 5px 0 #c3dbdb;
  box-shadow: 0 0 5px 0 #c3dbdb;
  border-radius: 3px;
}

ul.flotiner {
  overflow: hidden;
  width: 920px;
  padding-bottom: 20px;
  margin: 0 auto;
}

ul.flotiner li {
  width: 285px;
  float: left;
  padding-right: 20px;
}

ul.flotiner li p {
  font-size: 14px;
  padding-top: 15px;
  color: #232323;
  line-height: 1.5;
}

h3.title-set {
  text-align: center;
  padding: 45px 10px;
}

div.tsuda-reason1 {
  background: url(https://labo.itembox.design/item/tsuda/img/first/product-background.png) no-repeat;
  width: 900px;
  height: 200px;
  padding-top: 20px;
  border-top: solid 1px #e3dfdf;
  padding-bottom: 20px;
  background-position: 0px 20px;
}

div.tsuda-reason2 {
  background: url(https://labo.itembox.design/item/tsuda/img/first/product2-background.png) no-repeat;
  width: 900px;
  height: 200px;
  padding-top: 20px;
  border-top: solid 1px #e3dfdf;
  padding-bottom: 20px;
  background-position: 0px 20px;
}

div.tsuda-reason3 {
  background: url(https://labo.itembox.design/item/tsuda/img/first/product3-background.png) no-repeat;
  width: 900px;
  height: 200px;
  padding-top: 20px;
  border-top: solid 1px #e3dfdf;
  padding-bottom: 20px;
  background-position: 0px 20px;
}

div.tsuda-reason4 {
  background: url(https://labo.itembox.design/item/tsuda/img/first/product4-background.png) no-repeat;
  width: 900px;
  height: 200px;
  padding-top: 20px;
  border-top: solid 1px #e3dfdf;
  border-bottom: solid 1px #e3dfdf;
  padding-bottom: 20px;
  background-position: 0px 20px;
}

h4.bord-paddin {
  margin-left: 330px;
  padding-bottom: 15px;
  border-bottom: dashed 1px #b1b0b0;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.3;
}

h4.bord-paddin span {
  color: #db4165;
}

p.color-padd {
  padding-left: 330px;
  color: #232323;
  padding-top: 25px;
  line-height: 1.5;
}

h3.title-set3 {
  padding-top: 85px;
  text-align: center;
  padding-bottom: 10px;
}

div.trial-area {
  background: url(https://labo.itembox.design/item/tsuda/img/first/trial-background.png) no-repeat;
  width: 898px;
  height: 480px;
  margin: 0 auto;
}

img.trialset-btn {
  position: relative;
}

img.last-tsuda {
  position: relative;
  top: 32px;
}

.titProduct_position h3.tit {
  padding-top: 10px;
  padding-bottom: 85px;
}

.happy_styleBox {
  position: relative;
  margin: 0 0 40px;
  text-align: center;
  margin-top: 30px;
  margin-left: 5px;
}

.happy_styleBox a {
  position: absolute;
  top: 156px;
  left: 100px;
}

.happy_styleBox img.tvbnr {
  background: #b5b5b5;
  padding: 20px 24px;
}

.hover_shine {
  height: 100%;
  width: 30px;
  position: absolute;
  left: -100px;
  top: -15px;
  background-color: #fff;
  opacity: 0;
  transform: rotate(45deg);
  animation: reflection 2s ease-in-out infinite;
  -webkit-transform: rotate(45deg);
  -webkit-animation: reflection 2s ease-in-out infinite;
  -moz-transform: rotate(45deg);
  -moz-animation: reflection 2s ease-in-out infinite;
  -ms-transform: rotate(45deg);
  -ms-animation: reflection 2s ease-in-out infinite;
  -o-transform: rotate(45deg);
  -o-animation: reflection 2s ease-in-out infinite;
}

.reflection-wrapper {
  overflow: hidden;
  position: relative;
  top: 365px;
  left: 367px;
  width: 500px;
}

/*! CSS Used keyframes */
@keyframes reflection {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
    opacity: 0.4;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
            transform: scale(4) rotate(45deg);
    opacity: 0.8;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
            transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}

@-webkit-keyframes reflection {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.4;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 0.8;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}

/*! CSS Used from: https://www.tsuda-cosme.com/wp-content/themes/tsuda_cosume/sp/css/import.css ; media=all */
@media screen and (max-width: 779px) {
  /* div, span, h3, h4, p, img {
      margin: 0;
      padding: 0;
      border: 0;
      font: inherit;
      font-size: 100%;
      vertical-align: baseline;
    }
    div, span, h3, h4, p, img {
      margin: 0;
      padding: 0;
      border: 0;
      outline: 0;
      font-size: 100%;
      vertical-align: baseline;
      background: transparent;
    }
    img {
      vertical-align: bottom;
      height: auto;
      max-width: 100%;
    } */
  div.first-sp {
    padding-left: 4%;
    padding-right: 4%;
  }
  .padding-title {
    padding-top: 5%;
    padding-bottom: 10%;
    border-bottom: solid 1px #e3dfdf;
  }
  div.tsuda-reason1 {
    background: url(https://labo.itembox.design/item/tsuda/img/first/sm/tsuda-reasonback1.png) no-repeat;
    background-size: 25%;
    border-bottom: solid 1px #e3dfdf;
    background-position: 0% 12%;
    width: 100%;
    height: auto;
  }
  div.tsuda-reason2 {
    background: url(https://labo.itembox.design/item/tsuda/img/first/sm/tsuda-reasonback2.png) no-repeat;
    background-size: 25%;
    border-bottom: solid 1px #e3dfdf;
    background-position: 0% 12%;
    width: 100%;
    height: auto;
  }
  div.tsuda-reason3 {
    background: url(https://labo.itembox.design/item/tsuda/img/first/sm/tsuda-reasonback3.png) no-repeat;
    background-size: 25%;
    border-bottom: solid 1px #e3dfdf;
    background-position: 0% 12%;
    width: 100%;
    height: auto;
  }
  div.tsuda-reason4 {
    background: url(https://labo.itembox.design/item/tsuda/img/first/sm/tsuda-reasonback4.png) no-repeat;
    background-size: 25%;
    border-bottom: solid 1px #e3dfdf;
    background-position: 0% 12%;
    width: 100%;
    height: auto;
  }
  h4.bord-paddin {
    padding: 8% 0 10% 29%;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.4;
    margin-left: 0;
    border-bottom: none;
  }
  .tsuda-reason3 h4.bord-paddin {
    padding: 7% 0 6% 29%;
  }
  h4.bord-paddin span {
    color: #db4165;
  }
  p.font13px {
    line-height: 1.5em;
    font-size: 13px;
    color: #303232;
  }
  p.font13px2 {
    line-height: 1.5em;
    padding-bottom: 4%;
    font-size: 13px;
    color: #303232;
  }
  div.trial2900 {
    background: url(https://labo.itembox.design/item/tsuda/img/first/sm/trial2900.png) no-repeat;
    height: 100%;
    background-size: contain;
    margin-bottom: 2%;
  }
  div.trial2900 a {
    display: block;
    text-align: center;
  }
  div.trial2900 img {
    width: 95%;
  }
  .first_trialBox .mgb5 {
    margin-bottom: 5%;
  }
  .hover_shine {
    height: 100%;
    width: 30px;
    position: absolute;
    left: -100px;
    top: -15px;
    background-color: #fff;
    opacity: 0;
    transform: rotate(45deg);
    animation: reflection 2s ease-in-out infinite;
    -webkit-transform: rotate(45deg);
    -webkit-animation: reflection 2s ease-in-out infinite;
    -moz-transform: rotate(45deg);
    -moz-animation: reflection 2s ease-in-out infinite;
    -ms-transform: rotate(45deg);
    -ms-animation: reflection 2s ease-in-out infinite;
    -o-transform: rotate(45deg);
    -o-animation: reflection 2s ease-in-out infinite;
  }
  .reflection-wrapper {
    overflow: hidden;
    position: static;
    padding-bottom: 16%;
    width: 100%;
  }
  .reflection-wrapper > div {
    position: relative;
    margin-top: 113%;
    height: 100%;
    overflow: hidden;
    width: 86%;
    left: 7%;
    bottom: -34px;
  }
  h3.space-title {
    padding-top: 10%;
    padding-bottom: 8%;
  }
  .first_trialBox dl {
    padding-bottom: 60px;
    line-height: 1.3;
  }
  .first_trialBox dl dt {
    display: inline-block;
    background-color: #fde8e9;
    color: #eb454b;
    padding: 6px 16px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  .first_trialBox dl dd {
    display: inline-block;
    width: 280px;
    font-size: 10px;
  }
  div.first-sp ul {
    width: 100%;
    overflow: hidden;
  }
  div.first-sp ul li.sleft {
    float: left;
    width: 47%;
    padding-right: 6%;
  }
  div.first-sp ul li.sright {
    width: 47%;
    float: left;
  }
  div.first-sp ul li p {
    line-height: 1.2em;
    padding-top: 4%;
    color: #848485;
    padding-bottom: 10%;
  }
  .Product_trialBox h3.tit {
    padding-top: 3px;
    margin-bottom: 20px;
  }
}

.colorbalm {
  text-align: center;
  width: 800px;
  margin: 0 auto;
  padding-bottom: 150px;
}

@media screen and (max-width: 779px) {
  .colorbalm {
    width: 100%;
    padding-bottom: 15%;
  }
}

.lp_cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 6% 0 3%;
}

.lp_cart .box {
  width: 432px;
  -webkit-box-shadow: 0px 0px 27px 0px rgba(45, 30, 2, 0.1);
          box-shadow: 0px 0px 27px 0px rgba(45, 30, 2, 0.1);
}

.lp_cart .box:first-child {
  margin-right: 35px;
}

.lp_cart .box:first-child .ttl {
  background: #ffc6a9;
}

.lp_cart .box .ttl {
  padding: 2.7% 0;
  background: #ffa7a7;
}

.lp_cart .box .detail {
  padding: 7% 5% 5%;
}

.lp_cart .box .detail .price.single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.lp_cart .box .detail .price .tag {
  margin-right: 10px;
}

.lp_cart .box .detail .price .tag span {
  display: inline-block;
  vertical-align: middle;
  margin-right: 4px;
  color: #e03858;
  border: 1px solid;
  font-weight: bold;
  font-size: 12px;
  padding: 2px 5px;
}

.lp_cart .box .detail .price .num span {
  font-weight: bold;
  font-size: 22px;
}

.lp_cart .box .detail button {
  background: #FFF url(https://labo.itembox.design/item/tsuda/img/common/arrow01_r.png) no-repeat 92% 50%;
  background-size: 9px;
  color: #3fa9b2;
  width: 100%;
  border-radius: 6px;
  height: 60px;
  border: 2px solid #3fa9b2;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  font-weight: bold;
  font-size: 20px;
}

.lp_cart .box .detail button:hover {
  background: #3fa9b2 url(https://labo.itembox.design/item/tsuda/img/common/arrow02_r.png) no-repeat 92% 50%;
  background-size: 9px;
  color: #FFF;
}

.lp_cart .box .detail .price {
  margin: 5% 0;
  text-align: left;
}

.lp_cart .box .detail .price .num .sale {
  color: #e03858;
}

.lp_cart {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.award {
  margin-top: 100px;
}

.award .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: left;
}

.award .list li {
  width: 385px;
  margin-top: 30px;
}

.award .list li:not(:nth-child(2n)) {
  margin-right: 30px;
}

.award .list .top {
  background: #efeadc;
  padding: 5px;
}

.award .list .top,
.award .list .top .ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.award .list .top .ttl {
  width: 35%;
}

.award .list .top .txt {
  width: 65%;
}

.award .list .top .ico img {
  width: 40px;
  margin-right: 10px;
}

.award .list .top .ttl {
  font-weight: bold;
  color: #956f20;
}

.award .list .top .txt {
  text-align: right;
  line-height: 1.5;
  font-size: 12px;
}

.award .list .top .txt span {
  font-weight: bold;
  color: #956f20;
}

.award .list .btm {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1.5;
  font-size: 12px;
  margin-top: 10px;
}

.award .list .btm .img {
  width: 206px;
  margin-right: 10px;
}

.award .list .btm .desc {
  width: 169px;
}

.award .list .btm .date {
  position: absolute;
  bottom: 0;
  right: 0;
}

@media screen and (max-width: 779px) {
  .lp_cart {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 6% auto;
    width: 92%;
  }
  .lp_cart .box {
    width: 48%;
    -webkit-box-shadow: 0px 0px 27px 0px rgba(45, 30, 2, 0.1);
            box-shadow: 0px 0px 27px 0px rgba(45, 30, 2, 0.1);
    padding: 0;
  }
  .lp_cart .box:first-child {
    margin-right: 4%;
  }
  .lp_cart .box:first-child .ttl {
    background: #ffc6a9;
  }
  .lp_cart .box .ttl {
    padding: 3% 7% 5%;
    background: #ffa7a7;
  }
  .lp_cart .box .detail {
    padding: 7% 5% 5%;
  }
  .lp_cart .box .detail .price .tag {
    margin-bottom: 4%;
  }
  .lp_cart .box .detail .price .tag span {
    display: inline-block;
    vertical-align: middle;
    margin-right: 3px;
    color: #e03858;
    border: 1px solid;
    font-weight: bold;
    font-size: 10px;
    padding: 1px 4px;
  }
  .lp_cart .box .detail .price .num span {
    font-weight: bold;
    font-size: 22px;
  }
  .lp_cart .box .detail button {
    background: #FFF url(https://labo.itembox.design/item/tsuda/img/common/arrow01_r.png) no-repeat 92% 50%;
    background-size: 5px;
    color: #3fa9b2;
    width: 100%;
    border-radius: 3px;
    height: 40px;
    border: 2px solid #3fa9b2;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    font-weight: bold;
    font-size: 12px;
  }
  .lp_cart .box .detail button:hover {
    background: #3fa9b2 url(https://labo.itembox.design/item/tsuda/img/common/arrow02_r.png) no-repeat 92% 50%;
    background-size: 6px;
    color: #FFF;
  }
  .lp_cart .box .detail .price {
    margin: 5% 0;
    text-align: left;
  }
  .lp_cart .box .detail .price .num .sale {
    color: #e03858;
  }
  .lp_cart .box .detail .img {
    text-align: center;
  }
  .lp_cart .box .detail .img img {
    height: 110px;
    width: auto;
  }
  .award {
    margin-top: 20%;
  }
  .award .list {
    width: 92%;
    margin: 0 auto;
  }
  .award .list li {
    width: 100%;
    margin-top: 4%;
  }
  .award .list li:not(:nth-child(2n)) {
    margin-right: 0;
  }
  .award .list .btm .img, .award .list .btm .desc {
    width: 48.5%;
  }
  .award .list .btm .img {
    margin-right: 3%;
  }
}

/* ======================================================================
 404 notfound
====================================================================== */
.notfound_ttl {
  text-align: center;
  margin-bottom: 50px;
}

@media screen and (max-width: 779px) {
  .notfound_ttl {
    margin-bottom: 10%;
  }
}

.notfound_ttl img {
  width: 70px;
}

@media screen and (max-width: 779px) {
  .notfound_ttl img {
    width: 60px;
  }
}

.notfound_ttl .en {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  margin: 0 0 10px;
}

@media screen and (max-width: 779px) {
  .notfound_ttl .en {
    font-size: 33px;
  }
}

.notfound_ttl span {
  display: block;
}

.notfound_ttl .ja {
  font-weight: bold;
  color: #737373;
  letter-spacing: 0.025em;
  font-size: 12px;
}

.notfound {
  padding: 70px 0 150px;
}

@media screen and (max-width: 779px) {
  .notfound {
    padding: 10% 0 20%;
  }
}

.notfound .txt {
  line-height: 2;
  margin: 3em 0;
}

/* ======================================================================
 system
====================================================================== */
.fs-c-documentArticle,
.fs-p-returnPolicy,
.fs-p-memberAgreement {
  margin: 0 auto;
  padding: 70px 0;
  width: 1000px;
}

@media screen and (max-width: 779px) {
  .fs-c-documentArticle,
  .fs-p-returnPolicy,
  .fs-p-memberAgreement {
    width: 92%;
  }
}

.fs-c-documentArticle__heading {
  text-align: center;
  margin-bottom: 50px;
  font-size: 24px;
  margin: 0 0 50px;
  font-weight: bold;
  line-height: 1.3;
}

.fs-c-documentColumn__heading {
  background: #c8e5e7;
  font-weight: bold;
  padding: 15px;
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 1.3;
}

.fs-c-postage__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 30px 0;
}

.fs-c-postage__list dt, .fs-c-postage__list dd {
  width: 10%;
  padding: 7px 1%;
  margin-bottom: 1%;
}

.fs-c-postage__list dt {
  background: #f1f4f5;
}

.fs-c-postage__list dd {
  margin-right: 1%;
}

.fs-c-documentColumn__content {
  line-height: 1.7;
}

.fs-c-documentColumn__content a {
  text-decoration: underline;
}

.fs-c-documentColumn__content a.tel {
  pointer-events: none;
}

.fs-c-note {
  margin: 1.5em 0 0;
  line-height: 1.7;
}

.fs-c-note__item {
  color: #4ca9b3;
  font-weight: bold;
}

.fs-c-documentColumn {
  margin-bottom: 70px;
}

.fs-c-note__item:before {
  content: "※";
}

.fs-c-creditCardIcons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.fs-c-creditCardIcons__icon {
  margin-right: 10px;
}

.fs-c-documentSubColumn {
  background: #f1f4f5;
  padding: 20px;
  margin-top: 30px;
}

.fs-c-documentSubColumn__heading {
  font-weight: bold;
  margin-bottom: .7em;
}

.fs-c-specTable th,
.fs-c-specTable td {
  padding: 15px;
  line-height: 1.3;
  border: 2px solid #f1f4f5;
}

.fs-c-specTable th {
  background: #f1f4f5;
}

.fs-c-specTable td {
  background: #FFF;
}

.fs-c-orderedList,
.fs-c-list {
  margin: 30px 0 0 2em;
  list-style: decimal;
}

.fs-c-documentColumn__content p {
  margin-top: 1em;
}

.fs-c-explainList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1em;
}

.fs-c-explainList dd {
  margin-right: 1em;
}

.fs-p-address {
  margin-top: 30px;
}

.fs-p-address span {
  display: block;
}

.fs-p-aboutTerms table {
  width: 100%;
  margin-top: 30px;
}

.fs-p-aboutTerms th, td {
  border-bottom: 3px solid #FFF;
}

.fs-c-productList,
.fs-l-main .product,
.fs-c-couponList {
  width: 1000px;
  margin: 0 auto;
  padding: 70px 0 150px;
  line-height: 1.5;
}

@media screen and (max-width: 779px) {
  .fs-c-productList,
  .fs-l-main .product,
  .fs-c-couponList {
    width: 92%;
    padding: 4% 0 20%;
  }
}

.fs-c-productList a, .fs-c-productList button,
.fs-l-main .product a,
.fs-l-main .product button,
.fs-c-couponList a,
.fs-c-couponList button {
  opacity: 1;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

@media screen and (max-width: 779px) {
  .fs-c-productList a, .fs-c-productList button,
  .fs-l-main .product a,
  .fs-l-main .product button,
  .fs-c-couponList a,
  .fs-c-couponList button {
    -webkit-transition: none;
    transition: none;
  }
}

.fs-c-productList a:hover,
.fs-c-productList a:hover img, .fs-c-productList button:hover,
.fs-c-productList button:hover img,
.fs-l-main .product a:hover,
.fs-l-main .product a:hover img,
.fs-l-main .product button:hover,
.fs-l-main .product button:hover img,
.fs-c-couponList a:hover,
.fs-c-couponList a:hover img,
.fs-c-couponList button:hover,
.fs-c-couponList button:hover img {
  opacity: .6;
}

@media screen and (max-width: 779px) {
  .fs-c-productList a:hover,
  .fs-c-productList a:hover img, .fs-c-productList button:hover,
  .fs-c-productList button:hover img,
  .fs-l-main .product a:hover,
  .fs-l-main .product a:hover img,
  .fs-l-main .product button:hover,
  .fs-l-main .product button:hover img,
  .fs-c-couponList a:hover,
  .fs-c-couponList a:hover img,
  .fs-c-couponList button:hover,
  .fs-c-couponList button:hover img {
    opacity: 1;
  }
}

.fs-c-sortItems,
.fs-c-sortItems__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 779px) {
  .fs-c-sortItems,
  .fs-c-sortItems__list {
    display: block;
  }
}

@media screen and (max-width: 779px) {
  .fs-c-sortItems__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 3% 0 5%;
  }
}

.fs-c-pagination__item {
  -webkit-box-flex: inherit;
      -ms-flex: inherit;
          flex: inherit;
}

.fs-c-pagination {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.fs-c-listControl__status {
  text-align: center;
  font-size: 14px;
}

.fs-c-productList__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 20px 0;
}

.fs-c-productList__list__item {
  width: 285px;
  border-radius: 5px;
  overflow: hidden;
  margin: 15px 8px 0;
  padding: 15px;
}

@media screen and (max-width: 779px) {
  .fs-c-productList__list__item {
    width: 42%;
    padding: 3%;
    margin: 0 0 4%;
  }
}

@media screen and (max-width: 779px) {
  .fs-c-productList__list__item:not(:nth-child(2n)) {
    margin-right: 2%;
  }
}

.fs-c-productList__list__item .fs-c-buttonContainer {
  padding-bottom: 0;
}

.fs-c-productListItem__viewMoreImageButton {
  display: none;
}

.fs-c-button--addToWishList--icon,
.fs-c-button--removeFromWishList--icon,
.fs-c-button--addToWishList--detail,
.fs-c-button--removeFromWishList--detail {
  display: block;
  font-size: 13px;
  padding: 5px;
  color: #da3955;
  background: #FFF;
  border: 1px solid;
  border-radius: 5px;
  width: 100%;
  margin-top: 10px;
}

.fs-c-button--addToWishList--detail,
.fs-c-button--removeFromWishList--detail {
  margin-top: 0;
}

.fs-c-button--removeFromWishList--icon,
.fs-c-button--removeFromWishList--detail {
  color: #737373;
}

.fs-c-productList__list__item {
  position: relative;
}

.fs-c-productListItem__productName {
  font-weight: bold;
  margin: 10px 0;
}

.fs-c-productListItem__productName .fs-c-productName__copy {
  display: none;
}

.fs-c-productPrice,
.fs-c-productPrice__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.fs-c-productPrice__addon {
  font-size: 12px;
  margin-left: .5em;
}

@media screen and (max-width: 779px) {
  .fs-c-productPrice__addon {
    display: block;
    margin-left: 0;
    text-align: right;
  }
}

.fs-c-productPrice__main {
  font-weight: bold;
}

@media screen and (max-width: 779px) {
  .fs-c-productPrice__main .fs-c-price {
    display: block;
    text-align: right;
  }
}

.fs-c-productListItem__prices {
  margin: 10px 0;
}

.fs-c-productPrice__main__label {
  margin-right: 1em;
}

@media screen and (max-width: 779px) {
  .fs-c-productPrice__main__label {
    margin-right: 0;
  }
}

.fs-c-productListItem__productDescription {
  font-size: 14px;
  margin: 10px 0;
}

@media screen and (max-width: 779px) {
  .fs-c-productListItem__productDescription {
    font-size: 12px;
  }
}

.fs-c-button--addToCart--list {
  width: 100%;
  height: 54px;
  background: #4ca9b3;
  color: #FFF;
  font-weight: bold;
  border-radius: 5px;
  border: 2px solid #4ca9b3;
}

@media screen and (max-width: 779px) {
  .fs-c-button--addToCart--list {
    height: 40px;
    font-size: 13px;
  }
}

.fs-c-sortItems__label {
  background: #eef3f3;
  padding: 5px;
}

.fs-c-sortItems__list__item {
  margin-left: 1em;
}

@media screen and (max-width: 779px) {
  .fs-c-sortItems__list__item {
    margin: 0 1em 0 0;
  }
}

.fs-c-productMark {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 10px 0;
}

.fs-c-productMark .fs-c-productMark__item {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  margin: 3px;
}

@media screen and (max-width: 779px) {
  .fs-c-productMark .fs-c-productMark__item {
    margin: 2px;
  }
}

.fs-c-productMark .fs-c-productMark__item .fs-c-productMark__mark {
  border: 1px solid #4ca9b3;
  color: #4ca9b3;
  font-size: 11px;
  height: 22px;
  line-height: 24px;
  padding: 0 10px;
  border-radius: 20px;
  display: inherit;
  margin-right: 0;
}

@media screen and (max-width: 779px) {
  .fs-c-productMark .fs-c-productMark__item .fs-c-productMark__mark {
    padding: 0 5px;
    font-size: 9px;
  }
}

.fs-c-productMark .fs-c-productMark__item .fs-c-productMark__mark.new {
  border: 1px solid #da3955;
  color: #da3955;
}

.fs-c-productMark .fs-c-productMark__item .fs-c-productMark__mark.free, .fs-c-productMark .fs-c-productMark__item .fs-c-productMark__mark.first {
  border: 1px solid #da3955;
  background: #da3955;
  color: #FFF;
}

.fs-c-productListItem__image a {
  display: block;
}

.fs-l-productLayout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 3em;
}

@media screen and (max-width: 779px) {
  .fs-l-productLayout {
    display: block;
  }
}

.product_img {
  width: 470px;
  margin: 0 50px 0 0;
}

@media screen and (max-width: 779px) {
  .product_img {
    width: 100%;
  }
}

.product_detail {
  width: 480px;
}

@media screen and (max-width: 779px) {
  .product_detail {
    width: 100%;
    margin-top: 7%;
  }
}

.fs-c-productNameHeading span {
  display: block;
}

.fs-c-productNameHeading .fs-c-productNameHeading__name {
  font-weight: bold;
  font-size: 30px;
  margin-bottom: .25em;
}

@media screen and (max-width: 779px) {
  .fs-c-productNameHeading .fs-c-productNameHeading__name {
    font-size: 20px;
  }
}

.fs-c-productNumber {
  margin-bottom: 1em;
}

.fs-p-snsArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 2em;
}

.fs-p-snsArea > * {
  margin-left: 5px;
}

.fs-p-productDescription {
  margin-bottom: 2em;
}

.product_detail .fs-c-productMark {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.product_detail .fs-c-productPrice {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.product_detail .fs-c-productPrice__main__price .fs-c-price__value {
  font-size: 30px;
}

@media screen and (max-width: 779px) {
  .product_detail .fs-c-productPrice__main__price .fs-c-price__value {
    font-size: 20px;
  }
}

.fs-c-productQuantityAndWishlist__wishlist {
  margin: 0 0 0 1em;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

.fs-c-productActionButton .fs-c-button--primary {
  display: inline-block;
  width: 300px;
  height: 60px;
  background: #4ca9b3;
  color: #FFF;
  font-size: 20px;
  font-weight: bold;
}

@media screen and (max-width: 779px) {
  .fs-c-productActionButton .fs-c-button--primary {
    width: 100%;
    height: 50px;
    font-size: 18px;
  }
}

.fs-c-productActionButton {
  text-align: right;
}

.fs-c-quantity__select {
  border: 2px solid #CCC;
  font-size: 20px;
  padding: 0 10px;
}

.fs-c-quantity__number {
  font-size: 20px;
  padding: 0 10px;
}

.fs-c-productQuantityAndWishlist {
  margin: 15px 0;
  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;
}

.fs-c-productQuantityAndWishlist:before {
  content: "個数";
  margin-right: .5em;
}

.fs-c-button--viewExtendedImage {
  width: 100%;
  height: 100%;
  background: none;
}

.fs-c-productMainImage, .fs-c-productCarouselMainImage__expandButton {
  position: relative;
}

@media screen and (max-width: 779px) {
  .fs-c-productMainImage, .fs-c-productCarouselMainImage__expandButton {
    margin: 0 auto;
  }
}

.fs-c-productMainImage .fs-c-button__label, .fs-c-productCarouselMainImage__expandButton .fs-c-button__label {
  font-size: 0;
  width: 40px;
  height: 40px;
  background: #4ca9b3 url(https://labo.itembox.design/item/tsuda/img/common/ico_search.png) no-repeat center;
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
}

.fs-c-productMainImage .fs-c-buttonContainer {
  padding-bottom: 0;
}

.fs-c-productMainImage .fs-c-buttonContainer .fs-c-productMainImage__expandButton {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.product_link {
  display: block;
  height: 46px;
  line-height: 46px;
  text-align: center;
  font-weight: bold;
  border: 2px solid;
  border-radius: 5px;
  margin: 10px 0;
  color: #4ca9b3;
}

@media screen and (max-width: 779px) {
  .product_link {
    font-size: 13px;
    height: 36px;
    line-height: 36px;
    margin: 3% 0;
  }
}

.search_ttl {
  text-align: center;
  margin: 70px 0 0;
}

@media screen and (max-width: 779px) {
  .search_ttl {
    margin: 10% 0 5%;
  }
}

.search_ttl img {
  width: 70px;
}

@media screen and (max-width: 779px) {
  .search_ttl img {
    width: 60px;
  }
}

.search_ttl .en {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  margin: 0 0 10px;
}

@media screen and (max-width: 779px) {
  .search_ttl .en {
    font-size: 33px;
  }
}

.search_ttl span {
  display: block;
}

.search_ttl .ja {
  font-weight: bold;
  color: #737373;
  letter-spacing: 0.025em;
  font-size: 12px;
}

.product_comment {
  margin: 3em 0;
}

.product_comment a {
  text-decoration: underline;
}

.product_ttl {
  font-weight: bold;
  background: #eef3f3;
  margin-bottom: 1em;
  font-size: 20px;
}

.fs-c-price__value {
  font-size: 18px;
}

@media screen and (max-width: 779px) {
  .fs-c-price__value {
    font-size: 12px;
  }
}

.fs-c-productListCarousel .slick-slide {
  width: 205px;
  margin: 0 13px;
}

@media screen and (max-width: 779px) {
  .fs-c-productListCarousel .slick-slide {
    width: 48%;
    margin: 0 1%;
  }
  .fs-c-productListCarousel .slick-slide .fs-c-productPrice__main .fs-c-price {
    text-align: center;
  }
  .fs-c-productListCarousel .slick-slide .fs-c-productPrice__addon {
    text-align: center;
  }
}

.fs-c-productListCarousel .slick-slide .fs-c-button--addToCart--list {
  height: 40px;
}

.fs-c-productListCarousel .slick-slide .fs-c-buttonContainer {
  padding-bottom: 0;
}

.fs-c-productListCarousel .fs-c-button--carousel {
  display: block;
  cursor: pointer;
  width: 46px;
  height: 46px;
}

@media screen and (max-width: 779px) {
  .fs-c-productListCarousel .fs-c-button--carousel {
    width: 25px;
    height: 25px;
  }
}

.fs-c-productListCarousel .fs-c-button--carousel.fs-c-button--carousel--next {
  background: url(https://labo.itembox.design/item/tsuda/img/common/arrow03_r.png) no-repeat center;
  background-size: cover;
}

.fs-c-productListCarousel .fs-c-button--carousel.fs-c-button--carousel--prev {
  background: url(https://labo.itembox.design/item/tsuda/img/common/arrow03_l.png) no-repeat center;
  background-size: cover;
}

.fs-c-productListCarousel .fs-c-button--carousel .fs-c-button__label {
  font-size: 0;
}

.fs-c-productCarouselMainImage__thumbnailList > li.slick-active {
  border: 1px solid #4ca9b3;
}

.fs-c-productCarouselMainImage__thumbnailList {
  overflow-x: auto;
}

.fs-c-productList a > span {
  display: block;
}

@media screen and (max-width: 779px) {
  .fs-c-productList a > span {
    min-height: auto;
  }
}

.fs-c-productName__copy {
  text-align: center;
  font-size: 12px;
  margin-bottom: .5em;
}

.fs-c-productPrice--listed .fs-c-productPrice__addon {
  font-size: 10px;
}

.fs-c-productPrice--listed .fs-c-productPrice__main {
  font-size: 12px;
  color: #000;
}

.fs-c-productPrice--listed .fs-c-productPrice__main .fs-c-price__value {
  font-size: 14px;
}

/* .fs-l-page {
    a,button {
        opacity: 1;
        transition: all 0.2s linear;
        @include sm_max {
            transition: none;
        }
        &:hover,
        &:hover img {
            opacity: .6;
            @include sm_max {
                opacity: 1;
            }
        }
    }
} */
.fs-c-panelContainer,
.fs-l-cart__contentsArea,
.fs-c-fsLogin,
.fs-c-otherServiceLogin,
.fs-c-newUsers,
.fs-c-subSection__title,
.fs-c-inputInformation__message,
.fs-c-inputInformation__field,
.fs-c-registerSuccessMessage,
.fs-c-accountService,
.fs-c-addressBookList__addButton,
.fs-c-addressBookList__message,
.fs-c-creditCardList__message,
.fs-c-history,
.fs-c-addressBookList__count,
.fs-c-wishlistProduct,
.fs-l-checkout__mainColumn,
#fs_orderTotalContainer {
  max-width: 1000px;
  min-width: 1000px;
  width: 1000px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.5;
}

@media screen and (max-width: 779px) {
  .fs-c-panelContainer,
  .fs-l-cart__contentsArea,
  .fs-c-fsLogin,
  .fs-c-otherServiceLogin,
  .fs-c-newUsers,
  .fs-c-subSection__title,
  .fs-c-inputInformation__message,
  .fs-c-inputInformation__field,
  .fs-c-registerSuccessMessage,
  .fs-c-accountService,
  .fs-c-addressBookList__addButton,
  .fs-c-addressBookList__message,
  .fs-c-creditCardList__message,
  .fs-c-history,
  .fs-c-addressBookList__count,
  .fs-c-wishlistProduct,
  .fs-l-checkout__mainColumn,
  #fs_orderTotalContainer {
    max-width: 92%;
    min-width: 92%;
    width: 92%;
  }
}

.fs-c-totalAndActions::after {
  content: "";
  display: block;
  clear: both;
}

.fs-c-continueShopping,
.fs-c-newUsers,
.fs-c-inputInformation__button,
.fs-c-accountService,
.fs-c-wishlistProduct__footer {
  padding-bottom: 150px;
}

@media screen and (max-width: 779px) {
  .fs-c-continueShopping,
  .fs-c-newUsers,
  .fs-c-inputInformation__button,
  .fs-c-accountService,
  .fs-c-wishlistProduct__footer {
    padding-bottom: 15%;
  }
}

.fs-c-continueShopping.fs-c-buttonContainer--login,
.fs-c-newUsers.fs-c-buttonContainer--login,
.fs-c-inputInformation__button.fs-c-buttonContainer--login,
.fs-c-accountService.fs-c-buttonContainer--login,
.fs-c-wishlistProduct__footer.fs-c-buttonContainer--login {
  padding-bottom: 1em;
}

.fs-c-accountService {
  padding-bottom: 0;
}

.fs-c-subSection__title,
.fs-c-wishlistProduct__title,
.fs-c-checkout-preview__title,
.fs-c-modal__title {
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 2em;
  background: #eef3f3;
  padding: .5em 0;
  width: 100%;
}

@media screen and (max-width: 779px) {
  .fs-c-subSection__title,
  .fs-c-wishlistProduct__title,
  .fs-c-checkout-preview__title,
  .fs-c-modal__title {
    font-size: 16px;
  }
}

.fs-c-continueShopping .fs-c-button--continueShopping,
.fs-c-button--memberRegister,
.fs-c-button--myPageTop,
.fs-c-accountService__pageLink,
.fs-c-wishlistProduct__viewAllProducts {
  display: block;
  border-radius: 5px;
  font-weight: bold;
  background: #4ca9b3;
  color: #FFF;
  margin: 100px auto 0;
  width: 300px;
  height: 50px;
  line-height: 50px;
  text-align: center;
}

.mypage_logout {
  margin-bottom: 150px;
}

@media screen and (max-width: 779px) {
  .mypage_logout {
    margin-bottom: 15%;
  }
}

#fs-page-error-container {
  padding-top: 70px;
}

@media screen and (max-width: 779px) {
  #fs-page-error-container {
    padding-top: 5%;
  }
}

.fs-c-cartDiscountInfo {
  font-weight: bold;
  margin: 2em 0;
  border: 2px solid;
  padding: 20px 0;
}

.fs-c-cartDiscountInfo--postage {
  color: #da3955;
}

.fs-c-cartDiscountInfo--volume {
  color: #4ca9b3;
}

#fs-cartTotals-container::after {
  content: "";
  display: block;
  clear: both;
}

.fs-c-orderTotalTable {
  margin: 0 auto;
  width: 50%;
}

#fs-checkout-amazon-container {
  margin-top: 1em;
}

.fs-c-button--primary,
.fs-c-button--guestPurchase,
.fs-c-button--unregisteredUserPurchase,
.fs-c-button--login
.fs-c-button--addToAddressbook,
.fs-c-button--cancel,
.omatome button {
  text-align: center;
  display: block;
  border: 3px solid #4ca9b3;
  width: 500px;
  height: 54px;
  line-height: 54px;
  margin: 0 auto;
  background: #4ca9b3;
  color: #FFF;
  font-size: 18px;
  font-weight: bold;
  margin-top: 1em;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

@media screen and (max-width: 779px) {
  .fs-c-button--primary,
  .fs-c-button--guestPurchase,
  .fs-c-button--unregisteredUserPurchase,
  .fs-c-button--login
.fs-c-button--addToAddressbook,
  .fs-c-button--cancel,
  .omatome button {
    width: 100%;
    height: 44px;
    line-height: 44px;
    font-size: 16px;
  }
}

button.fs-c-button--login, button.fs-c-button--confirmRegister, button.fs-c-button--primary, button.fs-c-button--cancel, button.fs-c-button--confirmOrder {
  line-height: 1;
}

.fs-c-button--unregisteredUserPurchase,
.fs-c-button--cancel {
  background: #FFF;
  color: #4ca9b3;
}

@media screen and (max-width: 779px) {
  .amazonpay-button-inner-image {
    width: auto;
  }
}

.fs-c-button--cancel--cart {
  background: none;
  font-size: 14px;
  color: #b1b1b1;
}

#AmazonPayButton {
  margin-top: 1em;
}

.fs-c-cartTable__headerCell {
  background: #eef3f3;
}

.fs-c-orderTotalTable__count {
  background: #eef3f3;
}

.fs-c-orderTotalTable__itemPriceSummary > * {
  color: #4ca9b3;
  font-weight: bold;
}

.fs-c-orderTotalTable__itemPriceSummary .fs-c-price__value {
  font-size: 24px;
}

#fs-checkout-payHere-container {
  margin-top: 4em;
}

.fs-c-panel::before {
  position: static;
  font-size: 50px;
  margin-bottom: .25em;
  display: block;
}

.fs-c-panel {
  padding: 15px;
  margin-bottom: 3em;
}

.fs-c-inputTable {
  margin: 0 auto;
}

.fs-c-anotherLogin {
  margin-bottom: 4em;
}

.fs-c-inputInformation__link {
  margin: 1em 0 3em;
}

.fs-c-textLink {
  text-decoration: underline;
}

.fs-c-inputTable__label {
  font-weight: bold;
  color: #4ca9b3;
}

.fs-c-requiredMark {
  color: #da3955;
}

.fs-c-inputTable__headerCell {
  padding-right: 1em;
}

.fs-c-inputGroup > button:after {
  content: "";
}

.fs-c-panel::before {
  position: static;
  font-size: 50px;
  margin-bottom: .25em;
  display: block;
}

.fs-c-panel {
  padding: 15px;
  margin-bottom: 3em;
}

.fs-c-inputInformation__message {
  text-align: center;
  margin-bottom: 2em;
}

.fs-c-checkbox__checkbox:checked + label > .fs-c-checkbox__checkMark {
  background: #4ca9b3;
  border-color: #4ca9b3;
}

.fs-c-checkbox__checkMark::before {
  line-height: 1.25;
}

.fs-c-radio__radio:checked:enabled + label > .fs-c-radio__radioMark {
  border-color: #4ca9b3;
}

.fs-c-radio__radio:checked:enabled + label > .fs-c-radio__radioMark::before {
  background: #4ca9b3;
}

.fs-c-dropdown__menu {
  border: 1px solid #CCC;
}

.fs-c-accountService li {
  margin-bottom: 1em;
}

.fs-c-accountService__pageLink {
  margin-top: 0;
}

.fs-c-cartPayment__button {
  padding-bottom: 0;
}

.fs-c-checkout-preview__body {
  margin: 0 0 4em;
  text-align: left;
  display: block;
}

.fs-c-button--buyItLater {
  background: #EEE;
  font-size: 14px;
  padding: 0.25em 0;
  margin-top: 1em;
}

.fs-c-checkout-destination__button,
.fs-c-checkout-preview__button,
.fs-c-buttonContainer--inputCreditCardData,
#fs_button_changeCreditCard {
  padding-bottom: 0;
}

.fs-c-checkout-customerInfo,
.fs-c-checkout-destination__list {
  width: 100%;
  margin-bottom: 1em;
}

.fs-c-checkout-customerInfo li,
.fs-c-checkout-destination__list li {
  border: 1px solid #CCC;
  padding: 0.5em;
  margin-bottom: -1px;
}

#fs_button_changeBuyer,
.fs-c-buttonContainer--changeSmall {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.fs-c-checkout-paymentMethod__message,
.fs-c-checkout-delivery__method__message {
  font-weight: bold;
  color: #da3955;
}

.fs-c-checkout-paymentMethod__body,
.fs-c-checkout-delivery__method__message {
  border: 1px solid #da3955;
  padding: .5em 1.5em;
  margin-top: .5em;
}

.fs-c-checkout-paymentMethodList > li {
  margin-top: 1em;
}

.fs-c-modal__close::before {
  font-size: 40px;
  color: #4ca9b3;
}

@media screen and (max-width: 779px) {
  .fs-c-modal__close::before {
    font-size: 32px;
  }
}

.fs-c-creditCardIcons {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.fs-c-pairList {
  margin-top: 1em;
}

.fs-c-returnedSpecialContract {
  margin: -2em 0 5em;
  text-align: right;
}

.fs-c-returnedSpecialContract a {
  text-decoration: underline;
}

.fs-c-checkAndNotice {
  margin-top: 1em;
}

.fs-c-returnedSpecialContract {
  text-align: right;
}

.fs-c-button--standard {
  background: #CCC;
  padding: .25em 1em;
  border-radius: 5px;
}

.fs-c-orderTotalTable__grandTotal {
  color: #4ca9b3;
}

.fs-c-orderTotalTable .fs-c-orderTotalTable__grandTotal th {
  font-weight: bold;
  background: none;
}

.fs-c-orderTotalTable .fs-c-orderTotalTable__grandTotal > td {
  font-size: 16px;
  font-weight: bold;
}

.fs-c-orderTotalTable .fs-c-orderTotalTable__grandTotal > td .fs-c-price__value {
  font-size: 24px;
}

.fs-c-orderTotalTable th {
  background: #eef3f3;
}

.fs-c-buttonContainer--pair,
.fs-c-checkout-addressee__control {
  padding-bottom: 0;
}

.fs-c-checkout-addressee__control {
  text-align: right;
}

.fs-c-checkout-addressee {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 779px) {
  .fs-c-checkout-addressee {
    display: block;
  }
}

.fs-c-checkout-addressee > * {
  width: 50%;
}

@media screen and (max-width: 779px) {
  .fs-c-checkout-addressee > * {
    width: 100%;
  }
}

.fs-c-buttonContainer--pair {
  text-align: right;
}

.fs-c-buttonContainer--pair .fs-c-button--cancel {
  background: none;
  padding: 0;
}

.fs-c-modal__close {
  position: absolute;
  top: 0;
  padding: 0;
  right: 0;
  z-index: 1;
}

.fs-c-checkout-addressee__data__name__home {
  font-size: inherit;
}

.fs-c-inputInformation .fs-c-inputInformation__field,
.fs-c-inputInformation__field .fs-c-inputInformation__field {
  width: 100%;
  max-width: 100%;
  min-width: 100%;
}

@media screen and (max-width: 779px) {
  .fs-c-postage__list dt, .fs-c-postage__list dd {
    width: 14%;
  }
  .fs-c-documentArticle {
    padding: 10% 0;
  }
  .fs-c-documentColumn__heading {
    font-size: 16px;
    padding: 3%;
    margin-bottom: 5%;
  }
  .fs-c-postage__list {
    margin: 5% 0;
  }
  .fs-c-documentColumn {
    margin-bottom: 10%;
  }
  .fs-c-documentArticle__heading {
    font-size: 20px;
    margin-bottom: 10%;
  }
  .fs-c-specTable {
    width: 100%;
  }
  .fs-c-creditCardIcons__image {
    max-height: inherit;
    width: 50px;
  }
  .fs-c-creditCardIcons__icon {
    margin-right: 5px;
  }
  .fs-c-documentSubColumn {
    padding: 4%;
    margin-top: 5%;
  }
  .fs-c-specTable th, .fs-c-specTable td {
    padding: 4%;
    width: 42%;
  }
  .fs-c-orderedList,
  .fs-c-list {
    margin: 7% 0 0 2em;
  }
  .fs-p-address {
    margin-top: 5%;
  }
  .fs-p-aboutTerms table {
    margin-top: 5%;
  }
  .fs-c-documentColumn__content a.tel {
    pointer-events: inherit;
  }
  .fs-c-quantity {
    float: right;
  }
  .fs-c-cartTable__dataCell::after {
    content: "";
    display: block;
    clear: both;
  }
  .fs-c-cartTable__dataCell--quantity {
    width: auto;
  }
  .fs-c-cartTable__dataCell--quantity {
    text-align: right;
    width: auto;
  }
  .fs-c-quantity {
    float: right;
  }
  .fs-c-cartTable__row {
    border: 1px solid #CCC;
  }
  .fs-c-cartTable__actionButton {
    display: block;
  }
  .fs-c-button--cancel--cart {
    border: 1px solid #CCC;
    font-size: 14px;
    padding: 0.25em 0;
  }
  .fs-c-button--buyItLater {
    margin-top: .5em;
  }
  .fs-c-quantity__select {
    font-size: 16px;
  }
  .fs-c-cartDiscountInfo {
    padding: 4%;
    margin: 1em 0;
  }
  .fs-c-orderTotalTable {
    width: 100%;
  }
  .fs-c-orderTotalTable__itemPriceSummary .fs-c-price__value {
    font-size: 18px;
  }
  .fs-c-checkout-destination__control {
    display: block;
    margin-top: 0;
  }
  .fs-c-checkout-destination__button {
    text-align: right;
  }
  .fs-c-button--standard {
    margin-top: 1em;
  }
  .fs-c-checkout-customerInfo, .fs-c-checkout-destination__list {
    margin-bottom: 0;
  }
  .fs-c-checkout-destination__name,
  .fs-c-checkout-customerInfo__name {
    font-size: 20px;
  }
  .fs-c-checkAndNotice__notice {
    margin-left: 0;
  }
  .fs-c-returnedSpecialContract {
    margin-top: -4em;
  }
  .fs-c-checkout-checkoutMethodList > li {
    margin-bottom: 2em;
  }
  .fs-c-productListCarousel .fs-c-price {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .fs-c-productListCarousel .fs-c-productPrice__main__label {
    margin-right: 0;
  }
  .fs-c-productListCarousel .fs-c-productPrice {
    text-align: center;
  }
}

.fs-c-purchaseHere,
.fs-c-payWithAmazon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
}

@media screen and (max-width: 779px) {
  .fs-c-purchaseHere,
  .fs-c-payWithAmazon {
    display: block;
  }
}

.fs-c-button--purchaseHere,
.fs-c-button--loginAndPurchase,
.fs-c-button--unregisteredUserPurchase {
  margin-top: 0;
  width: 200px;
  height: 45px;
  line-height: 45px;
  font-size: 15px;
}

@media screen and (max-width: 779px) {
  .fs-c-button--loginAndPurchase {
    margin-bottom: 1em;
  }
}

.fs-c-purchaseHere > *,
.fs-c-payWithAmazon > * {
  width: 30%;
}

@media screen and (max-width: 779px) {
  .fs-c-purchaseHere > *,
  .fs-c-payWithAmazon > * {
    width: 100%;
  }
}

.fs-c-purchaseHere__message,
.fs-c-payWithAmazon__message {
  text-align: left;
  width: 70%;
}

@media screen and (max-width: 779px) {
  .fs-c-purchaseHere__message,
  .fs-c-payWithAmazon__message {
    text-align: center;
    width: 100%;
    margin-bottom: 1em;
  }
}

#fs-checkout-payHere-container,
#fs-checkout-amazon-container {
  background: #eef3f3;
  padding: 2%;
}

@media screen and (max-width: 779px) {
  #fs-checkout-payHere-container,
  #fs-checkout-amazon-container {
    padding: 4%;
  }
}

#AmazonPayButton {
  margin: 0 auto;
}

.fs-c-wishlistProduct {
  margin-top: 3em;
}

.fs-c-button--particular .fs-c-button__label {
  position: relative;
}

.fs-c-button--particular .fs-c-button__label:before {
  content: "\f004";
  font-family: "Font Awesome 5 Free";
}

/* ======================================================================
 omatome
====================================================================== */
.omatome {
  padding-bottom: 150px;
}

@media screen and (max-width: 779px) {
  .omatome {
    padding-bottom: 15%;
  }
}

.omatome .txt {
  text-align: center;
  margin-top: 2em;
  font-weight: bold;
  color: #da3955;
}

.omatome input[type="number"]::-webkit-outer-spin-button,
.omatome input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.omatome input[type="number"] {
  -moz-appearance: textfield;
}

.omatome table {
  width: 100%;
  line-height: 1.5;
  margin: 3em 0;
}

.omatome table th, .omatome table td {
  border: 1px solid #CCC;
  text-align: center;
  padding: 10px 15px;
}

.omatome table th {
  background: #eef3f3;
  font-weight: bold;
}

@media screen and (max-width: 779px) {
  .omatome table th:nth-child(3) {
    width: 40%;
  }
}

.omatome table input + td {
  text-align: left;
}

.omatome table td input {
  width: 3em;
}

.omatome table td img {
  vertical-align: middle;
  width: 150px;
}

@media screen and (max-width: 779px) {
  .omatome table td img {
    width: 50px;
    display: block;
    margin: 0 auto;
  }
}

.omatome_bnr01 {
  text-align: center;
}

.omatome_bnr02,
.omatome_bnr03 {
  text-align: right;
  padding: 0 50px 20px;
}

@media screen and (max-width: 779px) {
  .omatome_bnr02,
  .omatome_bnr03 {
    padding: 5% 0 4%;
  }
}

/* ======================================================================
 mypage
====================================================================== */
.mypage {
  letter-spacing: 0.025em;
  padding: 60px 0;
}

@media screen and (max-width: 779px) {
  .mypage {
    padding: 7% 0;
  }
}

.mypage_ttl01 {
  text-align: center;
  font-weight: bold;
  font-size: 24px;
}

@media screen and (max-width: 779px) {
  .mypage_ttl01 {
    font-size: 20px;
  }
}

.mypage_ttl02 {
  font-weight: bold;
  font-size: 20px;
}

.mypage_ttl02:before {
  content: "";
  display: inline-block;
  vertical-align: text-bottom;
  background: #4ca9b3;
  margin-right: 12px;
  width: 3px;
  height: 24px;
}

.mypage_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #4ca9b3;
  padding: 28px 30px;
  margin: 40px 0;
}

@media screen and (max-width: 779px) {
  .mypage_top {
    display: block;
    padding: 4%;
    margin: 7% 0 5%;
  }
}

.mypage_top > * {
  width: 50%;
}

@media screen and (max-width: 779px) {
  .mypage_top > * {
    width: 100%;
    text-align: center;
  }
}

.mypage_top .name {
  font-weight: bold;
  font-size: 18px;
}

@media screen and (max-width: 779px) {
  .mypage_top .name {
    font-size: 16px;
    padding-bottom: 4%;
  }
}

.mypage_top .name span {
  font-size: 22px;
  margin-right: 0.25em;
}

@media screen and (max-width: 779px) {
  .mypage_top .name span {
    font-size: 19px;
  }
}

.mypage_top .logout {
  text-align: right;
}

@media screen and (max-width: 779px) {
  .mypage_top .logout {
    text-align: center;
  }
}

.mypage_top .logout a {
  font-size: 14px;
}

@media screen and (max-width: 779px) {
  .mypage_top .logout a {
    border-top: 1px solid #4ca9b3;
    display: block;
    font-size: 13px;
    padding-top: 4%;
  }
}

.mypage_top .logout a img {
  vertical-align: middle;
  width: 26px;
  margin-right: .5em;
}

@media screen and (max-width: 779px) {
  .mypage_top .logout a img {
    width: 20px;
  }
}

.mypage_menu {
  margin-bottom: 50px;
}

@media screen and (max-width: 779px) {
  .mypage_menu {
    background: #c8e5e7;
    margin-bottom: 0;
    padding: 3% 0 5%;
  }
}

.mypage_menu .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.mypage_menu .menu a {
  -webkit-transition: background 0.2s linear;
  transition: background 0.2s linear;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #d0d4d5;
  border-radius: 5px;
  width: 448px;
  margin-top: 20px;
  padding: 20px;
}

@media screen and (max-width: 779px) {
  .mypage_menu .menu a {
    width: 32%;
    height: 110px;
    padding: 0;
    display: block;
    border: none;
    background: #FFF;
    text-align: center;
    margin-top: 2%;
    position: relative;
  }
}

.mypage_menu .menu a:hover {
  background: #f5f8f9;
}

.mypage_menu .menu a:hover .box .ttl {
  text-decoration: underline;
}

.mypage_menu .menu a:not(:nth-child(2n)) {
  margin-right: 20px;
}

@media screen and (max-width: 779px) {
  .mypage_menu .menu a:not(:nth-child(2n)) {
    margin-right: 0;
  }
}

@media screen and (max-width: 779px) {
  .mypage_menu .menu a:not(:nth-child(3n)) {
    margin-right: 2%;
  }
}

.mypage_menu .menu a .img {
  width: 80px;
  margin-right: 30px;
}

@media screen and (max-width: 779px) {
  .mypage_menu .menu a .img {
    width: 50%;
    margin: 15% auto;
  }
}

.mypage_menu .menu a .img img {
  width: 100%;
}

.mypage_menu .menu a .box .ttl {
  display: inline-block;
  background: url(https://labo.itembox.design/item/tsuda/img/common/arrow01_r.png) no-repeat 100% 50%;
  background-size: 6px;
  padding-right: 1em;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
}

@media screen and (max-width: 779px) {
  .mypage_menu .menu a .box .ttl {
    display: block;
    background: none;
    padding-right: 0;
    font-size: 11px;
    margin-bottom: 0;
    line-height: 1.4;
    position: absolute;
    width: 90%;
    bottom: 10%;
    left: 5%;
  }
}

.mypage_menu .menu a .box .txt {
  font-size: 14px;
  line-height: 1.3;
}

.fs-c-wishlistProduct {
  display: none;
}

.fs-c-buttonContainer {
  margin-bottom: 0;
}

#fs-checkout-amazon-container .fs-c-buttonContainer,
#fs-checkout-payHere-container .fs-c-buttonContainer,
.fs-c-fsLogin .fs-c-buttonContainer {
  margin-bottom: 0;
}

.notmember {
  text-align: center;
}

.notmember .my-true {
  display: none;
}

.notmember .bal {
  text-align: center;
  font-weight: bold;
  background: url(https://labo.itembox.design/item/tsuda/img/system/coupon_bal.png) no-repeat;
  width: 550px;
  margin: 0 auto;
  font-size: 30px;
  padding: 82px 0 60px;
}

@media screen and (max-width: 779px) {
  .notmember .bal {
    width: 100%;
    font-size: 15px;
    padding: 16% 0 9%;
    background-size: 100%;
    margin-top: -7%;
  }
}

.notmember .txt {
  line-height: 1.5;
  font-size: 26px;
  margin-top: 0.5em;
}

@media screen and (max-width: 779px) {
  .notmember .txt {
    font-size: 16px;
  }
}

.notmember .txt span {
  font-weight: bold;
  color: #4ca9b3;
  font-size: 30px;
}

@media screen and (max-width: 779px) {
  .notmember .txt span {
    line-height: 1.5;
    font-size: 18px;
  }
}

.notmember .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 70px 0 50px;
}

@media screen and (max-width: 779px) {
  .notmember .list {
    display: block;
    margin: 10% 0 7%;
  }
}

.notmember .list li {
  width: 30%;
  line-height: 1.5;
}

@media screen and (max-width: 779px) {
  .notmember .list li {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.notmember .list li:not(:last-child) {
  margin-right: 5%;
}

@media screen and (max-width: 779px) {
  .notmember .list li:not(:last-child) {
    margin-bottom: 4%;
  }
}

.notmember .list li .ttl {
  color: #4ca9b3;
  font-weight: bold;
  min-height: 4em;
  font-size: 18px;
}

@media screen and (max-width: 779px) {
  .notmember .list li .ttl {
    min-height: auto;
    text-align: left;
    margin-bottom: 3%;
  }
}

.notmember .list li .txt {
  text-align: left;
}

@media screen and (max-width: 779px) {
  .notmember .list li .img {
    width: 30%;
    margin-right: 4%;
  }
}

@media screen and (max-width: 779px) {
  .notmember .list li .detail {
    width: 66%;
  }
}

.fs-c-productQuantityAndWishlist__wishlist {
  margin-bottom: 0;
}

.thanks {
  text-align: center;
  line-height: 1.5;
}

.thanks .ttl {
  font-family: "Playfair Display", serif;
  letter-spacing: 0.05em;
  font-size: 30px;
  margin-top: 50px;
}

@media screen and (max-width: 779px) {
  .thanks .ttl {
    font-size: 20px;
    margin-top: 5%;
  }
}

.thanks .ttl span {
  font-size: 60px;
}

@media screen and (max-width: 779px) {
  .thanks .ttl span {
    font-size: 40px;
  }
}

.thanks .img img {
  width: 100%;
}

.thanks .txt {
  margin-bottom: 1em;
}

.thanks .mail {
  color: #4ca9b3;
  text-decoration: underline;
  margin-bottom: 1em;
}

.thanks .att {
  border: 1px solid #4ca9b3;
  text-align: left;
  width: 660px;
  margin: 50px auto;
  padding: 20px;
  font-size: 14px;
}

@media screen and (max-width: 779px) {
  .thanks .att {
    width: 92%;
    padding: 4%;
    margin: 7% auto 15%;
    font-size: 12px;
  }
}

.thanks .sec_btn01 {
  margin-bottom: 100px;
}

@media screen and (max-width: 779px) {
  .thanks .sec_btn01 {
    margin-bottom: 20%;
  }
}

.fs-c-checkoutSuccess {
  text-align: center;
  margin: 0 auto 50px;
  line-height: 2;
  font-weight: bold;
  color: #4ca9b3;
  width: 1000px;
  font-size: 20px;
}

@media screen and (max-width: 779px) {
  .fs-c-checkoutSuccess {
    width: 92%;
    font-size: 14px;
    margin: 0 auto 7%;
  }
}

.fs-c-orderHistoryItem__orderInfo__info {
  display: table;
  width: 100%;
  text-align: left;
  margin: 0 auto -1px;
  border-collapse: collapse;
}

.fs-c-orderHistoryItem__orderInfo__info > * {
  display: table-cell;
  border: 1px solid #CCC;
  padding: 5px;
}

.fs-c-orderHistoryItem__orderInfo__info > dt {
  width: 30%;
}

.fs-c-orderHistoryItem__orderInfo__info > dd {
  width: 70%;
}

.fs-c-orderHistoryItem__header__button {
  text-align: left;
  margin: 10px 0 0;
}

.fs-c-orderHistoryItem__header__button a {
  color: #4ca9b3;
  text-decoration: underline;
}

.fs-c-orderHistoryItem__product {
  display: table;
  width: 100%;
}

.fs-c-orderHistoryItem__product > * {
  display: table-cell;
  vertical-align: middle;
  text-align: left;
}

.fs-c-orderHistoryItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #EEE;
}

.fs-c-orderHistoryItem__header {
  width: 50%;
}

.fs-c-orderHistoryItem__body {
  margin-left: 3%;
}

.fs-c-orderDetail {
  width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width: 779px) {
  .fs-c-orderDetail {
    width: 92%;
  }
}

.fs-c-orderDetail + .fs-c-buttonContainer {
  text-align: center;
}

.fs-c-orderDetailList,
.fs-c-addresseeList {
  display: table;
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 5%;
  line-height: 1.5;
}

.fs-c-orderDetailList > *,
.fs-c-addresseeList > * {
  display: table-cell;
  border: 1px solid #CCC;
  padding: 5px;
}

.fs-c-orderTotalInfo .fs-c-orderTotalTable,
.fs-c-orderDetailInfo__orderTotal .fs-c-orderTotalTable {
  margin: 3% 0 5%;
}

.fs-c-deliveryInfoList {
  margin-bottom: 5%;
}

.fs-c-orderDetailInfo__orderTotal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media screen and (max-width: 779px) {
  .fs-c-orderHistoryItem {
    display: block;
  }
  .fs-c-orderHistoryItem__header {
    width: 100%;
  }
  .fs-c-orderHistoryItem__body {
    margin-left: 0;
  }
  .fs-c-orderHistoryItem__product .fs-c-orderHistoryItem__productImage a {
    width: 100%;
    display: block;
  }
  .fs-c-orderHistoryItem__product .fs-c-orderHistoryItem__productImage {
    width: 15%;
  }
}

@media screen and (max-width: 779px) {
  .fs-c-productListCarousel__ctrl {
    display: none !important;
  }
  .fs-c-productListCarousel__list .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100% !important;
  }
  .fs-c-productListCarousel__list .fs-c-productListCarousel__ctrl {
    display: none;
  }
  .fs-c-productListCarousel__list .fs-c-slick .slick-slide {
    width: 46%;
    margin: 0 2%;
  }
  .fs-c-productListCarousel__list .fs-c-productListCarousel__ctrl {
    display: none !important;
  }
  .fs-c-productListCarousel__list .fs-c-productListCarousel .fs-c-productPrice,
  .fs-c-productListCarousel__list .fs-c-slick .slick-slide .fs-c-productPrice__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .fs-c-productListCarousel__list .fs-c-slick .slick-slide:not(:nth-child(-n+4)) {
    display: none;
  }
  .fs-c-productListCarousel__list .fs-c-button--particular .fs-c-button__label {
    font-size: 0;
    letter-spacing: 0;
  }
  .fs-c-productListCarousel__list .fs-c-button--particular .fs-c-button__label:before {
    font-size: 20px;
  }
  .fs-c-productListCarousel__list .fs-c-productQuantityAndWishlist__wishlist {
    text-align: center;
  }
  .fs-c-productListCarousel__list .fs-c-button--particular {
    line-height: normal;
    padding: 0;
    height: 40px;
    width: 40px;
    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;
  }
}

.fs-c-slick .slick-slide .fs-c-productMark,
.fs-c-slick .slick-slide .fs-l-main .product button,
.fs-c-slick .slick-slide .fs-c-buttonContainer,
.fs-c-slick .slick-slide .fs-c-productPrice__main__label,
.fs-c-productPrice--selling .fs-c-productPrice__main__label {
  display: none;
}

.product_box {
  position: relative;
}

.product_box .fs-c-productListItem__productDescription {
  margin: 0;
}

.product_box .fs-c-productListItem__productDescription {
  padding-right: 40px;
}

.product_box .fs-c-productPrice--listed + .fs-c-productPrice--selling {
  color: #da3955;
}

.product_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 779px) {
  .product_btn {
    display: block;
  }
}

.product_btn .fs-c-button--addToCart--list {
  height: 40px;
  font-size: 14px;
  border-radius: 0;
}

.product_btn .fs-c-buttonContainer {
  margin-bottom: 0;
  width: 48%;
  font-size: 14px;
  border-radius: 0;
}

@media screen and (max-width: 779px) {
  .product_btn .fs-c-buttonContainer {
    width: 100%;
  }
}

.product_btn .product_link {
  margin: 0;
  width: 48%;
  height: 40px;
  line-height: inherit;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 14px;
  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;
  border-radius: 0;
}

@media screen and (max-width: 779px) {
  .product_btn .product_link {
    width: 100%;
    margin-bottom: 5px;
  }
}

.product_btn .fs-c-button--addToWishList--icon.fs-c-button--particular {
  font-size: 0;
  letter-spacing: 0;
  line-height: normal;
  padding: 0;
  height: 40px;
  width: 40px;
  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;
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  border: none;
  background: none;
  width: auto;
  height: auto;
}

.product_btn .fs-c-button--addToWishList--icon.fs-c-button--particular .fs-c-button__label:before {
  font-size: 20px;
}

.product_btn .fs-c-button--addToWishList--icon.fs-c-button--particular .fs-c-button__label:after {
  content: "\f067";
  font-family: "Font Awesome 5 Free";
  font-size: 10px;
  font-weight: bold;
  color: #da3955;
}

.product_btn .fs-c-button--removeFromWishList--icon.fs-c-button--particular {
  font-size: 0;
  letter-spacing: 0;
  line-height: normal;
  padding: 0;
  height: 40px;
  width: 40px;
  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;
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  border: none;
  background: none;
  width: auto;
  height: auto;
}

.product_btn .fs-c-button--removeFromWishList--icon.fs-c-button--particular .fs-c-button__label:before {
  content: "\f004";
  font-family: "Font Awesome 5 Free";
  font-size: 20px;
  font-weight: bold;
  color: #da3955;
  margin-right: 10px;
}

.product_sizeprice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.product_sizeprice--txt {
  margin-right: 1em;
  font-size: 25px;
}

@media screen and (max-width: 779px) {
  .product_sizeprice--txt {
    font-size: 15px;
  }
}

.fs-c-productPostage {
  margin-left: 1em;
  font-weight: bold;
  color: #da3955;
}

.fs-c-productCarouselMainImage__image img {
  width: 100%;
}

.fs-c-slick.slick-initialized .slick-slide {
  width: 470px;
}

@media screen and (max-width: 779px) {
  .fs-c-slick.slick-initialized .slick-slide {
    width: 300px;
  }
}

@media screen and (max-width: 779px) {
  .fs-c-slick .slick-list {
    padding: 0 !important;
    margin: 0 12% !important;
  }
}

.fs-c-slick .slick-prev, .fs-c-slick .slick-next {
  background: none;
}

.fs-c-slick .slick-prev:before, .fs-c-slick .slick-next:before {
  color: #4ca9b3;
}

/* ======================================================================
 wp
====================================================================== */
#main {
  width: 900px;
  background-color: #fff;
  margin: 0 auto 150px;
  padding: 40px;
  -webkit-box-shadow: 0 0 5px 0 #c3dbdb;
  box-shadow: 0 0 5px 0 #c3dbdb;
  border-radius: 3px;
}

@media screen and (max-width: 779px) {
  #main {
    width: 100%;
    padding: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    margin: 0 0 15%;
  }
}

.faq .question h2.h2_1 {
  background: url(https://www.tsuda-cosme.com/wp-content/themes/tsuda_cosume/images/faq/h2_faq.png) no-repeat left top;
  height: 24px;
  text-indent: -9999px;
  margin-left: 20px;
  margin-bottom: 20px;
}

.topBox {
  padding-left: 20px;
}

@media screen and (max-width: 779px) {
  .topBox {
    padding-left: 0;
    width: 92%;
    margin: 0 auto;
  }
}

.topBox h3 {
  text-align: left;
  background: #edf3f3;
  padding: 15px 0 15px 20px;
}

.topBox dl p, .topBox .list p {
  padding-bottom: 7px;
}

.topBox dl span.q, .topBox .list li span.q {
  background: url(https://www.tsuda-cosme.com/wp-content/themes/tsuda_cosume/images/faq/icon_q.png) no-repeat left top;
  display: block;
  padding-left: 43px;
  min-height: 29px;
  margin-left: 14px;
  margin-top: 3px;
  padding-top: 3px;
}

.topBox dl, .topBox .list {
  border-bottom: 1px dotted #bdbdbd;
  margin-top: 40px;
  text-align: left;
  padding-left: 5px;
}

@media screen and (max-width: 779px) {
  .topBox dl, .topBox .list {
    padding-left: 0;
  }
}

.topBox .list {
  border-bottom: none;
}

.topBox .list li {
  float: none;
  margin-bottom: 40px;
  display: block;
  margin-right: 0;
  border-bottom: 1px dotted #bdbdbd;
}

.topBox .list li a {
  color: #232323;
}

.topBox dl dt, .topBox .list li p {
  line-height: 1.5;
  display: block;
  cursor: pointer;
  margin-top: -40px;
  font-size: 13px;
  font-weight: bold;
  padding-top: 10px;
}

.topBox dl dd {
  display: none;
  font-size: 13px;
  padding-top: 5px;
  margin-top: 4px;
}

.topBox dl span.a {
  background: url(https://www.tsuda-cosme.com/wp-content/themes/tsuda_cosume/images/faq/icon_a.png) no-repeat left top;
  display: block;
  padding-left: 43px;
  width: 800px;
  min-height: 29px;
  margin-left: 14px;
  margin-top: 12px;
  padding-top: 2.5px;
  margin-bottom: 10px;
}

.topBox dl dt.active {
  background-color: #e2f4fa;
  padding-top: 10px;
  padding-bottom: 2px;
}

.faq .menu,
.faq_box .menu {
  display: inline-block;
  width: 878px;
}

@media screen and (max-width: 779px) {
  .faq .menu,
  .faq_box .menu {
    width: 92%;
    margin: 0 auto 10%;
    /* display: block; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.faq .menu li,
.faq_box .menu li {
  display: block;
  margin-right: 10px;
  float: left;
  margin-bottom: 20px;
}

.faq_box .menu li:nth-child(3n) {
  margin-right: 0;
}

@media screen and (max-width: 779px) {
  .faq .menu li,
  .faq_box .menu li {
    float: none;
    margin-right: 3%;
    margin-bottom: 3%;
    width: 31.3%;
  }
}

.faq .menu li:nth-child(3n) {
  margin-right: 0;
}

#main .question {
  text-align: center;
}

.answer .question h2.h2_1 {
  background: url(https://www.tsuda-cosme.com/wp-content/themes/tsuda_cosume/images/faq/h2_faq.png) no-repeat left top;
  text-indent: -9999px;
  margin-left: 20px;
  margin-bottom: 20px;
}

.answerBox {
  padding: 13px 6px 26px 1px;
  border-width: 1px;
  border-color: #cdcdcd;
  border-style: solid;
  border-radius: 10px;
  background-color: white;
  -webkit-box-shadow: 0px 1px 7px 0px rgba(183, 183, 183, 0.27);
          box-shadow: 0px 1px 7px 0px rgba(183, 183, 183, 0.27);
  width: 868px;
  margin-left: 9px;
  margin-top: 11px;
  margin-bottom: 30px;
}

@media screen and (max-width: 779px) {
  .answerBox {
    width: 92%;
    margin: 0 auto 10%;
  }
  .answerBox img {
    width: auto;
  }
}

.answerBox h3 {
  text-align: left;
  background: #edf3f3;
  padding: 15px 0 15px 20px;
}

.answerBox dl p {
  padding-bottom: 7px;
}

.answerBox dl span.q {
  background: url(https://www.tsuda-cosme.com/wp-content/themes/tsuda_cosume/images/faq/icon_q.png) no-repeat left top;
  display: block;
  padding-left: 43px;
  min-height: 29px;
  margin-left: 14px;
  margin-top: 3px;
  padding-top: 3px;
}

.answerBox dl {
  margin-top: 40px;
  text-align: left;
  padding: 5px;
}

.answerBox dl dt {
  line-height: 1.5;
  display: block;
  margin-top: -40px;
  font-size: 13px;
  font-weight: bold;
  padding-top: 10px;
  background-color: #e2f4fa;
}

.answerBox dl dd {
  font-size: 13px;
  padding-top: 5px;
  margin-top: 4px;
}

.answerBox dl span.a {
  background: url(https://www.tsuda-cosme.com/wp-content/themes/tsuda_cosume/images/faq/icon_a.png) no-repeat left top;
  display: block;
  padding-left: 43px;
  width: 800px;
  min-height: 29px;
  margin-left: 14px;
  margin-top: 12px;
  padding-top: 2.5px;
  margin-bottom: 10px;
}

.answerBox dl dt.active {
  background-color: #e2f4fa;
  padding-top: 10px;
  padding-bottom: 2px;
}

.answer ul {
  display: inline-block;
  width: 878px;
}

.answer ul li {
  display: block;
  margin-right: 10px;
  float: left;
  margin-bottom: 20px;
}

.answer ul li:nth-child(3n) {
  margin-right: 0;
}

#main .inquiry {
  text-align: center;
  padding: 25px 0;
  font-size: 12px;
}

#main .inquiry span.indis {
  color: #df1855;
}

#main .inquiry h2 {
  background: url(https://www.tsuda-cosme.com/wp-content/themes/tsuda_cosume/images/inquiry/h2_inquiry.png) no-repeat left top;
  width: 153px;
  height: 0;
  padding-top: 49px;
  overflow: hidden;
  margin: 0 auto 40px auto;
}

#main .inquiry p.contacttxt {
  text-align: left;
  margin: 0 0 20px 65px;
  font-size: 14px;
}

#main .inquiry p.contacttxt a {
  background: none;
  display: inline-block;
  margin: 0;
  padding: 16px 1px;
  color: #3F51B5;
  text-decoration: underline;
  font-size: 13px;
  font-weight: bold;
}

#main .inquiry p.contacttxt.link_btn {
  text-align: center;
  margin: 5% 0;
}

#main .inquiry p.contacttxt.link_btn a {
  height: auto;
  padding: 0;
}

#main .inquiry table {
  margin: 0 auto;
}

#main .inquiry table th, #main .inquiry table td {
  padding: 25px 20px;
  border-bottom: 1px dotted #bdbdbd;
}

#main .inquiry table th {
  background-color: #dbecec;
  text-align: right;
  width: 185px;
  color: #474749;
  font-weight: bold;
}

#main .inquiry table th.error {
  background-color: #f8d6d6;
}

#main .inquiry table tr.bdt {
  border-top: 1px solid #bdbdbd;
}

#main .inquiry table tr.bdb {
  border-bottom: 1px solid #bdbdbd;
}

#main .inquiry table .textInput {
  width: 260px;
  border: 1px solid #878787;
  padding: 3px;
}

#main .inquiry table .textArea {
  width: 480px;
  height: 112px;
  border: 1px solid #878787;
}

#main .inquiry a {
  background: url(https://www.tsuda-cosme.com/wp-content/themes/tsuda_cosume/images/inquiry/inquiry_btn_sprite.png) no-repeat left top;
  display: block;
  overflow: hidden;
  height: 0;
  margin: 30px auto 0 auto;
  padding-top: 51px;
}

#main .inquiry a.entryBtn {
  background-position: 0 -51px;
  width: 257px;
}

#main .inquiry a.sendBtn {
  background-position: 0 -102px;
  width: 257px;
  float: right;
}

#main .inquiry a.reBtn {
  background-position: 0 -153px;
  width: 168px;
  float: left;
}

#main .inquiry a.topBtn {
  background-position: 0 0px;
  width: 257px;
}

#main .inquiry .subTxt {
  text-align: left;
  margin: 0 auto 5px auto;
}

#main .inquiry .clearfix {
  width: 444px;
  margin: 0 auto;
}

#main .inquiry .errTxt {
  border: 2px solid #df1855;
  color: #df1855;
  padding: 20px;
  margin: 0 auto 40px auto;
  width: 735px;
  text-align: left;
}

h3.posi-leftop {
  position: relative;
  left: -38px;
  top: -30px;
}

ul.flotiner {
  overflow: hidden;
  width: 920px;
  padding-bottom: 20px;
}

ul.flotiner li {
  width: 285px;
  float: left;
  padding-right: 20px;
}

ul.flotiner li p {
  font-size: 14px;
  padding-top: 15px;
  color: #232323;
}

h3.title-set {
  padding: 45px 10px;
}

p.color-padd {
  padding-left: 330px;
  color: #232323;
  padding-top: 25px;
}

h3.title-set2 {
  padding-top: 85px;
  text-align: center;
  padding-bottom: 40px;
}

ul.voiceList {
  width: 898px;
  margin: 0 auto;
  overflow: hidden;
}

ul.voiceList li {
  width: 400px;
  border: 1px solid #acaeaf;
  border-top: 5px solid #185c81;
  padding: 18px;
  margin-bottom: 20px;
}

ul.voiceList li h4 {
  border-left: 10px solid #185c81;
  padding: 0 0 0 10px;
  font-size: 18px;
  font-weight: bold;
  color: #dc1660;
  margin-bottom: 20px;
}

ul.voiceList li h4 span {
  display: block;
  font-size: 12px;
  font-weight: normal;
}

ul.voiceList li div.imgBox {
  width: 400px;
  height: 114px;
  margin: 0 auto 10px auto;
}

ul.voiceList li p.comment {
  min-height: 77px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 15px;
  padding-bottom: 15px;
  font-size: 12px;
}

ul.voiceList li p.item span {
  background: url(https://www.tsuda-cosme.com/wp-content/themes/tsuda_cosume/images/voice/icon_arrow.png) no-repeat left center;
  display: block;
  color: #583f0b;
  font-weight: bold;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 12px;
}

ul.voiceList li p.item {
  font-size: 12px;
}

ul.voiceList li p.item a {
  color: #232323;
}

ul.voiceList li:nth-child(2n+1) {
  float: left;
}

ul.voiceList li:nth-child(2n) {
  float: right;
}

#main .news .center a, #main .media .center a {
  color: #232323;
  font-size: 13px;
}

#main .newsDet h2 {
  padding-top: 40px;
  height: 0;
  overflow: hidden;
  background: url(https://www.tsuda-cosme.com/wp-content/themes/tsuda_cosume/images/top/h2_news.png) no-repeat 10px top;
  margin-bottom: 55px;
}

#main .newsDet h3 {
  padding-bottom: 3px;
  margin-bottom: 5px;
  border-bottom: 1px dotted #bdbdbd;
  font-size: 13px;
  font-weight: bold;
  color: #0c8db2;
}

#main .detText {
  font-size: 13px;
  padding: 0 5px;
  line-height: 2;
}

#main .detText .date {
  font-size: 11px;
  color: #a4a4a4;
  display: block;
  margin-bottom: 15px;
}

#main .newsDet a.reLink {
  display: block;
  border-top: 1px solid #e3e5e5;
  padding-top: 20px;
  text-align: center;
  color: #232323;
  font-size: 13px;
  margin-top: 200px;
}

#main .media h2 {
  background: url(https://www.tsuda-cosme.com/wp-content/themes/tsuda_cosume/images/media/h2_media.png) no-repeat left top;
  width: 218px;
  height: 0;
  padding-top: 20px;
  overflow: hidden;
  margin-bottom: 50px;
}

#main .media .artBox {
  border-top: 1px solid #97a1a1;
  border-bottom: 1px solid #d5d9d9;
  border-right: 1px solid #d5d9d9;
  border-left: 1px solid #d5d9d9;
  padding: 20px 0;
  margin-bottom: 20px;
}

#main .artBox h3 {
  padding: 0 0 15px 20px;
  margin-bottom: 15px;
  border-bottom: 1px dotted #bdbdbd;
  font-size: 13px;
  font-weight: bold;
  color: #0c8db2;
}

#main .artBox h3 span {
  font-size: 11px;
  font-weight: normal;
  margin-right: 15px;
}

#main .artBox h3 span.date {
  color: #a4a4a4;
}

#main .artBox h3 span.magazine {
  border: 1px solid #ff8420;
  padding: 1px 25px;
  color: #ff8420;
}

#main .artBox h3 span.tv {
  border: 1px solid #7cbe34;
  padding: 1px 40px;
  color: #7cbe34;
}

#main .artBox h3 span.web {
  border: 1px solid #048cc5;
  padding: 1px 33px;
  color: #048cc5;
}

#main .artBox .mediaTxt {
  margin-left: 20px;
  font-size: 12px;
  color: #232323;
  line-height: 1.5;
}

#main .artBox .mediaTxt a {
  color: #4ca9b3;
}

#main .artBox .mediaTxt strong {
  font-weight: bold;
}

#main .artBox .inner {
  padding: 0 20px;
}

#main .artBox .inner::after {
  content: "";
  display: block;
  clear: both;
}

#main .artBox .mediaImg {
  display: block;
  float: left;
  margin: 0 10px 0 0;
}

#main .artBox .mediaImg img {
  max-width: 150px;
  height: auto;
}

.wp-pagenavi {
  text-align: center;
}

#main .news ul li {
  padding: 0 0 15px 10px;
  margin-bottom: 15px;
  border-bottom: 1px dotted #bdbdbd;
  font-size: 13px;
}

#main .news ul li span {
  display: block;
  margin-right: 30px;
  float: left;
}

#main .news h2 {
  border-bottom: 2px solid #3f8f98;
  padding-top: 40px;
  height: 0;
  overflow: hidden;
  background: url(https://www.tsuda-cosme.com/wp-content/themes/tsuda_cosume/images/top/h2_news.png) no-repeat 10px top;
  margin-bottom: 20px;
  position: relative;
}

#main .news h2 a {
  background: url(https://www.tsuda-cosme.com/wp-content/themes/tsuda_cosume/images/top/icon_list.png) no-repeat left top;
  display: block;
  width: 83px;
  height: 0;
  padding-top: 18px;
  overflow: hidden;
  position: absolute;
  top: 5px;
  right: 0px;
}

#contens {
  margin: 0 0 15%;
  line-height: 1.5;
}

#contens img {
  height: auto;
}

#contens .media h2 {
  border-bottom: 2px solid #3a8f99;
  padding: 7.03125% 39.0625% 4.6875% 3.90625%;
  margin-bottom: 5.46875%;
}

#contens .media .mediaList li {
  padding: 0 4.6875% 7.8125%;
  margin-bottom: 7.8125%;
  border-bottom: 1px solid #cccccc;
  line-height: 1.5;
}

#contens .media .mediaList li a {
  color: #4ca9b3;
}

#contens .media .mediaList li strong {
  font-weight: bold;
}

#contens .media .mediaList li .mediaCat {
  text-align: center;
  font-weight: bold;
  font-size: 10px;
  font-size: 0.625rem;
  padding: 0.78125%;
}

#contens .media .mediaList li .magazine {
  border: 1px solid #ff8400;
  color: #ff8400;
}

#contens .media .mediaList li .mediaTitle {
  color: #008cb4;
  font-size: 14px;
  font-size: 0.875rem;
  padding-bottom: 1.5625%;
  margin: 2.34375% 0 3.90625%;
  border-bottom: 1px dotted #afafaf;
}

#contens .media .mediaList li .mediaImg {
  padding: 0 11.71875%;
  margin-bottom: 7.03125%;
  text-align: center;
}

#contens .media .mediaList li .mediaImages {
  display: block;
  margin-bottom: 1.5625%;
}

#contens .pager {
  margin-top: 3.125%;
  padding: 0 3.125%;
  overflow: hidden;
}

#contens .pager a {
  display: block;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  font-size: 0.875rem;
  background-color: #5aadad;
  border-radius: 5px;
  padding: 2.34375% 1.5625%;
}

#contens .pager .before {
  float: left;
}

#contens .pager .next {
  float: right;
}

#contens .pager div {
  width: 37.5%;
  text-align: center;
}

#contens .news h2 {
  border-bottom: 2px solid #3a8f99;
  padding: 7.03125% 55.46875% 4.6875% 3.90625%;
}

#contens .news .newsList li {
  border-bottom: 1px solid #cccccc;
}

#contens .news .newsList li a {
  display: block;
  background: url(https://www.tsuda-cosme.com/wp-content/themes/tsuda_cosume/sp/img/common/icon_arrow_green.png) no-repeat 95% center;
  background-size: 7.5px 10px;
  padding: 7.03125% 8.59375% 7.03125% 4.6875%;
}

#contens .news .date {
  font-size: 10px;
  font-size: 0.625rem;
  margin-bottom: 2.34375%;
  color: #474749;
}

#contens .news .newsDetail {
  margin: 7.03125% 0 14.0625%;
}

#contens .news .newsDetail .title {
  color: #008cb4;
  font-size: 14px;
  font-size: 0.875rem;
  border-bottom: 1px dotted #d7d7d7;
  padding-bottom: 1.5625%;
  margin-bottom: 5.46875%;
}

#contens .btnBackSummary {
  background-color: #5aadad;
  border-radius: 5px;
  padding: 2.8125% 0;
  text-align: center;
  width: 43.75%;
  margin: 0 auto;
  color: #fff !important;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
}

#contens h2.h2_1 {
  background: url(https://www.tsuda-cosme.com/wp-content/themes/tsuda_cosume/sp/img/faq/h2_faq.png) no-repeat left top;
  text-indent: -9999px;
  margin: 20px 0 10px 20px;
  padding-bottom: 5px;
  background-size: contain;
  width: 139px;
  height: 20px;
}

#contens .faq_box ul.faqallBox {
  padding: 0 10px 20px;
}

#contens div.topBoxUp {
  border-top: 2px solid #3b8f9a;
  padding: 0px 20px 10px 12px;
}

#contens div.topBox {
  border-top: 2px solid #cccccc;
  padding: 0px 20px 30px 12px;
}

#contens div.topBoxDown {
  border-bottom: 2px solid #cccccc;
  border-top: 2px solid #cccccc;
  padding: 0px 20px 10px 12px;
}

#contens .topBoxUp dl span.q span.Q {
  background: url(https://www.tsuda-cosme.com/wp-content/themes/tsuda_cosume/sp/img/faq/icon_q.png) no-repeat left top;
  background-size: 20px 20px;
  -webkit-background-size: 20px 20px;
  -moz-background-size: 20px 20px;
  -o-background-size: 20px 20px;
  min-height: 20px;
  padding-left: 39px;
  display: inline-block;
}

#contens .topBox dl span.q span.Q {
  background: url(https://www.tsuda-cosme.com/wp-content/themes/tsuda_cosume/sp/img/faq/icon_q.png) no-repeat left top;
  background-size: 20px 20px;
  -webkit-background-size: 20px 20px;
  -moz-background-size: 20px 20px;
  -o-background-size: 20px 20px;
  min-height: 20px;
  padding-left: 39px;
  display: inline-block;
}

#contens .topBoxDown dl span.q span.Q {
  background: url(https://www.tsuda-cosme.com/wp-content/themes/tsuda_cosume/sp/img/faq/icon_q.png) no-repeat left top;
  background-size: 20px 20px;
  -webkit-background-size: 20px 20px;
  -moz-background-size: 20px 20px;
  -o-background-size: 20px 20px;
  min-height: 20px;
  padding-left: 39px;
  display: inline-block;
}

#contens .topBoxUp dl span.q {
  display: block;
  padding-bottom: 0px;
}

#contens .topBox dl span.q {
  display: block;
  padding-bottom: 0px;
}

#contens .topBoxDown dl span.q {
  display: block;
  padding-bottom: 0px;
}

#contens .topBoxUp dl {
  margin-top: 30px;
}

#contens .topBox dl {
  margin-top: 30px;
}

#contens .topBoxDown dl {
  margin-top: 30px;
}

#contens .topBoxUp dl dt {
  line-height: 1.5;
  cursor: pointer;
}

#contens .topBox dl dt {
  line-height: 1.5;
  cursor: pointer;
}

#contens .topBoxDown dl dt {
  line-height: 1.5;
  cursor: pointer;
}

#contens .topBoxUp dl dd {
  display: none;
}

#contens .topBox dl dd {
  display: none;
}

#contens .topBoxDown dl dd {
  display: none;
}

#contens .topBoxUp dl span.a {
  display: block;
}

#contens .topBox dl span.a {
  display: block;
}

#contens .topBoxDown dl span.a {
  display: block;
}

#contens .topBoxUp dl span.a span.A {
  background: url(https://www.tsuda-cosme.com/wp-content/themes/tsuda_cosume/sp/img/faq/icon_a.png) no-repeat left top;
  background-size: 20px 20px;
  -webkit-background-size: 20px 20px;
  -moz-background-size: 20px 20px;
  -o-background-size: 20px 20px;
  min-height: 20px;
  padding-left: 39px;
  display: inline-block;
}

#contens .topBox dl span.a span.A {
  background: url(https://www.tsuda-cosme.com/wp-content/themes/tsuda_cosume/sp/img/faq/icon_a.png) no-repeat left top;
  background-size: 20px 20px;
  -webkit-background-size: 20px 20px;
  -moz-background-size: 20px 20px;
  -o-background-size: 20px 20px;
  min-height: 20px;
  padding-left: 39px;
  display: inline-block;
}

#contens .topBoxDown dl span.a span.A {
  background: url(https://www.tsuda-cosme.com/wp-content/themes/tsuda_cosume/sp/img/faq/icon_a.png) no-repeat left top;
  background-size: 20px 20px;
  -webkit-background-size: 20px 20px;
  -moz-background-size: 20px 20px;
  -o-background-size: 20px 20px;
  min-height: 20px;
  padding-left: 30px;
  display: inline-block;
}

#contens .topBoxUp dl dt.active {
  border-bottom: 1px dotted #a5a4a4;
  padding-bottom: 10px;
}

#contens .topBox dl dt.active {
  border-bottom: 1px dotted #a5a4a4;
  padding-bottom: 10px;
}

#contens .topBoxDown dl dt.active {
  border-bottom: 1px dotted #a5a4a4;
  padding-bottom: 10px;
}

#contens dd p {
  padding-top: 30px;
}

#main.inquiry {
  margin-top: 5%;
  line-height: 1.5em;
}

#main.inquiry input[type=text],
#main.inquiry input[type=email],
#main.inquiry textarea {
  border: 1px solid #CCC;
  width: 100%;
  padding: 0 10px;
}

#main.inquiry textarea {
  height: 10em;
}

/*************************
ベストコスメ
**************************/
.bestCosmePage h2 img {
  width: 100%;
}

.bestCosmePage h2 {
  padding: 0 10px;
}

.bestCosmePage h3 {
  height: 0;
  padding-top: 50px;
  overflow: hidden;
  margin: 0 auto 20px auto;
}

.bestCosmePage .bestList h3 {
  background: url(https://www.tsuda-cosme.com/wp-content/themes/tsuda_cosume/images/bestcosme/heading_cosme.jpg) no-repeat left top;
}

.bestCosmePage .proVoice h3 {
  background: url(https://www.tsuda-cosme.com/wp-content/themes/tsuda_cosume/images/bestcosme/heading_proVoice.jpg) no-repeat left top;
}

.bestCosmePage .bestList ul {
  overflow: hidden;
  width: 800px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 5%;
}

.bestCosmePage .bestList ul li {
  width: 390px;
  /*min-height: 290px;*/
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 20px;
  display: table-cell;
}

.bestCosmePage .bestList ul li:nth-child(2n+1), .voice ul.voiceList li:nth-child(2n+1) {
  margin-right: 18px;
}

.bestCosmePage .bestList ul li:nth-child(2n), .voice ul.voiceList li:nth-child(2n) {
  float: right;
}

.bestCosmePage .bestList ul li h4 {
  background: url(https://www.tsuda-cosme.com/wp-content/themes/tsuda_cosume/images/bestcosme/icon_crown.png) no-repeat 10px center #ece7dd;
  padding: 10px 10px 10px 50px;
  font-size: 24px;
  color: #583f0b;
  font-weight: bold;
}

.bestCosmePage .bestList ul li h4 span {
  vertical-align: middle;
  font-size: 12px;
  margin-left: 10px;
}

.bestCosmePage .bestList ul li h4 span.phonetic {
  font-size: 18px;
}

.bestCosmePage .bestList ul li div {
  overflow: hidden;
  background-color: #fbf9f5;
  padding: 15px;
}

.bestCosmePage .bestList ul li div img {
  display: block;
  width: auto;
  height: 200px;
  float: left;
}

.bestCosmePage .bestList ul li div p {
  font-size: 14px;
  text-align: left;
}

.bestCosmePage span.icon {
  background: url(https://www.tsuda-cosme.com/wp-content/themes/tsuda_cosume/images/bestcosme/icon_arrow.png) no-repeat left center;
  padding-left: 25px;
  display: block;
  margin: 25px 0 10px 0;
  font-weight: bold;
}

.bestCosmePage .bestList ul li div p a.item {
  font-size: 11px;
  color: #232323;
}

.bestCosmePage .bestList ul li div p a:hover, .voice ul.voiceList li p.item a:hover {
  text-decoration: underline;
}

.bestCosmePage .proVoice div.inBox {
  width: 890px;
  margin: 0 auto 10px auto;
  border: 1px solid #b2986b;
  padding: 5px;
}

.bestCosmePage .proVoice div.inBox dl {
  border: 1px solid #ddd4c4;
}

.bestCosmePage .proVoice div.inBox dl dt {
  background: url(https://www.tsuda-cosme.com/wp-content/themes/tsuda_cosume/images/bestcosme/icon_note.png) no-repeat 15px center #ece7dd;
  padding: 15px;
  font-weight: bold;
  font-size: 22px;
  color: #583f0b;
  padding-left: 60px;
}

.bestCosmePage .proVoice div.inBox dl dt span {
  font-size: 12px;
  vertical-align: middle;
  margin-left: 10px;
}

.bestCosmePage .proVoice div.inBox dl dd {
  padding: 0 15px 15px 15px;
}

.bestCosmePage .proVoice div.inBox dl dd p.pickupCom {
  font-weight: bold;
  font-size: 16px;
  padding-bottom: 5px;
  border-bottom: 1px dashed #ccc;
  margin-top: 15px;
}

.bestCosmePage .proVoice div.inBox dl dd span.icon {
  margin: 0 0 10px 0 !important;
}

.bestCosmePage .magazine_Box {
  position: relative;
}

.bestCosmePage .magazinepaper_Img {
  width: 15%;
  position: absolute;
  top: 72px;
  left: 714px;
}

.bestCosmePage .product_btn {
  text-align: center;
}

.bestCosmePage .product_btn a {
  font-size: 20px;
  margin: 20px 15px 0;
  background: #41a3af;
  display: inline-block;
  padding: 20px 50px;
  color: #fff;
}

.bestCosmePage .product_btn a:hover {
  opacity: 0.7;
}

.greeting .creamBtnBox {
  overflow: hidden;
  margin: 80px 0 110px;
}

.left {
  float: left;
}

.right {
  float: right;
}

.flnone {
  float: none !important;
}

.greeting {
  width: 800px;
  margin: 0 auto;
  text-align: center;
}

@media screen and (max-width: 779px) {
  .greeting {
    width: 100%;
  }
  .greeting .creamBtnBox {
    overflow: hidden;
    margin: 40px 10px 55px;
  }
  .greeting .creamBtnBox > form {
    width: 48%;
  }
  .greeting .creamBtnBox > form input[type="image"] {
    width: 100%;
  }
  .bestCosmePage .bestList h3 {
    width: 100%;
    background-position: center;
  }
  .bestCosmePage .bestList ul {
    width: 100%;
  }
  .bestCosmePage .bestList ul li:nth-child(2n+1), .voice ul.voiceList li:nth-child(2n+1) {
    margin-right: 0;
  }
  input[type="image"] {
    width: 100%;
  }
}

#contens .sp-answer {
  padding: 0px 20px 10px 12px;
  border-width: 1px;
  border-color: #cdcdcd;
  border-style: solid;
  border-radius: 10px;
  background-color: white;
  -webkit-box-shadow: 0px 1px 7px 0px rgba(183, 183, 183, 0.27);
          box-shadow: 0px 1px 7px 0px rgba(183, 183, 183, 0.27);
  margin-top: 5%;
}

#contens .sp-answer dl span.q span.Q {
  background: url(https://www.tsuda-cosme.com/wp-content/themes/tsuda_cosume/sp/img/faq/icon_q.png) no-repeat left top;
  background-size: 20px 20px;
  -webkit-background-size: 20px 20px;
  -moz-background-size: 20px 20px;
  -o-background-size: 20px 20px;
  min-height: 20px;
  padding-left: 39px;
  display: inline-block;
}

#contens .sp-answer dl span.q {
  display: block;
  padding-bottom: 0px;
}

#contens .sp-answer dl {
  margin-top: 30px;
}

#contens .sp-answer dl dt {
  line-height: 1.5;
  border-bottom: 1px dotted #a5a4a4;
  padding-bottom: 10px;
}

#contens .sp-answer dl span.a {
  display: block;
}

#contens .sp-answer dl span.a span.A {
  background: url(https://www.tsuda-cosme.com/wp-content/themes/tsuda_cosume/sp/img/faq/icon_a.png) no-repeat left top;
  background-size: 20px 20px;
  -webkit-background-size: 20px 20px;
  -moz-background-size: 20px 20px;
  -o-background-size: 20px 20px;
  min-height: 20px;
  padding-left: 39px;
  display: inline-block;
}

#contens .sp-answer dl dt.active {
  border-bottom: 1px dotted #a5a4a4;
  padding-bottom: 10px;
}

/* ======================================

	 Reset

====================================== */
#trust-form {
  width: 100%;
  height: auto;
  /* IE */
  /* Edge */
}

#trust-form input::-webkit-input-placeholder {
  color: #CCC;
}

#trust-form input:-ms-input-placeholder {
  color: #CCC;
}

#trust-form input::-ms-input-placeholder {
  color: #CCC;
}

#trust-form input::placeholder {
  color: #CCC;
}

#trust-form input:-ms-input-placeholder {
  color: #CCC;
}

#trust-form input::-ms-input-placeholder {
  color: #CCC;
}

#trust-form table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

#trust-form table,
#trust-form table th,
#trust-form table td {
  border: none;
}

/* reset form element style*/
.contact-form input,
.contact-formbutton,
.contact-formselect,
.contact-formtextarea {
  margin: 0;
  outline: none;
}

#trust-form input,
#trust-form select {
  vertical-align: middle;
}

#trust-form ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#trust-form ul li {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ======================================

	 Trust Form Style

====================================== */
div#trust-form.contact-form table {
  margin-bottom: 2em;
  text-align: center;
}

div#trust-form.contact-form table th {
  padding: 10px 0;
  border-bottom: 1px solid #ccc;
  text-align: left;
  vertical-align: top;
  font-weight: bold;
}

div#trust-form.contact-form table td {
  padding: 10px;
  border-bottom: 1px solid #ccc;
  text-align: left;
  vertical-align: middle;
}

div#trust-form.contact-form table tr:hover {
  background: #f4f4f4;
}

div#trust-form.contact-form table div {
  padding: 0 10px;
}

div#trust-form.contact-form p.submit-container {
  text-align: center;
}

div#trust-form.contact-form div.submessage {
  font-size: 80%;
  font-weight: normal;
}

div#trust-form.contact-form span.require {
  margin-left: 3px;
  color: #e55a3b;
}

div#trust-form.contact-form div.error {
  color: #e55a3b;
}

div#trust-form.contact-form input[type="checkbox"],
div#trust-form.contact-form input[type="radio"] {
  margin-right: 3px;
}

div#trust-form.contact-form label {
  display: block;
  width: 100%;
}

div#trust-form #confirm-button {
  text-align: center;
}

/* split css in input confirm finish  */
@media only screen and (max-width: 600px) {
  div#trust-form table {
    margin: 2em auto;
    border: 1px solid #ccc;
    border-bottom-width: 0;
  }
  div#trust-form table th,
  div#trust-form table td {
    padding: 0;
    float: left;
    clear: both;
    width: 94%;
  }
  div#trust-form table td {
    padding: 10px 3%;
  }
  div#trust-form table th {
    background-color: #f4f4f4;
  }
  div#trust-form table ul li {
    line-height: 3.5em;
  }
  div#trust-form.contact-form table tr:hover {
    background: #fff;
  }
}

#under .inquiry span.indis {
  color: #df1855;
}

#under .inquiry table {
  margin-bottom: 30px !important;
  border-top: 1px solid #bdbdbd;
  border-bottom: 1px solid #bdbdbd;
}

#under .inquiry table th.error {
  background-color: #f8d6d6;
}

#under .inquiry table tr.bdt {
  border-top: 1px solid #bdbdbd;
}

#under .inquiry table tr.bdb {
  border-bottom: 1px solid #bdbdbd;
}

#under .inquiry table .textInput,
#under .inquiry table input[type="text"] {
  width: 260px;
  border: 1px solid #878787;
  padding: 3px;
}

#under .inquiry table .textArea,
#under .inquiry table textarea {
  width: 480px;
  height: 112px;
  border: 1px solid #878787;
}

/* ======================================================================
 stage
====================================================================== */
.stage {
  padding: 70px 0;
}

@media screen and (max-width: 779px) {
  .stage {
    padding: 10% 0;
  }
}

.stage .container {
  width: 800px;
}

@media screen and (max-width: 779px) {
  .stage .container {
    width: 92%;
  }
}

.stage_ttl {
  text-align: center;
  font-weight: bold;
  font-size: 28px;
}

@media screen and (max-width: 779px) {
  .stage_ttl {
    font-size: 20px;
  }
}

.stage_sec {
  padding: 50px 0;
}

@media screen and (max-width: 779px) {
  .stage_sec {
    padding: 7% 0;
  }
}

.stage_sec .ttl01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
  font-size: 20px;
}

@media screen and (max-width: 779px) {
  .stage_sec .ttl01 {
    font-size: 16px;
  }
}

.stage_sec .ttl01:before {
  content: "";
  background: #4ca9b3;
  width: 5px;
  min-height: 30px;
  margin-right: 10px;
}

.stage_sec .ttl02 {
  color: #4ca9b3;
  font-weight: bold;
  margin: 3em 0 1em;
}

@media screen and (max-width: 779px) {
  .stage_sec .ttl02 {
    font-size: 16px;
  }
}

.stage_sec .ttl03 {
  display: inline-block;
  background: #4ca9b3;
  color: #FFF;
  font-weight: bold;
  padding: 7px 10px;
}

.stage_sec .c01 {
  background: #f5f5f5;
}

.stage_sec .c02 {
  background: #FFF;
}

.stage_sec .c03 {
  background: #FFF8E5;
}

.stage_sec .c04 {
  background: #F0F7EC;
}

.stage_sec .c05 {
  background: #ECF1F9;
}

.stage_sec .c06 {
  background: #f7e3e7;
}

.stage_sec .txt {
  line-height: 2;
  margin-top: 2em;
}

@media screen and (max-width: 779px) {
  .stage_sec .txt {
    line-height: 1.7;
    margin-top: 1em;
  }
}

.stage_sec .txt span {
  font-weight: bold;
  color: #4ca9b3;
}

.stage_sec .cap {
  line-height: 1.7;
  font-size: 14px;
}

@media screen and (max-width: 779px) {
  .stage_sec .cap {
    font-size: 12px;
  }
}

.stage_sec .cap span {
  font-weight: bold;
  color: #4ca9b3;
}

.stage_sec .cap a {
  text-decoration: underline;
  color: #4ca9b3;
  font-weight: bold;
}

.stage_sec .table {
  display: table;
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

@media screen and (max-width: 779px) {
  .stage_sec .table {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.stage_sec .table .thead, .stage_sec .table .tbody {
  display: table-row;
  text-align: center;
}

@media screen and (max-width: 779px) {
  .stage_sec .table .thead, .stage_sec .table .tbody {
    display: block;
    width: 50%;
  }
}

.stage_sec .table .thead .th, .stage_sec .table .thead .td, .stage_sec .table .tbody .th, .stage_sec .table .tbody .td {
  display: table-cell;
  border: 1px solid #e2e2e2;
  padding: 15px 0;
}

@media screen and (max-width: 779px) {
  .stage_sec .table .thead .th, .stage_sec .table .thead .td, .stage_sec .table .tbody .th, .stage_sec .table .tbody .td {
    display: block;
    margin: -1px 0 0 -1px;
  }
}

.stage_sec .table .thead .th, .stage_sec .table .tbody .th {
  font-weight: bold;
}

.stage_sec .pattern {
  text-align: center;
  margin: 20px 0 40px;
}

@media screen and (max-width: 779px) {
  .stage_sec .pattern {
    margin: 4% 0 7%;
  }
}

.stage_sec .gift {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}

@media screen and (max-width: 779px) {
  .stage_sec .gift {
    display: block;
    margin-top: 4%;
  }
}

.stage_sec .gift li {
  position: relative;
  border: 1px solid #4ca9b3;
  width: 253px;
  padding: 40px 20px 20px;
}

@media screen and (max-width: 779px) {
  .stage_sec .gift li {
    width: 92%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 6% 4% 4%;
  }
}

.stage_sec .gift li:not(:nth-child(3n)) {
  margin-right: 20px;
}

@media screen and (max-width: 779px) {
  .stage_sec .gift li:not(:nth-child(3n)) {
    margin: 0 0 4%;
  }
}

.stage_sec .gift li .label {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  font-size: 12px;
  padding: 5px;
}

.stage_sec .gift li .ico {
  text-align: center;
}

@media screen and (max-width: 779px) {
  .stage_sec .gift li .ico {
    width: 21%;
    margin-right: 9%;
  }
}

@media screen and (max-width: 779px) {
  .stage_sec .gift li .box {
    width: 70%;
  }
}

.stage_sec .gift li .ttl {
  text-align: center;
  font-weight: bold;
  color: #4ca9b3;
  font-size: 18px;
  margin: 20px 0;
}

@media screen and (max-width: 779px) {
  .stage_sec .gift li .ttl {
    text-align: left;
    margin: 0 0 4%;
    font-size: 16px;
  }
}

.stage_sec .gift li .txt {
  margin: 0;
  line-height: 1.7;
  font-size: 14px;
}

.stage_sec .gift li .txt span {
  color: inherit;
  font-weight: inherit;
  font-size: 12px;
}

.stage_sec .coupon {
  margin-bottom: 40px;
}

@media screen and (max-width: 779px) {
  .stage_sec .coupon {
    margin-bottom: 5%;
  }
}

.stage_sec .sec_btn01 {
  margin-top: 70px;
}

@media screen and (max-width: 779px) {
  .stage_sec .sec_btn01 {
    margin-top: 10%;
  }
}

.fs-c-slick .slick-prev {
  left: -10px;
}

.fs-c-slick .slick-next {
  right: -10px;
}

.fs-c-slick .slick-slide img {
  width: 100%;
  margin: 0 auto;
  max-height: 434px;
  max-width: 434px;
}

.fs-c-slick .slick-slide {
  margin-left: 40px;
}

.fs-c-productListCarousel .slick-slide {
  width: 186px;
}

@media screen and (max-width: 779px) {
  .fs-c-slick .slick-slide img {
    max-width: 375px;
    max-height: 375px;
    width: 100%;
  }
  .fs-c-slick .slick-list {
    margin: 0 !important;
  }
  .fs-c-productListCarousel .slick-slide {
    width: 48%;
    margin-left: 0;
  }
}

@media screen and (max-width: 413px) {
  .fs-c-slick .slick-slide img {
    width: 86%;
  }
  .fs-c-slick .slick-slide {
    margin-left: 0;
  }
}

.product {
  width: 100% !important;
}

.fs-c-productListCarousel.fs-c-slick {
  width: 1000px;
  margin: 0 auto;
}

form#fs_form {
  width: 1000px;
  margin: 0 auto;
}

p.product_ttl {
  width: 1000px;
  margin: 0 auto;
}

header .menu .list .sub_box--item:not(:nth-child(4n)){
  margin-right: 0;
}
header .menu .list .sub_box--item{
  width: 19%;
  margin-right: 1%!important;
}

@media screen and (max-width: 779px) {
  .fs-c-productListCarousel.fs-c-slick {
    width: 100%;
    margin: 0 auto;
  }
  form#fs_form {
    width: 92%;
    margin: 0 auto;
  }
  p.product_ttl, .fs-c-productListCarousel.fs-c-slick {
    width: 92%;
    margin: 0 auto;
  }
  header .menu .list .sub_box--item{
    width: 48%;
    margin-right: inherit!important;
  }
  header .menu .list .sub_box--item:not(:nth-child(2n)){
    margin-right: 4%!important;
  }
}

/* 220120 TOP KV */
.slide-animation {
  animation: fadezoom 2s 0s forwards;
}
@keyframes fadezoom {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.top_kv {
  position: relative;
}
.top_kv .slick-arrow {
  cursor: pointer;
  z-index: 999;
  position: absolute;
  top: 50%;
}
.top_kv .slider-next {
  right: 30px;
}
.top_kv .slider-prev {
  left: 30px;
}
.top_kv .slick-arrow {
  width: -23px;
  opacity: .6;
  transition: all 0.2s linear;
}
.top_kv .slick-arrow:hover {
  opacity: 1;
}
.top_kv .slick-arrow img {
  width: 46px;
}
.top_kv .top_kv_box {
  display: block;
  width: 100%;
  height: calc(100vh - 95px - 84px);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
}
.top_kv .top_kv_box._slider01 {
  background-image: url(https://labo.itembox.design/item/tsuda/img/top/kv_slider01.jpg);
}
.top_kv .top_kv_box._slider02 {
  background-image: url(https://labo.itembox.design/item/tsuda/img/top/kv_slider02.jpg);
}
.top_kv .top_kv_box._slider03 {
  background-image: url(https://labo.itembox.design/item/tsuda/img/top/kv_slider03.jpg);
}
.top_kv .top_kv_box._slider04 {
  background-image: url(https://labo.itembox.design/item/tsuda/img/top/kv_slider04.jpg);
}
@media screen and (max-width: 779px) {
  .top_kv .slider-next {
    right: 15px;
  }
  .top_kv .slider-prev {
    left: 15px;
  }
  .top_kv .slick-arrow {
    margin-top: 0;
    top: inherit;
    bottom: 15px;
  }
  .top_kv .slick-arrow img {
    width: 25px;
  }
  .top_kv .top_kv_box {
    height: inherit;
    background-image: none !important;
  }
}
