@charset "utf-8";
/* ------------------------------------------------------------

fonts

------------------------------------------------------------ */

html {
  font-size: 10px;
  line-height: 2;
  font-family: sans-serif, system-ui;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  word-wrap: break-word;
}


/* ------------------------------------------------------------

common

------------------------------------------------------------ */

/* PC or SP

SP: - 768px / PC: 769px -
---------------------------------------- */

@media (max-width: 768px){
  .pc {
    display: none !important;
  }
}

@media (min-width: 769px){
  .sp {
    display: none !important;
  }
}


/* Basic Tags
---------------------------------------- */

html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

*:focus {
  outline: none;
}

body {
  font-size: 1.4rem;
  color: #333;
  background: #fff;
}

a {
  color: #333;
  text-decoration: none;
}

a:hover,
button:hover {
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

table {
  width: 100%;
  border-collapse: collapse;
}

p,h1,h2,h3,h4,h5,h6,ul,ol,dl {
  margin: 16px 0 0 0;
}

.body_inner {
  width: 100%;
  overflow: hidden;
}

@media (min-width: 769px){
  body {
    font-size: 1.6rem;
  }
  .body_inner {
    min-width: 1024px;
  }

  p,h1,h2,h3,h4,h5,h6,ul,ol,dl {
    margin: 24px 0 0 0;
  }

  a,
  button {
    transition: all 0.3s ease;
    backface-visibility: hidden;
  }

  a:hover,
  button:hover {
    opacity: 0.6;
  }

  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }

  a[href*="tel:"]:hover {
    cursor: default;
    opacity: 1;
  }
}


/* mt スペース確保
---------------------------------------- */

.mt-xxl {
  margin-top: 60px !important;
}

.mt-xl{
  margin-top: 54px !important;
}

.mt-l {
  margin-top: 42px !important;
}

.mt-m {
  margin-top: 26px !important;
}

.mt-s {
  margin-top: 16px !important;
}

.mt-xs {
  margin-top: 10px !important;
}

.mt-0 {
  margin-top: 0 !important;
}

@media (min-width: 769px){
  .mt-xxl {
    margin-top: 96px !important;
  }

  .mt-xl {
    margin-top: 80px !important;
  }

  .mt-l {
    margin-top: 64px !important;
  }

  .mt-m {
    margin-top: 40px !important;
  }

  .mt-s {
    margin-top: 24px !important;
  }

  .mt-xs {
    margin-top: 15px !important;
  }
}



/* ------------------------------------------------------------

g-header

------------------------------------------------------------ */

.g-header {
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  background: #fff;
  padding: 29px 10px 11px;
  transition: box-shadow 1s;
}

/* メニューオープン */
body.menu-open .g-header {
  box-shadow: 0 1px 0 0 #c6c6c6;
}

.g-header_inner {
  width: 100%;
  display: flex;
}

.g-header_logo {
  text-align: center;
  order: 2;
  width: 100%;
  flex: 1;
  margin: 0;
}

.g-header_logo_ttl {
  width: 136px;
  height: 28px;
  line-height: 28px;
  margin: 6px auto 0;
}

.g-header_logo_txt {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: #672f87;
  color: #fff;
  font-size: 0.9rem;
  line-height: 20px;
  margin: 0;
  text-align: center;
}

.g-header_nav {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  width: 120px;
  order: 3;
}

.g-header_nav li {
  width: 40px;
  position: relative;
}

/* ログイン時のメニュー表示変更 */
.g-header_nav.fs-clientInfo:not(.is-ready) {
  display: flex !important;
}
.g-header_nav.fs-clientInfo.is-ready {
  display: flex;
}
.logout,
.logout.my-false,
.login.my-true {
  display: none;
}
.logout.my-true,
.login.my-false {
  display: block;
}

.g-header_nav_itemCount {
  display: block;
  width: 13px;
  height: 13px;
  font-size: 0.8rem;
  line-height: 13px;
  background: #672f87;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  top: -2px;
  right: 0;
}

.g-header_menuBtn {
  width: 120px;
  order: 1;
  margin: 2px 0 0 0;
}

@media (max-width: 399px){
  .g-header_menuBtn {
    width: 30px;
    order: 0;
  }
}

.g-header_menuBtn_inner {
  width: 30px;
  height: 20px;
  position: relative;
  margin: 5px 0 0 0;
}

.g-header_menuBtn_inner:hover {
  cursor: pointer;
}

.g-header_menuBtn_inner .g-header_menuBtn_label {
  display: block;
  position: absolute;
  top: 21px;
  left: -5px;
  right: -5px;
  text-align: center;
  font-size: 1rem;
  line-height: 1;
}

.g-header_menuBtn_inner .g-header_menuBtn_bar {
  display: block;
  width: 30px;
  height: 2px;
  background: #333;
  position: absolute;
  top: 8px;
  left: 0;
  transform: translate(0,-50%);
  transition: 0.5s;
}

.g-header_menuBtn_inner::before {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: #333;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.5s;
}

.g-header_menuBtn_inner::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: #333;
  position: absolute;
  bottom: 4px;
  left: 0;
  transition: 0.5s;
}

/* メニューオープン */
body.menu-open .g-header_menuBtn_inner .g-header_menuBtn_bar {
  opacity: 0;
}
body.menu-open .g-header_menuBtn_inner::before {
  animation: g-header_btn1 0.5s ease forwards;
}
body.menu-close .g-header_menuBtn_inner::before {
  animation: g-header_btn1-r 0.5s ease forwards;
}
body.menu-open .g-header_menuBtn_inner::after {
  animation: g-header_btn2 0.5s ease forwards;
}
body.menu-close .g-header_menuBtn_inner::after {
  animation: g-header_btn2-r 0.5s ease forwards;
}
@keyframes g-header_btn1 {
  0% {
    transform: matrix(1,0,0,1,0,0);
  }
  50% {
    transform: matrix(1,0,0,1,0,7);
  }
  100% {
    transform: matrix(0.7071,0.7071,-0.7071,0.7071,0,7);
  }
}
@keyframes g-header_btn1-r {
  0% {
    transform: matrix(0.7071,0.7071,-0.7071,0.7071,0,7);
  }
  50% {
    transform: matrix(1,0,0,1,0,7);
  }
  100% {
    transform: matrix(1,0,0,1,0,0);
  }
}
@keyframes g-header_btn2 {
  0% {
    transform: matrix(1,0,0,1,0,0);
  }
  50% {
    transform: matrix(1,0,0,1,0,-7);
  }
  100% {
    transform: matrix(0.7071,-0.7071,0.7071,0.7071,0,-7);
  }
}
@keyframes g-header_btn2-r {
  0% {
    transform: matrix(0.7071,-0.7071,0.7071,0.7071,0,-7);
  }
  50% {
    transform: matrix(1,0,0,1,0,-7);
  }
  100% {
    transform: matrix(1,0,0,1,0,0);
  }
}

@media (min-width: 769px){
  .g-header {
    padding: 0;
    min-width: 1024px;
  }

  .g-header_inner {
    width: 96%;
    max-width: 1100px;
    margin: 0 auto;
  }

  .g-header_logo {
    text-align: left;
    margin: 0 20px 0 0;
    display: flex;
    align-items: center;
  }

  .g-header_logo_ttl {
    width: 220px;
    height: 45px;
    margin: 0;
  }

  .g-header_logo_txt {
    position: static;
    background: none;
    color: #333333;
    font-size: 1.2rem;
    line-height: 1.5;
    margin: 0 0 0 24px;
    font-feature-settings: initial;
  }

  .g-header_nav {
    width: 360px;
    padding: 30px 0;
  }

  .g-header_nav li {
    width: 120px;
    height: 40px;
    border-left: solid 1px #c7c7c7;
  }

  .g-header_nav li:last-child {
    border-right: solid 1px #c7c7c7;
  }

  .g-header_nav a {
    display: block;
    height: 40px;
    text-align: center;
  }

  .g-header_nav img {
    height: 40px;
    width: auto;
  }

  .g-header_nav_itemCount {
    width: 16px;
    height: 16px;
    font-size: 1rem;
    line-height: 16px;
    top: 5px;
    right: 16px;
  }

  .g-header_menuBtn {
    width: 90px;
    order: 1;
  }

  .g-header_menuBtn_inner {
    width: 25px;
    height: 20px;
    position: relative;
    margin: 5px 0 0 5px;
  }

  .g-header_menuBtn_inner span {
    display: block;
    width: 25px;
    height: 2px;
    background: #333;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0,-50%);
  }

  .g-header_menuBtn_inner::before {
    content: '';
    display: block;
    width: 25px;
    height: 2px;
    background: #333;
    position: absolute;
    top: 0;
    left: 0;
  }

  .g-header_menuBtn_inner::after {
    content: '';
    display: block;
    width: 25px;
    height: 2px;
    background: #333;
    position: absolute;
    bottom: 0;
    left: 0;
  }
}




/* ------------------------------------------------------------

g-footer

------------------------------------------------------------ */

.g-footer {
  background: #f4f4f4;
  margin: 10px 0 0 0;
}

.g-footer_inner {
  padding: 20px 10px;
}

.g-footer_nav {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.3rem;
}

.g-footer_nav ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.g-footer_nav li {
  line-height: 1.25;
  margin: 10px 0 0 0;
}

.g-footer_nav_ttl {
  margin: 0;
  height: 25px;
}

.g-footer_nav_ttl img {
  height: 1.4rem;
  width: auto;
}

.g-footer_nav_contents {
  width: 50%;
}

.g-footer_nav_guide {
  order: 3;
  margin-top: 25px;
}

.g-footer_nav_others {
  order: 2;
  width: 50%;
  margin-top: 25px;
}

.g-footer_branding {
  border-top: solid 1px #c8c8c8;
  margin: 30px 0 0 0;
}

.g-footer_branding_logo {
  margin: 30px auto 0;
  width: 194px;
}

.g-footer_branding_sns {
  display: flex;
  justify-content: center;
  list-style-type: none;
  margin: 20px 0 0 0;
  padding: 0;
}

.g-footer_branding_sns li {
  width: 42px;
  padding: 0 10px;
}

.g-footer_copyright {
  font-size: 0.9rem;
  text-align: center;
  background: #333;
  color: #fff;
  padding: 6px 0;
  margin: 0;
}

@media (min-width: 769px){

  .g-footer {
    margin: 120px 0 0 0;
    min-width: 1024px;
  }

  .g-footer_inner {
    width: 96%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 0;
    display: flex;
  }

  .g-footer_nav {
    width: 75%;
    flex-wrap: nowrap;
    font-size: 1.4rem;
  }

  .g-footer_nav li {
    margin: 15px 0 0 0;
  }

  .g-footer_nav_contents {
    width: 33.3%;
  }

  .g-footer_nav_guide {
    order: 2;
    margin: 0;
    width: 33.3%;
  }

  .g-footer_nav_others {
    order: 3;
    width: 33.3%;
    margin-top: 25px;
  }

  .g-footer_branding {
    width: 25%;
    border-top: none;
    border-left: solid 1px #c8c8c8;
    margin: 0;
    padding: 0 0 0 30px;
  }

  .g-footer_branding_logo {
    margin: 0 auto;
    width: 100%;
    max-width: 240px;
  }

  .g-footer_branding_sns {
    margin: 30px 0 0 0;
  }

  .g-footer_branding_sns li {
    width: 50px;
    padding: 0 10px;
  }

  .g-footer_copyright {
    font-size: 1.2rem;
    padding: 8px 0;
    margin: 0;
  }
}



/* ------------------------------------------------------------

g-container

------------------------------------------------------------ */

.g-container {
  margin: 0 auto;
  padding-top: 80px;
}

.g-container_main {
  padding: 0 10px;
  margin: 0 0 50px 0;
}

@media (min-width: 769px){
  .g-container {
    padding-top: 100px;
    margin: 0 auto;
  }

  .g-container_inner {
    width: 96%;
    max-width: 1100px;
    min-width: 983px;
    margin: 0 auto;
  }

  .g-container_inner::after {
    content: '';
    display: block;
    clear: both;
  }

  .g-container_main {
    width: 78.181818%;
    float: right;
    padding: 0;
    margin: 0;
  }

  .g-container_sub {
    width: 16.363636%;
    float: left;
  }
}


/* パンくずリスト
---------------------------------------- */

.breadcrumb,
.fs-c-breadcrumb {
  display: block;
  margin: 10px 10px 0;
  font-size: 1rem;
  color: #672f89;
}

.breadcrumb ol,
.fs-c-breadcrumb ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.breadcrumb li,
.fs-c-breadcrumb li {
  display: inline;
}

.breadcrumb li::before,
.fs-c-breadcrumb li::before {
  content: '＞';
  display: inline-block;
  margin: 0 5px;
  color: #333;
}

.breadcrumb li:first-child::before,
.fs-c-breadcrumb li:first-child::before {
  content: none;
}

.breadcrumb a,
.fs-c-breadcrumb a {
  color: #333;
}

@media (min-width: 769px) {
  .breadcrumb,
  .fs-c-breadcrumb {
    margin: 14px 0 20px;
    font-size: 1.4rem;
  }
}


/* ------------------------------------------------------------

g-nav

------------------------------------------------------------ */

.g-nav {
  position: fixed;
  z-index: 9;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: translate(0,-100%);
  /* display: none; */
}

.g-nav_overlay {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #fff;
  z-index: 8;
  opacity: 0;
}

.g-nav_inner {
  position: fixed;
  z-index: 9;
  top: 50px;
  left: 0;
  right: 0;
  height: 100%;
  padding: 0 20px 90px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
}

@media (min-width: 769px){
  .g-nav {
    position: static;
    transform: translate(0,0);
    transition: none;
  }

  .g-nav_overlay {
    display: none;
    transition: none;
  }

  .g-nav_inner {
    position: static;
    height: auto;
    padding: 0;
    overflow-y: visible;
    -webkit-overflow-scrolling: initial;
    opacity: 1;
    transition: none;
  }
}


/* メニューオープン
---------------------------------------- */

body.menu-open .g-nav,
body.menu-close .g-nav,
body.menu-open .g-nav_overlay,
body.menu-close .g-nav_overlay,
body.menu-open .g-nav_inner,
body.menu-close .g-nav_inner{
  transition: .5s ease;
}

body.menu-open .g-nav {
  transform: translate(0,0);
}

body.menu-open .g-nav_overlay {
  opacity: 1;
}

body.menu-open .g-nav_inner {
  opacity: 1;
}


/* お問い合わせ
---------------------------------------- */

.g-nav_contact {
  margin: 20px 0 0 0;
  position: relative;
}

.g-nav_contact_btn {
  position: absolute;
  top: 78%;
  left: 10px;
  right: 10px;
  display: flex;
  justify-content: space-between;
  transform: translate(0,-50%);
}

.g-nav_contact_btn a {
  display: block;
  width: 48.5%;
  background: #672f87;
  color: #fff;
  font-size: 1.4rem;
  padding: 5px 0;
  border-radius: 20px;
  text-align: center;
}

.g-nav_contact_form::after {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-top: solid 1px rgba(255,255,255, 0.5);
  border-right: solid 1px rgba(255,255,255, 0.5);
  transform: rotate(45deg);
  margin: 0 0 0 5px;
}

@media (min-width: 769px){
  .g-nav_contact {
    margin: 40px 0 0 0;
  }

  .g-nav_contact_btn {
    top: 87%;
  }
  .g-nav_contact_btn a {
    width: 100%;
    font-size: 1.1rem;
    border-radius: 16px;
  }

  .g-nav_contact_form::after {
    width: 8px;
    height: 8px;
    margin: 0 0 0 8px;
  }
}


/* ページリスト
---------------------------------------- */

.g-nav_list {
  margin: 20px 0 0 0;
  padding: 0;
  list-style-type: none;
  font-size: 1.4rem;
}

.g-nav_list li {
  border-bottom: solid 1px #c6c6c6;
}

.g-nav_list li a {
  display: block;
  position: relative;
  padding: 6px 0;
}

.g-nav_list li a::after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-top: solid 1px #c6c6c6;
  border-right: solid 1px #c6c6c6;
  position: absolute;
  right: 3px;
  top: 50%;
  transform: translate(0,-50%) rotate(45deg);
}

li.g-nav_list_main {
  border: none;
}

li.g-nav_list_main a {
  background: #333;
  color: #fff;
  padding-left: 10px;
}

li.g-nav_list_main a::after {
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  right: 13px;
}

@media (min-width: 769px){
  .g-nav_list {
    margin: 40px 0 0 0;
    padding: 0;
    list-style-type: none;
  }

  .g-nav_list li a {
    padding: 16px 0;
  }

  .g-nav_list li a::after {
    width: 10px;
    height: 10px;
  }

  li.g-nav_list_main a {
    padding: 16px 0 16px 12px;
  }
}


/* 商品一覧
---------------------------------------- */

.g-nav_items {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.g-nav_items_item {
  border-bottom: solid 1px #c6c6c6;
}

.g-nav_items_item a {
  display: flex;
  align-items: center;
  padding: 25px 0;
}

.g-nav_items_img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}

.g-nav_items_txt {
  margin: 0 0 0 7px;
  width: 100%;
  flex: 1;
  font-size: 1.2rem;
  line-height: 1.5;
}

.g-nav_items_txt p {
  margin: 0;
}


/* SNS
---------------------------------------- */

.g-nav_sns {
  display: flex;
  justify-content: center;
  list-style-type: none;
  padding: 0;
  margin: 36px 0 0 0;
}

.g-nav_sns li {
  padding: 0 10px;
  width: 44px;
}

@media (min-width: 769px){
  .g-nav_sns {
    margin: 25px -10px 0;
    justify-content: space-between;
  }

  .g-nav_sns li {
    padding: 0 10px;
    width: 45px;
  }

}



/* ------------------------------------------------------------

g-history

------------------------------------------------------------ */

.g-history {
  margin: 0 10px;
}

.g-history_inner {
  background: #f4f4f4;
  padding: 20px 10px;
}

.g-history_inner .m-ttl {
  margin: 0 0 0 10px;
}

@media (min-width: 769px){
  .g-history {
    margin: 0 auto;
    padding: 90px 0 0 0;
    min-width: 1024px;
  }

  .g-history_inner {
    margin: 0 auto;
    padding: 50px 60px 60px;
    width: 96%;
    max-width: 1100px;
  }
}



/* ------------------------------------------------------------

modules

------------------------------------------------------------ */

/* m-link リンクテキスト
---------------------------------------- */

.m-link {
  text-decoration: underline;
}

@media (min-width: 769px) {
  .m-link[href*="tel:"] {
    text-decoration: none;
  }
}


/* m-txtPalt 文字詰めをする
---------------------------------------- */

.m-txtPalt {
  font-feature-settings: "palt";
}

.m-txtKerning {
  letter-spacing: -0.05em;
}


/* m-txtBlock 変なところで改行されないように文字列をグループ化
---------------------------------------- */

.m-txtBlock {
  display: inline-block;
}


/* m-sec セクション
---------------------------------------- */

.m-sec {
  margin-top: 60px;
}

@media (min-width: 769px){
  .m-sec {
    margin-top: 96px;
  }
}


/* m-btn 汎用ボタン
---------------------------------------- */

.m-btnWrap {
  text-align: right;
}

.m-btn {
  display: inline-block;
  border: solid 1px #c8c8c8;
  font-size: 1.4rem;
  padding: 5px 62px 5px 12px;
  position: relative;
}

.m-btn::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 10px;
  height: 10px;
  border-top: solid 1px #c8c8c8;
  border-right: solid 1px #c8c8c8;
  transform: translate(-12px,-50%) rotate(45deg);
}

/* 小サイズ */
.m-btn-s {
  padding-right: 36px;
}



/* m-bigBtn 大きいボタン
---------------------------------------- */

.m-bigBtn {
  display: block;
  max-width: 320px;
  width: 100%;
  margin: 0 auto;
  background: #672f89;
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  padding: 11px 0;
  position: relative;
}

@media (min-width: 769px){
  .m-bigBtn {
    font-size: 1.8rem;
    padding: 12px 0;
  }
}




/* m-btnCols 横並びボタン
---------------------------------------- */

.m-btnCols {
  display: flex;
  justify-content: space-between;
}

.m-btnCols_col {
  width: 47%;
}

.m-btnCols_btn {
  display: block;
  border: solid 1px #333;
  background: #333;
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
  padding: 11px 0;
  position: relative;
}

.m-btnCols_btn::after {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  transform: rotate(45deg) translate(0,-50%);
  position: absolute;
  right: 12px;
  top: 50%;
}

.m-btnCols_btn-w {
  background: none;
  color: #333;
}

.m-btnCols_btn-w::after {
  border-top-color: #333;
  border-right-color: #333;
}

@media (min-width: 769px){
  .m-btnCols_btn {
    font-size: 1.8rem;
    padding: 22px 0;
  }

  .m-btnCols_btn::after {
    width: 11px;
    height: 11px;
    right: 20px;
  }
}



/* m-pageTtl ページタイトル
---------------------------------------- */

.m-pageTtl {
  margin: 50px auto 0;
  font-weight: normal;
  line-height: 1;
  font-size: 1rem;
}

.m-pageTtl_en {
  display: inline-block;
  height: 30px;
  margin-right: 6px;
}

.m-pageTtl_en img {
  max-height: 100%;
  width: auto;
}

/* faqだけ調整 */
.m-pageTtl_en-faq img {
  max-height: none;
  height: 32px;
}

.m-pageTtl_ja {
  display: inline-block;
  vertical-align: bottom;
  font-size: 1.1rem;
  margin-top: 10px;
}

@media (min-width: 769px){
  .m-pageTtl_en {
    height: 40px;
    line-height: 40px;
    margin-right: 12px;
  }

  /* faqだけ調整 */
  .m-pageTtl_en-faq img {
    height: 43px;
  }

  .m-pageTtl_ja {
    display: inline;
    font-size: 1.4rem;
    margin-top: 0;
  }
}


/* m-secTtl セクションタイトル
---------------------------------------- */

.m-secTtl {
  margin: 35px auto 0;
  font-weight: bold;
  line-height: 1.83;
  font-size: 1.8rem;
  border-bottom: solid 1px #c8c8c8;
  padding: 0 0 4px 0;
}

@media (min-width: 769px){
  .m-secTtl {
    margin: 45px auto 0;
    font-size: 2.4rem;
    padding: 0 0 8px 0;
  }
}



/* m-ttl 汎用タイトル
---------------------------------------- */

.m-ttl {
  margin: 20px auto -5px;
  font-size: 1.6rem;
  line-height: 1.83;
  font-weight: bold;
}

@media (min-width: 769px){
  .m-ttl {
    margin: 40px auto -10px;
    font-size: 2.4rem;
    line-height: 1.83;
      font-weight: normal;
  }
}


/* m-subTtl 汎用タイトル　小
---------------------------------------- */

.m-subTtl {
  margin: 30px 0 0 0;
  background: #f4f4f4;
  font-size: 1.5rem;
  line-height: 1.5;
  padding: 5px 10px;
}

@media (min-width: 769px){
  .m-subTtl {
    font-size: 1.8rem;
    padding: 8px 16px;
  }
}


/* m-cols 画像+テキストのカラム
---------------------------------------- */

.m-cols {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.m-cols_img,
.m-cols_txt {
  width: 100%;
}

@media (min-width: 769px){
  .m-cols {
    display: flex;
    justify-content: space-between;
  }

  .m-cols_img {
    width: 44.2%;
    order: 3;
  }
  .m-cols-r .m-cols_img {
    order: 1;
  }

  .m-cols_txt {
    width: 48.8%;
    order: 2;
  }
}


/* m-notes 注釈
---------------------------------------- */

.m-notes {
  font-size: 1rem;
  text-align: left;
}

@media (min-width: 769px){
  .m-notes {
    font-size: 1.2rem;
  }
}




/* ------------------------------------------------------------

itemList

------------------------------------------------------------ */

/* itemListブロック
---------------------------------------- */

.itemList {
  list-style-type: none;
  padding: 0;
  margin: -5px -5px 0;
  display: flex;
  flex-wrap: wrap;
  counter-reset: item-count;
}

.itemList_item {
  width: 50%;
  margin: 30px 0 0 0;
  padding: 0 5px;
  position: relative;
  counter-increment: item-count;
}

.itemList-spSlider {
  position: relative;
}

/* slick arrow */

.itemList-spSlider .slick-arrow {
  display: block;
  padding: 0;
  width: 14px;
  height: 14px;
  line-height: 1px;
  border: none;
  border-top: solid 1px #333;
  border-left: solid 1px #333;
  position: absolute;
  z-index: 5;
  background: none;
  text-indent: -9999em;
  transition: .3s;
}

.itemList-spSlider .slick-prev {
  left: 2px;
  transform: translate(0,-50%) rotate(-45deg);
}

.itemList-spSlider .slick-next {
  right: 2px;
  transform: translate(0,-50%) rotate(135deg);
}

.itemList-history .slick-prev {
  left: -8px;
  transform: translate(0,-50%) rotate(-45deg);
}

.itemList-history .slick-next {
  right: -8px;
  transform: translate(0,-50%) rotate(135deg);
}

.itemList-spSlider .slick-arrow.slick-disabled {
  opacity: 0;
}

@media (min-width: 769px) {

  .itemList {
    margin: -10px 0 0;
  }

  .itemList_item {
    width: 31.8%;
    margin: 45px 2.3% 0 0;
    padding: 0;
  }

  .itemList_item:nth-child(3n) {
    margin-right: 0;
  }

  /* ランキング */
  .itemList-ranking .itemList_item {
    width: 30%;
    margin: 45px 5% 0 0;
  }
  .itemList-ranking .itemList_item:nth-child(3n) {
    margin-right: 0;
  }

  /* スペース大 */
  .itemList-wideSpace .itemList_item {
    width: 30%;
    margin: 45px 5% 0 0;
  }
  .itemList-wideSpace .itemList_item:nth-child(3n) {
    margin-right: 0;
  }

  /* 大サイズ */
  .itemList-l .itemList_item {
    width: 47.5%;
    margin: 45px 5% 0 0;
  }
  .itemList-l .itemList_item:nth-child(3n) {
    margin-right: 5%;
  }
  .itemList-l .itemList_item:nth-child(2n) {
    margin-right: 0;
  }

  /* 閲覧履歴 */
  .itemList-history .itemList_item {
    width: 23.5%;
    margin: 45px 2% 0 0;
  }
  .itemList-history .itemList_item:nth-child(3n) {
    margin-right: 2%;
  }
  .itemList-history .itemList_item:nth-child(4n) {
    margin-right: 0;
  }
}


/* itemListパーツ
---------------------------------------- */

.itemList_img {
  margin: 0;
}

.itemList_img img {
  width: 100%;
}

.itemList_img a {
  display: block;
}

.itemList-ranking .itemList_img a::before {
  content: counter(item-count);
  display: block;
  width: 26px;
  font-size: .7rem;
  line-height: 26px;
  text-align: center;
  background: #672f87;
  color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 5px;
  left: 10px;
}

.itemList_txt {
  font-size: 1.4rem;
  line-height: 1.714;
  margin: 10px 0 0 0;
}

.itemList_name {
  margin: 0;
}

.itemList_price {
  margin: 0;
}

.itemList_ttl {
  margin: 5px 0 0;
  width: 100%;
  max-height: 5.142em;
  overflow: hidden;
  font-weight: bold;
  font-size: 1.2rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.itemList_description {
  margin: 5px 0 7px;
  width: 100%;
  height: 5.142em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: 1rem;
}

/* IEで「…」を表示 */
body.ie .itemList_description {
  position: relative;
}
body.ie .itemList_description::before {
  position: absolute;
  background: #fff;
  content: '･･･';
  bottom: 0;
  right: 0;
}
body.ie .itemList_description::after {
  position: absolute;
  background: #fff;
  content: '';
  width: 100%;
  height: 100%;
}

.itemList_btns {
  margin: 10px 0 0;
  display: flex;
  line-height: 1;
}

.itemList_btns > div {
  margin: 0 0 0 5px;
}

.itemList_btns > div:first-child {
  margin: 0;
}

.itemList_faviriteBtn {
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 15px;
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid #333;
  text-indent: -9999em;
  background: url(../img/common/ico_favorite.png) no-repeat 0 0 / contain;
}

.itemList_cartBtn {
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 15px;
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid #333;
  text-indent: -9999em;
  background: url(../img/common/ico_cart.png) no-repeat 0 0 / contain;
}

.itemList_detailBtn {
  display: inline-block;
  width: 70px;
  border-radius: 15px;
  background: #333;
  color: #fff;
  font-size: 1rem;
  line-height: 30px;
  padding: 0 20px 0 13px;
  position: relative;
}

.itemList-history .itemList_detailBtn {
  width: 65px;
  padding-right: 15px;
}

.itemList_detailBtn::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: solid 1px rgba(255,255,255,0.5);
  border-right: solid 1px rgba(255,255,255,0.5);
  transform: translate(-12px,-50%) rotate(45deg);
}


@media (min-width: 769px){

  .itemList-ranking .itemList_img a::before {
    width: 40px;
    font-size: 1rem;
    line-height: 40px;
    top: 10px;
    left: 10px;
  }

  .itemList_txt {
    margin: 10px 0 0 0;
  }

  .itemList_ttl {
    margin: 10px 0 0;
    font-size: 1.4rem;
  }

  .itemList_description {
    margin: 10px 0 15px;
    width: 100%;
    height: 3.428em;
    -webkit-line-clamp: 2;
    font-size: 1.4rem;
  }

  .itemList_btns > div {
    margin: 0 0 0 10px;
  }

  .itemList_faviriteBtn {
    width: 40px;
    height: 40px;
    border-radius: 20px;
  }

  .itemList_cartBtn {
    width: 40px;
    height: 40px;
    border-radius: 20px;
  }

  .itemList_detailBtn {
    width: 100px;
    border-radius: 20px;
    font-size: 1.4rem;
    line-height: 40px;
    padding: 0 26px 0 18px;
  }

  .itemList-history .itemList_detailBtn {
    width: 100px;
    padding-right: 26px;
    background: #672f87;
  }

  .itemList_detailBtn::after {
    width: 10px;
    height: 10px;
    transform: translate(-18px,-50%) rotate(45deg);
  }


}




/* ------------------------------------------------------------

topicsList

------------------------------------------------------------ */

.topicsList {
  list-style-type: none;
  margin: -5px -5px 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

.topicsList_item {
  width: 50%;
  margin: 30px 0 0 0;
  padding: 0 5px;
  position: relative;
}

.topicsList_item a {
  display: block;
}

.topicsList_item-new .topicsList_img::before {
  content: 'NEW';
  display: block;
  width: 30px;
  font-size: .8rem;
  line-height: 30px;
  text-align: center;
  background: #672f87;
  color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 5px;
  left: 5px;
}

.topicsList_img {
  position: relative;
}

.topicsList_cat {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #333;
  color: #fff;
  padding: 0 5px;
  font-size: .8rem;
}

.topicsList_date {
  color: #808080;
  font-size: 1.2rem;
  margin: 8px 0 0 0;
}

.topicsList_ttl {
  font-size: 1.4rem;
  line-height: 1.4;
  margin: 6px 0 0 0;
}

@media (min-width: 769px) {

  .topicsList {
    margin: -10px 0 0;
  }

  .topicsList_item {
    width: 47.5%;
    margin: 45px 5% 0 0;
    padding: 0;
  }

  .topicsList_item:nth-child(2n) {
    margin-right: 0;
  }

  .topicsList_item-new .topicsList_img::before {
    width: 40px;
    font-size: 1rem;
    line-height: 40px;
    top: 8px;
    left: 8px;
  }

  .topicsList_cat {
    padding: 0 6px;
    font-size: 1rem;
  }

  .topicsList_date {
    margin: 12px 0 0 0;
  }

}


/* ------------------------------------------------------------

voiceList

------------------------------------------------------------ */

.voiceList {
  list-style-type: none;
  margin: 25px 0 0 0;
  padding: 0;
  border-top: solid 1px #c6c6c6;
}

.voiceList_item {
  border-bottom: solid 1px #c6c6c6;
  padding: 20px 0 17px;
}

.voiceList_item::after {
  content: '';
  display: block;
  clear: both;
}

.voiceList_img {
  width: 40px;
  float: left;
}

.voiceList_txt {
  margin-left: 50px;
}

.voiceList_use {
  margin: -2px 0 0 0;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.3;
}

.voiceList_vote {
  display: flex;
  margin: 6px -2px 10px;
}

.voiceList_vote span {
  font-size: .9rem;
  padding: 0 6px;
  background: #f2f2f2;
  border-radius: .9rem;
  margin: 0 2px;
}

.voiceList_vote span.voiceList_active {
  background: #672f87;
  color: #fff;
}

.voiceList_message {
  margin: 5px 0 0 0;
  font-size: 1.4rem;
  line-height: 1.4;
}

.voiceList_name {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.4;
}

.voiceList-review {
  border-top: none;
}

/* review */

.voiceList-review .voiceList_item:nth-child(1) {
  border-bottom: none;
  padding: 15px 20px 17px;
  background: #f4f4f4;
  margin-bottom: 20px;
}

.voiceList-review .voiceList_item:nth-child(1)::before {
  content: 'ピックアップレビュー';
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
  margin: 0 0 15px 0;
}

.voiceList_ttl {
  margin: -2px 0 0 0;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.3;
}




@media (min-width: 769px) {
  .voiceList {
    margin: 35px 0 0 0;
  }

  .voiceList_item {
    padding: 30px 0 25px;
  }

  .voiceList_img {
    width: 60px;
  }

  .voiceList_txt {
    margin-left: 80px;
  }

  .voiceList_vote span {
    font-size: 1.2rem;
    padding: 0 8px;
    border-radius: 1.2rem;
  }

  .voiceList_message {
    line-height: 1.7;
  }

  .voiceList_name {
    line-height: 1.7;
  }
}







/* ------------------------------------------------------------

ホーム

------------------------------------------------------------ */

/* homeSlider
---------------------------------------- */

.homeSlider {
  margin: 0 0 20px 0;
}

.homeSlider_slide a {
  display: block;
}

/* Dots */

.homeSlider .slick-dots {
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 10px 0 0;
  list-style: none;
}

.homeSlider .slick-dots li {
  width: 10px;
  margin: 0 2px;
  position: relative;
}

.homeSlider .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 10px;
  height: 10px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
  opacity: 1;
}

.homeSlider .slick-dots li button:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  border: solid 1px #333;
  border-radius: 50%;
}

.homeSlider .slick-dots li.slick-active button:before {
  background: #333;
}

@media (min-width: 769px) {
  .homeSlider .slick-dots li button:hover {
    opacity: 0.6;
  }
}


/* homeIntro
---------------------------------------- */

.homeIntro_ttl {
  width: 83%;
  margin: 50px auto 0;
}

.homeIntro_txt {
  text-align: center;
  font-size: 1.4rem;
  margin: 20px auto 0;
}

.homeIntro_award {
  margin: 45px auto 0;
}

.homeIntro_brand {
  margin: 25px auto 0;
}

@media (min-width: 769px) {
  .homeIntro_ttl {
    width: 462px;
  }

  .homeIntro_txt {
    font-size: 1.6rem;
    margin: 30px auto 0;
  }

  .homeIntro_award {
    margin: 35px auto 0;
  }

  .homeIntro_brand {
    margin: 40px auto 0;
  }
}





/* ------------------------------------------------------------

商品一覧

------------------------------------------------------------ */

.itemCatAndSort {
  font-size: 1.2rem;
  margin: 60px 10px;
}

.itemCatAndSort_count {
  margin: 0;
  border-bottom: solid 1px #c6c6c6;
  padding: 0 0 5px 0;
}

.itemCatAndSort_label {
  font-size: 1.4rem;
  margin: 10px 0 0 0;
}

.itemCatAndSort_cat ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.itemCatAndSort_cat li {
  margin: 5px 0 0 0;
}

.itemCatAndSort_cat li a {
  display: block;
  position: relative;
  padding: 6px 13px;
  background: #f4f4f4;
}

.itemCatAndSort_cat li a::after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-top: solid 1px #c8c8c8;
  border-right: solid 1px #c8c8c8;
  transform: rotate(45deg) translate(0,-50%);
  position: absolute;
  top: 50%;
  right: 16px;
}

.itemCatAndSort_cat li.itemCatAndSort_active a {
  background: #672f89;
  color: #fff;
}

.itemCatAndSort_sort ul {
  list-style-type: none;
  margin: 15px 0 0 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
}

.itemCatAndSort_sort li {
  width: calc((100% - 5px) /2 );
}

.itemCatAndSort_sort a {
  display: block;
  padding: 6px 0;
  background: #f4f4f4;
  text-align: center;
}

.itemCatAndSort_sort span {
  display: block;
  padding: 6px 0;
  background: #672f89;
  color: #fff;
  text-align: center;
}

@media (min-width: 769px) {
  .itemCatAndSort {
    font-size: 1.4rem;
    margin: 40px 0 -10px 0;
  }
}



/* ------------------------------------------------------------

商品詳細

------------------------------------------------------------ */

/* itemBox
---------------------------------------- */

.itemBox {
  margin: 25px 0 0 0;
}

.itemBox_img img {
  width: 100%;
}

.itemBox_name {
  font-size: 1.8rem;
  line-height: 1.5;
  margin: 15px 0 0 0;
}

.itemBox_table {
  display: table;
  width: 100%;
  border-collapse: collapse;
  margin: 15px 0 0 0;
  font-size: 1.2rem;
}

.itemBox_table_tr {
  display: table-row;
}

.itemBox_table_th,
.itemBox_table_td {
  display: table-cell;
  border-top: solid 1px #c8c8c8;
  border-bottom: solid 1px #c8c8c8;
  text-align: left;
  font-weight: normal;
  padding: 10px 0;
  vertical-align: top;
}

.itemBox_table_th {
  width: 27.5%;
}

.itemBox_price {
  font-size: 1.5em;
  line-height: 1.4;
}

@media (min-width: 769px) {
  .itemBox {
    margin: 35px 0 0 0;
    display: flex;
    justify-content: space-between;
    position: relative;
  }

  .itemBox_img {
    width: 66%;
  }

  .itemBox_cont {
    width: 29.6%;
  }

  .itemBox_name {
    font-size: 2.4rem;
    margin: 0;
  }

  .itemBox_table {
    margin: 30px 0 0 0;
    font-size: 1.4rem;
  }

  .itemBox_table_th,
  .itemBox_table_td {
    padding: 15px 0;
  }
}



/* itemBox_buy
---------------------------------------- */

.itemBox_buy_quantity {
  margin: 30px 0 0 0;
  display: flex;
  align-items: center;
}

.itemBox_buy_quantity_label {
  display: block;
  width: 27.5%;
  font-size: 1.2rem;
}

.itemBox_buy_quantity_form {
  display: block;
  width: 72.5%;
  position: relative;
  padding: 0 0 0 30px;
  line-height: 1;
}

.itemBox_buy_quantity_input {
  border: solid 1px #c8c8c8;
  font-size: 1.4rem;
  line-height: 22px;
  width: 45px;
  text-align: center;
  padding: 3px;
  -moz-appearance:textfield;
}

.itemBox_buy_quantity_input::-webkit-outer-spin-button,
.itemBox_buy_quantity_input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.itemBox_buy_quantity_plus,
.itemBox_buy_quantity_minus {
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0px;
  left: 0;
  line-height: 1px;
  border: solid 1px #c8c8c8;
  border-right: none;
  transition: .3s;
  background: #f2f2f2;
}

.itemBox_buy_quantity_plus {
  left: 75px;
  border: solid 1px #c8c8c8;
  border-left: none;
}

.itemBox_buy_quantity_plus:hover,
.itemBox_buy_quantity_minus:hover {
  cursor: pointer;
}

.itemBox_buy_quantity_plus::before,
.itemBox_buy_quantity_plus::after,
.itemBox_buy_quantity_minus::before {
  content: '';
  width: 7px;
  height: 1px;
  background: #333;
  position: absolute;
  left: 11px;
  top: 14px;
}

.itemBox_buy_quantity_plus::after {
  width: 1px;
  height: 7px;
  left: 14px;
  top: 11px;
}

.itemBox_buy_cart {
  margin: 20px 0 0 0;
}

.itemBox_buy_cart_btn {
  display: block;
  width: 100%;
  border: none;
  background: #672f89;
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1;
  padding: 20px 0;
}

.itemBox_buy_cart_btn::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 18px;
  background: url(../img/item/ico_buy.png) no-repeat 0 0 / contain;
  margin: 0 10px 0 0;
}

.itemBox_buy_favorite {
  margin: 20px 0 0 0;
}

.itemBox_buy_favorite_btn {
  display: block;
  width: 100%;
  border: solid 1px #333;
  background: none;
  color: #333;
  font-size: 1.4rem;
  line-height: 14px;
  padding: 13px 0;
  border-radius: 20px;
}

.itemBox_buy_favorite_btn::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 16px;
  line-height: 14px;
  background: url(../img/item/ico_favorite.png) no-repeat 0 0 / contain;
  margin: -2px 5px -1px 0;
  vertical-align: middle;
}

@media (min-width: 769px) {

  .itemBox_buy {
    position: absolute;
    width: 29.6%;
    bottom: 0;
    right: 0;
  }

  .itemBox_buy_quantity_form {
    padding: 0;
  }

  .itemBox_buy_quantity_label {
    font-size: 1.4rem;
  }

  .itemBox_buy_quantity_plus:hover,
  .itemBox_buy_quantity_minus:hover {
    opacity: 0.6;
  }

  .itemBox_buy_quantity_plus,
  .itemBox_buy_quantity_minus {
    display: block;
    width: 12px;
    height: 12px;
    top: 2px;
    left: 55px;
    border: none;
    background: none;
  }

  .itemBox_buy_quantity_minus {
    top: 18px;
  }

  .itemBox_buy_quantity_plus::before,
  .itemBox_buy_quantity_plus::after,
  .itemBox_buy_quantity_minus::before {
    left: 2px;
    top: 5px;
  }

  .itemBox_buy_quantity_plus::after {
    left: 5px;
    top: 2px;
  }
}


/* itemDetailBox_nav
---------------------------------------- */

.itemDetailBox_nav {
  list-style-type: none;
  margin: 45px -10px 0;
  padding: 0 10px 10px;
  border-bottom: solid 1px #c8c8c8;
  display: flex;
}

.itemDetailBox_nav li {
  width: 100%;
  flex: 1;
  border-left: solid 1px #c8c8c8;
  white-space: nowrap;
  min-height: auto;
  min-width: auto;
}

.itemDetailBox_nav li:last-child {
  border-right: solid 1px #c8c8c8;
}

.itemDetailBox_nav span {
  display: block;
  text-align: center;
  font-size: 1rem;
  padding: 10px 5px;
}

.itemDetailBox_nav span:hover {
  cursor: pointer;
}

.itemDetailBox_nav .tab-open span:hover {
  cursor: default;
}

.itemDetailBox_nav .tab-open span {
  background: #333;
  color: #fff;
}

@media (min-width: 769px) {

  .itemDetailBox_nav {
    margin: 60px 0 0 0;
    padding: 0 0 20px 0;
  }

  .itemDetailBox_nav span {
    font-size: 1.6rem;
    padding: 4px 0;
    transition: .3s;
  }

  .itemDetailBox_nav span:hover {
    opacity: 0.6;
  }

  .itemDetailBox_nav .tab-open span:hover {
    opacity: 1;
  }
}


/* itemDetailBox_cont
---------------------------------------- */

.itemDetailBox_cont {
  font-size: 1.4rem;
}

@media (min-width: 769px) {
  .itemDetailBox_cont {
    font-size: 1.6rem;
  }
}


/* ingredientList
---------------------------------------- */

.ingredientList {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.ingredientList_item {
  border-top: solid 1px #c8c8c8;
  margin-top: 15px;
list-style: none;
}

.ingredientList_item:first-child {
  border-top: none;
  margin-top: 0;
}

.ingredientList_img {
  margin: 15px 0 0 0;
}

.ingredientList_ttl1 {
  font-size: 1.6rem;
  color: #672f89;
  margin: 15px 0 0 0;
}

.ingredientList_ttl2 {
  font-size: 1.6rem;
  margin: 5px 0 0 0;
}

.ingredientList_txt {
  margin: 10px 0 0 0;
}

@media (min-width: 769px) {

  .ingredientList_item {
    margin-top: 30px;
  }

  .ingredientList_img {
    margin: 40px 0 0 0;
  }

  .ingredientList_ttl1 {
    font-size: 2rem;
    margin: 35px 0 0 0;
  }

  .ingredientList_ttl2 {
    font-size: 2rem;
  }

  .ingredientList_txt {
    margin: 20px 0 0 0;
  }

}


/* devComment
---------------------------------------- */

.devComment {
  background: #f2f2f2;
  padding: 10px 10px 15px;
}

.devComment_cols_img {
  width: 40%;
  float: left;
  padding: 0 15px 10px 0;
  margin: 5px 0 0 0;
}

.devComment_txt {
  margin: 10px 0 0 0;
}

.devComment_name {
  margin: 15px 0 0 0;
  font-size: 1rem;
}
  .dev{
     margin-top: 40px;  
    }


@media (min-width: 769px) {
  .devComment {
    padding: 30px 40px;
  }

  .devComment_cols {
    display: flex;
    justify-content: space-between;
  }

  .devComment_cols_img {
    width: 28.846%;
    margin: 20px 0 0 0;
    padding: 0;
  }

  .devComment_cols_txt {
    width: 68%;
  }

  .devComment_name {
    font-size: 1.4rem;
    text-align: right;
  }
  .dev{
     margin-top: 40px;  
    }
}


/* devComment2
---------------------------------------- */

.devComment2 {
  background: #f2f2f2;
  padding: 15px 10px;
}

.devComment2_cols_img {
  width: 40%;
  float: right;
  padding: 0 0 10px 15px;
  margin: 5px 0 0 0;
}

.devComment2_txt {
  margin: 10px 0 0 0;
}

.devComment2_name {
  margin: 15px 0 0 0;
  font-size: 1rem;
}


@media (min-width: 769px) {
  .devComment2 {
    padding: 55px 40px 50px;
  }

  .devComment2_cols {
    display: flex;
    justify-content: space-between;
  }

  .devComment2_cols_img {
    width: 28.846%;
    margin: 5px 0 0 0;
    padding: 0;
    order: 2;
  }

  .devComment2_cols_txt {
    width: 68%;
  }

  .devComment2_name {
    font-size: 1.4rem;
  }
}


/* itemBenefit
---------------------------------------- */

.itemBenefit_cont {
  position: relative;
}

.itemBenefit_txt {
  width: 100%;
}

.itemBenefit_img {
  width: 21.56%;
  position: absolute;
  top: 0;
  right: 7.4%;
  padding: 1% 0 0 0;
}

@media (min-width: 769px) {
    
.itemBenefit_cont {
  position: relative;
}
.itemBenefit_txt {
  width: 66%;
}
.itemBenefit_img {
  width: 22.56%;
  position: absolute;
  top: 0;
  right: 7.4%;
  padding: 6% 0 0 0;
}
    }

/* recommendList
---------------------------------------- */

.recommendList {
  list-style-type: none;
  margin: 5px 0 0 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.recommendList_item {
  width: 48.5%;
  list-style-type: none;
  margin: 10px 3% 0 0;
  background: #f4f4f4;
  text-align: center;
  padding: 20px 0;
}

.recommendList_item:nth-child(2n) {
  margin-right: 0;
}

.recommendList_img {
  width: 100px;
  margin: 0 auto;
}

.recommendList_txt {
  margin: 15px 0 0 0;
  line-height: 1.5;
}


@media (min-width: 769px) {
  .recommendList_item {
    width: 23.275%;
    margin: 20px 2.3% 0 0;
    padding: 20px 0;
  }

  .recommendList_item:nth-child(2n) {
    margin-right: 2.3%;
  }

  .recommendList_item:nth-child(4n) {
    margin-right: 0;
  }
}


/* materialList
---------------------------------------- */

.materialList {
  list-style-type: none;
  margin: 10px 0 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

.materialList li {
  width: 48.5%;
  margin: 10px 3% 0 0;
  background: #672f89;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  padding: 6px 10px;
}

.materialList li:nth-child(2n) {
  margin-right: 0;
}

@media (min-width: 769px) {
  .materialList li {
    font-size: 1.4rem;
  }
}


/* ------------------------------------------------------------

ワヤンプリについて

------------------------------------------------------------ */

.aboutMV {
  margin-left: -10px;
  margin-right: -10px;
}

.aboutMessageProfile {
  font-size: 1.2rem;
  line-height: 1.75;
}

@media (min-width: 769px) {
  .aboutMV {
    margin-left: 0;
    margin-right: 0;
  }

  .aboutMessageProfile {
    font-size: 1.4rem;
  }
}


/* aboutBeforeAfter
---------------------------------------- */

.aboutBeforeAfter {
  list-style-type: none;
  margin: 0 -10px;
  padding: 0;
  display: flex;
}

.aboutBeforeAfter_item {
  width: 50%;
  margin: 0;
  padding: 0 10px;
}

.aboutBeforeAfter_ttl {
  margin: 0;
  background: #672f87;
  color: #fff;
  font-size: 1.8rem;
  text-align: center;
  padding: 6px 10px;
}

.aboutBeforeAfter_ttl-gray {
  background: #333;
}

.aboutBeforeAfter_img {
  text-align: center;
  margin: 14px 0 0 0;
}

.aboutBeforeAfter_txt {
  margin: 14px 0 0 0;
}

@media (min-width: 769px) {

  .aboutBeforeAfter {
    margin: 0 -20px;
  }

  .aboutBeforeAfter_item {
    padding: 0 20px;
  }

  .aboutBeforeAfter_ttl {
    font-size: 2.4rem;
  }
}


/* shopList
---------------------------------------- */

.shopList {
  list-style-type: none;
  margin: 0 -10px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

.shopList_item {
  width: 50%;
  padding: 0 10px;
  margin: 26px 0 0 0;
}

.shopList_item a {
  display: block;
}

.shopList_img {
  margin: 0;
}

.shopList_txt {
  margin: 5px 0 0 0;
  font-size: 1.2rem;
  position: relative;
  padding-right: 20px;
}

.shopList_txt::after {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  border-top: solid 1px #333;
  border-right: solid 1px #333;
  transform: rotate(45deg) translate(-1px,-50%);
  position: absolute;
  right: 4px;
  top: 50%;
}

@media (min-width: 769px) {

  .shopList {
    margin-top: 10px;
  }

  .shopList_item {
    width: 25%;
    margin: 30px 0 0 0;
  }

  .shopList_txt {
    font-size: 1.4rem;
  }

}



/* ------------------------------------------------------------

商品について

------------------------------------------------------------ */

.productMV {
  margin-left: -10px;
  margin-right: -10px;
}

.productConcept {
  background: url(../img/product/product_03.png) no-repeat center center / contain;
  padding: 30px 0;
  text-align: center;
}

@media (min-width: 769px) {
  .productMV {
    margin-left: 0;
    margin-right: 0;
  }
  .productConcept {
    padding: 50px 0;
  }
}


/* productScienceList
---------------------------------------- */

.productScienceList {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.productScienceList_item {
  margin: 26px 0 0 0;
}

.productScienceList_ttl {
  margin: 0;
  background: #672f87;
  color: #fff;
  font-size: 1.8rem;
  text-align: center;
  padding: 6px 10px;
}

.productScienceList_img {
  text-align: center;
  margin: 14px 0 0 0;
}

.productScienceList_txt {
  margin: 14px 0 0 0;
}

@media (min-width: 769px) {

  .productScienceList {
    display: flex;
    justify-content: space-between;
  }

  .productScienceList_item {
    width: 30.232558%;
    margin: 0 4.651163% 0 0;
  }

  .productScienceList_item:nth-child(3n) {
    margin-right: 0;
  }

  .productScienceList_ttl {
    font-size: 2.4rem;
  }
}


/* productLineupList
---------------------------------------- */

.productLineupList {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.productLineupList_item {
  margin: 26px 0 0 0;
}

.productLineupList_img {
  text-align: center;
  margin: 0;
}

.productLineupList_txt {
  margin: 14px 0 0 0;
  font-size: 1.2rem;
}

@media (min-width: 769px) {

  .productLineupList {
    display: flex;
    justify-content: space-between;
  }

  .productLineupList_item {
    width: 30.232558%;
    margin: 40px 4.651163% 0 0;
  }

  .productLineupList_item:nth-child(3n) {
    margin-right: 0;
  }

  .productLineupList_txt {
    font-size: 1.4rem;
  }
}


/* productParticular
---------------------------------------- */

.productParticular {
  list-style-type: none;
  margin: 26px 0 0 0;
  padding: 0;
}

.productParticular_item {
  margin: 20px 0 0 0;
  position: relative;
}

.productParticular_img {
  width: 174px;
  filter: drop-shadow(3px 3px 3px rgba(0,0,0,0.3));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.productParticular_cont {
  background: #f4f4f4;
  padding: 60px 10px 30px;
  margin: -40px 0 0 0;
}

.productParticular_ttl {
  font-size: 1.8rem;
  line-height: 1.5;
  margin: 0;
}

.productParticular_txt {
  margin: 10px 0 0 0;
  font-size: 1.4rem;
}

@media (min-width: 769px) {

  .productParticular {
    margin: 40px 0 0 0;
  }

  .productParticular_img {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translate(0,-50%);
  }

  .productParticular_cont {
    background: #f4f4f4;
    padding: 25px 0 30px 205px;
    margin: 0;
  }

  .productParticular_ttl {
    font-size: 2.4rem;
  }

  .productParticular_txt {
    font-size: 1.6rem;
  }
}


/* developerList
---------------------------------------- */

.developerList {
  list-style-type: none;
  margin: 0 -10px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

.developerList_item {
  margin: 26px 0 0 0;
  padding: 0 10px;
  width: 50%;
}

.developerList_img {
  margin: 0;
}

.developerList_name {
  margin: 15px 0 0 0;
  font-size: 1.6rem;
  line-height: 1.7;
  font-weight: normal;
}

.developerList_txt {
  margin: 10px 0 0 0;
  font-size: 1.2rem;
  line-height: 1.7;
}


@media (min-width: 769px) {

  .developerList {
    margin: 0 -15px;
  }

  .developerList_item {
    margin: 40px 0 0 0;
    padding: 0 15px;
    width: 25%;
  }

  .developerList_name {
    font-size: 1.8rem;
    margin: 20px 0 0 0;
  }

  .developerList_txt {
    margin: 15px 0 0 0;
    font-size: 1.4rem;
  }
}




/* ------------------------------------------------------------

ご利用ガイド

------------------------------------------------------------ */

/* guideCols
---------------------------------------- */

.guideCols {
  list-style-type: none;
  margin: 26px 0 0 0;
  padding: 0;
}

.guideCols_item {
  margin: 10px 0 0 0;
}

.guideCols_cont {
  background: #f4f4f4;
  padding: 20px 10px;
}

.guideCols_img {
  margin: 10px auto 0;
  max-width: 200px;
  text-align: center;
}

.guideCols_ttl {
  margin: 15px 0 0 0;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.66;
}

.guideCols_txt {
  margin: 15px 0 0 0;
  font-size: 1.2rem;
  line-height: 1.66;
}

.guideCols_description {
  margin: 5px 0 15px 0;
  line-height: 1.7;
  font-size: 1.4rem;
}

.guideCols-feature .guideCols_ttl {
  font-weight: bold;
}


@media (min-width: 769px) {
  .guideCols {
    margin: 40px -20px 0;
    display: flex;
  }

  .guideCols_item {
    width: 100%;
    padding: 0 20px;
    margin: 0;
  }

  .guideCols_cont {
    background: #f4f4f4;
  }

  .guideCols_txt {
    padding: 0 10px;
  }

  .guideCols_description {
    margin: 15px 0 0;
  }

  .guideCols-payment .guideCols_img {
    padding: 5px 0 10px;
  }

  .guideCols-delivery .guideCols_img {
    margin-top: 0;
  }
}


/* guideFlow
---------------------------------------- */

.guideFlow {
  list-style-type: none;
  margin: 0;
  padding: 0;
  counter-reset: guideflow;
}

.guideFlow_item {
  counter-increment: guideflow;
  margin: 26px 0 0 0;
}

.guideFlow_img {
  position: relative;
}

.guideFlow_img::after {
  content: counter(guideflow);
  display: block;
  width: 30px;
  height: 30px;
  text-align: center;
  font-size: 1rem;
  line-height: 30px;
  color: #fff;
  background: #333;
  position: absolute;
  top: 5px;
  left: 5px;
  border-radius: 50%;
}

.guideFlow_ttl {
  font-size: 1.4rem;
  font-weight: bold;
  margin: 5px 0 0 0;
}

.guideFlow_txt {
  font-size: 1.2rem;
  line-height: 1.7;
  margin: 5px 0 0 0;
}



@media (min-width: 769px) {
  .guideFlow {
    display: flex;
    flex-wrap: wrap;
    margin: 24px 0 0 0;
  }

  .guideFlow_item {
    width: 47.6744%;
    margin: 16px 4.6512% 0 0;
  }

  .guideFlow_item:nth-child(2n) {
    margin-right: 0;
  }

  .guideFlow_img::after {
    width: 40px;
    height: 40px;
    line-height: 40px;
    top: 10px;
    left: 10px;
  }

  .guideFlow_ttl {
    font-size: 1.6rem;
  }

  .guideFlow_txt {
    font-size: 1.4rem;
  }
}



/* ------------------------------------------------------------

FAQ

------------------------------------------------------------ */

.faqList {
  margin: 20px 0 0 0;
}

.faqList_item {
  margin: 10px 0 0 0;
}

.faqList_item dt {
  font-size: 1.4rem;
  line-height: 1.5;
  padding: 18px 50px;
  position: relative;
  background: #f4f4f4;
}

.faqList_item dt::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 10px;
  width: 16px;
  height: 2px;
  background: #333;
  transform: translate(0,-50%);
  transition: .3s;
}

.faqList_item dt::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 17px;
  width: 2px;
  height: 16px;
  background: #333;
  transform: translate(0,-50%);
  transition: .3s;
}

.faqList_item dt.ac-open::before {
  transform: translate(0,-50%) rotate(90deg);
  opacity: 0;
}

.faqList_item dt.ac-open::after {
  transform: translate(0,-50%) rotate(90deg);
}

.faqList_item dt span::before,
.faqList_item dd::before {
  content: 'Q';
  display: block;
  width: 30px;
  height: 30px;
  font-size: 1.2rem;
  line-height: 30px;
  border-radius: 50%;
  background: #333;
  color: #fff;
  text-align: center;
  position: absolute;
  left: 10px;
  top: 13px;
}

.faqList_item dd {
  font-size: 1.4rem;
  font-weight: normal;
  margin: 0;
  padding: 18px 0 18px 50px;
  position: relative;
}

.faqList_item dd::before {
  content: 'A';
  top: 17px;
  background: #672f87;
}

@media (min-width: 769px) {

  .faqList {
    margin: 40px 0 0 0;
  }

  .faqList_item {
    margin: 20px 0 0 0;
  }

  .faqList_item dt {
    font-size: 1.6rem;
    padding: 18px 60px;
    transition: opacity .3s ease;
  }

  .faqList_item dt:hover {
    cursor: pointer;
    opacity: 0.6;
  }

  .faqList_item dt::before {
    right: 18px;
    width: 20px;
  }

  .faqList_item dt::after {
    right: 27px;
    height: 20px;
  }

  .faqList_item dt span::before,
  .faqList_item dd::before {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
    line-height: 40px;
    top: 10px;
  }

  .faqList_item dd {
    padding: 23px 0 23px 60px;
  }

  .faqList_item dd::before {
    top: 17px;
  }
}


/* ------------------------------------------------------------

会社概要

------------------------------------------------------------ */

/* corporateTable
---------------------------------------- */

.corporateTable {
  border-collapse: collapse;
  width: 100%;
}

.corporateTable tr:nth-child(odd) {
  background: #f4f4f4;
}

.corporateTable th,
.corporateTable td {
  line-height: 2.5;
  padding: 0 10px;
  font-weight: normal;
  text-align: left;
  vertical-align: top;
  font-size: 1.2rem;
}

.corporateTable th {
  min-width: calc(6em + 20px);
}

.corporateTable td {
  padding: 0 10px 0 0;
  text-align: right;
  line-height: 1.5;
}

.corporateTable_txt {
  margin: 6px 0;
}

@media (min-width: 769px) {
  .corporateTable th,
  .corporateTable td {
    padding: 0 16px;
    font-size: 1.6rem;
  }

  .corporateTable_txt {
    margin: 8px 0;
  }
}


/* corporateOffice
---------------------------------------- */

.corporateOffice {
  margin: 10px 0 0 0;
  display: flex;
  justify-content: space-between;
}

.corporateOffice_img {
  width: 80px;
}

.corporateOffice_map {
  flex: 1;
  margin-left: 10px;
}

.corporateOffice_map iframe {
  width: 100% !important;
  height: 193px !important;
}

@media (min-width: 769px) {

  .corporateOffice {
    margin: 20px 0 0 0;
  }

  .corporateOffice_img {
    width: 200px;
  }

  .corporateOffice_map {
    margin-left: 20px;
  }
}



/* ------------------------------------------------------------

プライバシーポリシー

------------------------------------------------------------ */

.lawTtl {
  margin: 16px 0 -6px 0;
  background: #f4f4f4;
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 1.5;
  padding: 6px 10px;
}

@media (min-width: 769px){
  .lawTtl {
    margin: 24px 0 -9px 0;
    font-size: 1.6rem;
    padding: 8px 16px;
  }
}



/* ------------------------------------------------------------

トピックス

------------------------------------------------------------ */

/* topicsCatNav
---------------------------------------- */

.topicsCatNav {
  margin: 30px 0 35px 0;
  padding: 0 0 10px 0;
  border-bottom: solid 1px #c8c8c8;
}

.topicsCatNav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  border-right: solid 1px #c8c8c8;
}

.topicsCatNav li {
  width: 100%;
  flex: 1;
  border-left: solid 1px #c8c8c8;
}

.topicsCatNav a {
  display: block;
  text-align: center;
  font-size: 1rem;
  padding: 10px 0;
}

.topicsCatNav_active a {
  background: #333;
  color: #fff;
}

@media (min-width: 769px) {

  .topicsCatNav {
    margin: 40px 0 45px 0;
    padding: 0 0 20px 0;
  }

  .topicsCatNav a {
    font-size: 1.6rem;
    padding: 4px 0;
  }
}


/* topicsCont
---------------------------------------- */

.topicsCont_img {
  margin: 35px 0 0 0;
}

.topicsCont_cat {
  margin: 38px 0 0 0;
  display: inline-block;
  background: #333;
  color: #fff;
  padding: 0 5px;
  font-size: .8rem;
}

.topicsCont_date {
  color: #808080;
  font-size: 1.2rem;
  margin: 8px 0 0 0;
}

.topicsCont_ttl {
  font-size: 1.8rem;
  line-height: 1.5;
  margin: 4px 0 0 0;
}

.topicsCont_content {
  font-size: 1.4rem;
}

@media (min-width: 769px) {

  .topicsCont_img {
    margin: 45px 0 0 0;
  }

  .topicsCont_cat {
    padding: 0 6px;
    font-size: 1rem;
  }

  .topicsCont_date {
    margin: 12px 0 0 0;
  }

  .topicsCont_ttl {
    font-size: 2.4rem;
  }
}


/* topicsCont_content
   記事内のタグに当てるスタイルはここに書く
---------------------------------------- */

.topicsCont_content p {
  margin: 20px 0 0 0;
}

.topicsCont_content figure {
  margin: 20px 0 0 0;
}



/* topicsPageNav
---------------------------------------- */

.topicsPageNav {
  margin: 60px 0 0 0;
  display: flex;
  justify-content: center;
}

.topicsPageNav div {
  width: 40px;
  margin: 0 8px;
}

.topicsPageNav a {
  display: block;
  border: solid 1px #c8c8c8;
  text-align: center;
  font-size: 1.4rem;
  line-height: 38px;
}

.topicsPageNav_current span {
  display: block;
  text-align: center;
  font-size: 1.2rem;
  line-height: 38px;
}

.topicsPageNav_prev a,
.topicsPageNav_next a {
  font-size: 1.8rem;
}

@media (min-width: 769px) {
  .topicsPageNav {
    margin: 80px 0 0 0;
  }
}





/* ------------------------------------------------------------

会員登録 ／ 基本フォームパーツ

------------------------------------------------------------ */

.fs-c-panel {
  margin-top: 20px;
  margin-bottom: 20px;
}

fieldset {
  padding: 0;
  margin: 0;
}

.fs-c-inputInformation__message {
  margin: 26px 0 0 0;
}

.fs-c-inputTable {
  border-collapse: collapse;
  width: 100%;
  table-layout: auto;
  margin: 26px 0 0 0;
  border-top: solid 1px #c8c8c8;
}

.fs-c-inputTable tbody {
  width: 100%;
}

.fs-c-inputTable__headerCell {
  display: block;
  padding: 20px 0 0 0;
  font-weight: normal;
  text-align: left;
  verticala-lign: middle;
}

.fs-c-inputTable__dataCell {
  display: block;
  border-bottom: solid 1px #c8c8c8;
  padding: 20px 0;
  verticala-lign: middle;
}

.fs-c-inputTable__label {
  position: relative;
  display: block;
}

.fs-c-requiredMark {
  text-indent: -9999em;
}

.fs-c-requiredMark::before {
  content: '必須';
  display: inline-block;
  font-size: 1.2rem;
  line-height: 20px;
  background: #672f89;
  color: #fff;
  padding: 0 8px;
  position: absolute;
  right: 0;
  top: 6px;
}

input[type="text"],
input[type="password"],
input[type="tel"] {
  font-size: 1.6rem;
  line-height: 1;
  padding: 8px 10px;
  border-radius: 5px;
  min-height: none;
}

.fs-c-inputGroup {
  position: relative;
}

.fs-c-inputGroup .fs-c-button--displayPassword,
.fs-c-inputGroup .fs-c-button--hidePassword {
  display: block;
  width: 26px;
  height: 26px;
  background: url(../img/mypage/ico_eye.png) no-repeat 0 0 / contain;
  border: 0;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translate(0,-50%);
  line-height: 1px;
}

.fs-c-inputGroup .fs-c-button--hidePassword::after {
  content: '';
  display: block;
  width: 4px;
  height: 26px;
  background: #ccc;
  border-right: solid 2px #fff;
  position: absolute;
  top: -1px;
  right: 10px;
  transform: rotate(-45deg);
}

.fs-c-dropdown__menu {
  font-size: 1.6rem;
  line-height: 1;
  padding: 12px 10px;
  border-radius: 5px;
}

.fs-c-dropdownGroup {
  flex-wrap: nowrap;
}

.fs-c-inputDate__year,
.fs-c-inputDate__month,
.fs-c-inputDate__date {
  width: 100%;
}

.fs-c-assist.is-error {
  margin: 0;
  padding: 0;
}

.fs-c-additionalCheckField {
  margin: 20px 0;
}

.fs-c-additionalCheckField a {
  text-decoration: underline;
}

.fs-c-privacyPolicyAgreeField {
  padding: 0 0 20px 0;
  border-bottom: solid 1px #c8c8c8;
}

.fs-c-buttonContainer {
  margin: 26px 0 0 0;
  text-align: center;
}

.fs-c-button--primary {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  border: none;
  background: #672f89;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 2;
  color: #fff;
  text-align: center;
  padding: 15px 0;
}

.fs-c-button--secondary {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  background: #333;
  color: #fff;
  border: none;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 2;
  text-align: center;
  padding: 15px 0;
}

@media (min-width: 769px) {

  .fs-c-inputInformation__message {
    margin: 40px 0 0 0;
  }

  .fs-c-inputTable {
    margin: 40px 0 0 0;
    border: none;
  }

  .fs-c-inputTable tbody {
    width: 100%;
  }

  .fs-c-inputTable__headerCell {
    display: table-cell;
    border-top: solid 1px #c8c8c8;
    border-bottom: solid 1px #c8c8c8;
    width: 260px;
    padding: 20px 0;
  }

  .fs-c-inputTable__dataCell {
    display: table-cell;
    border-top: solid 1px #c8c8c8;
    padding: 20px 0 20px 20px;
  }

  .fs-c-additionalCheckField {
    margin: 20px 0;
    padding-left: 280px;
  }

  .fs-c-buttonContainer {
    margin: 40px 0 0 0;
  }

  .fs-c-button--primary {
    font-size: 1.8rem;
    padding: 12px 0;
  }

  .fs-c-button--secondary {
    font-size: 1.8rem;
    padding: 12px 0;
  }
}


/* ------------------------------------------------------------

ログイン

------------------------------------------------------------ */


/* ログインパーツ（システムパーツ）
---------------------------------------- */

/* 見出し */
.fs-c-registeredUsers__title {
  margin: 35px auto 0;
  font-weight: bold;
  line-height: 1.83;
  font-size: 1.8rem;
  border-bottom: solid 1px #c8c8c8;
  padding: 0 0 4px 0;
}

@media (min-width: 769px){
  .fs-c-registeredUsers__title {
    margin: 45px auto 0;
    font-size: 2.4rem;
    padding: 0 0 8px 0;
  }
}

/* エラー */
.fs-c-panel--error{
  margin: 35px auto 0;
}

@media (min-width: 769px){
  .fs-c-panel--error {
    margin: 45px auto 0;
  }
}


/* フォーム */

.fs-c-fsLogin {
  background: #f4f4f4;
  padding: 25px 10px;
  margin: 26px 0 0 0;
}

.fs-c-fsLogin .fs-c-inputInformation__field {
  max-width: 400px;
  padding: 0;
  margin: 0 auto;
}

.fs-c-fsLogin .fs-c-fsLoginField,
.fs-c-fsLogin .fs-c-inputTable,
.fs-c-fsLogin .fs-c-inputTable tbody,
.fs-c-fsLogin .fs-c-inputTable tr,
.fs-c-fsLogin .fs-c-inputTable th,
.fs-c-fsLogin .fs-c-inputTable td {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: left;
  border: none;
}

.fs-c-fsLogin .fs-c-inputTable__label {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: normal;
  margin: 10px 0 0 0;
}

.fs-c-fsLogin .fs-c-requiredMark {
  display: none;
}

.fs-c-fsLogin .fs-c-buttonContainer--login {
  margin: 26px 0 0 0;
}

.fs-c-fsLogin .fs-c-button--login {
  position: relative;
}

.fs-c-fsLogin .fs-c-button--login::after {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  transform: rotate(45deg) translate(0,-50%);
  position: absolute;
  right: 20px;
  top: 50%;
}

.fs-c-fsLogin .fs-c-textLinkContainer {
  text-align: center;
  margin: 20px 0 0 0;
}

.fs-c-fsLogin .fs-c-textLinkContainer a {
  text-decoration: underline;
}


@media (min-width: 769px){
  .fs-c-fsLogin {
    padding: 50px 10px;
    margin: 40px 0 0 0;
  }

  .fs-c-fsLogin .fs-c-inputTable__label {
    font-size: 1.6rem;
  }

  .fs-c-fsLogin .fs-c-buttonContainer--login {
    margin: 40px 0 0 0;
  }

  .fs-c-fsLogin .fs-c-button--login::after {
    width: 11px;
    height: 11px;
    right: 20px;
  }

}


/* Amazonログインパーツ（システムパーツ）
---------------------------------------- */

.fs-c-anotherLogin--amazon .fs-c-anotherLogin__message--amazon {
  margin-bottom: 10px;
}

.fs-c-anotherLogin--amazon .fs-c-buttonContainer {
  margin: 0;
  text-align: left;
}


/* 新しいパスワードの登録表示（システムパーツ）
---------------------------------------- */

.fs-c-inputInformation__message





/* ------------------------------------------------------------

ショッピングカート

------------------------------------------------------------ */


/* カートコンテンツ表示エリア（システムパーツグループ）
---------------------------------------- */

.fs-l-cart__contentsArea {
  margin: 35px 0 0 0;
}

@media (min-width: 769px){
  .fs-l-cart__contentsArea {
    margin: 50px 0 0 0;
    display: flex;
    justify-content: space-between;
    align-items: start;
  }
}



/* ショッピングカートパーツ（システムパーツ）
---------------------------------------- */

.fs-c-cartTable {
  margin: 26px 0 0 0;
  border-bottom: solid 1px #c8c8c8;
}

.fs-c-cartTable > thead {
  display: none;
}

.fs-c-cartTable__row {
  border-top: solid 1px #c8c8c8;
  margin: 0;
  padding: 20px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;

}

.fs-c-cartTable__dataCell--product {
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 2;
  width: 100%;
  padding: 0;
  font-size: 1.2rem;
  border: 0;
}

.fs-c-cartTable__productImage {
  width: 88px;
  flex: 0 0 88px;
}

.fs-c-cartTable__dataCell--quantity {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 2;
  grid-row-end: 3;
  margin: 10px 0 0 0;
  padding: 0;
  text-align: right;
  border: 0;
  width: 100%;
}

.fs-c-cartTable__dataCell--quantity::before {
  content: '数量';
  font-weight: bold;
  font-size: 0.8rem;
  margin-right: 8px;
  min-width: 2em;
}

.fs-c-cartTable__quantity {
  display: inline-block;
}

.fs-c-cartTable__quantity input,
.fs-c-cartTable__quantity select {
  background: #fff;
  -webkit-appearance: none;
  appearance: none;
  box-shadow: none;
}

.fs-c-cartTable__dataCell--subtotal {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 3;
  grid-row-end: 4;
  margin: 5px 0 0 0;
  padding: 0;
  text-align: right;
  border: 0;
}

.fs-c-cartTable__dataCell--subtotal::before {
  content: '小計';
  font-weight: bold;
  font-size: 0.8rem;
  margin-right: 8px;
  min-width: 2em;
}

.fs-c-cartTable__price {
  display: inline-block;
}

.fs-c-cartTable__dataCell--point {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 4;
  grid-row-end: 5;
  margin: 0;
  padding: 0;
  text-align: right;
  border: 0;
}

.fs-c-cartTable__dataCell--point::before {
  content: 'ポイント';
  font-weight: bold;
  font-size: 0.8rem;
  margin-right: 8px;
  min-width: 2em;
}

.fs-c-cartTable__dataCell--point::after {
  content: 'pt';
}

.fs-c-cartTable__dataCell--action {
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 2;
  grid-row-end: 5;
  margin: 10px 0 0 0;
  padding: 0;
  border: 0;
}

.fs-c-cartTable__actionButton {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 80px;
}

.fs-c-cartTable__actionButton__container {
  width: 80px;
  margin: 5px 0;
  padding: 0;
}

.fs-c-cartTable__actionButton__container--cancel--cart {

}

.fs-c-button--cancel--cart {
  display: block;
  font-size: 1rem;
  width: 100%;
  padding: 5px 0;
  background: #333;
  border: 0;
  color: #fff;
}

.fs-c-button--buyItLater {
  display: block;
  font-size: 1rem;
  width: 100%;
  padding: 5px 0;
  background: #f4f4f4;
  border: 0;
}


@media (min-width: 769px){

  .fs-l-cart__mainColumn {
    width: 100%;
    flex: 1;
  }

  .fs-c-cartTable {
    border-bottom: 0;
    margin: 0;
  }

  .fs-c-cartTable > thead {
    display: table-header-group;
  }

  .fs-c-cartTable > thead tr th {
    background: #f4f4f4;
    border: 0;
    padding: 6px 0;
    font-size: 1.4rem;
    font-weight: normal;
    text-align: left;
  }

  .fs-c-cartTable > thead tr th.fs-c-cartTable__headerCell--product {
    padding-left: 10px;
  }

  .fs-c-cartTable__row {
    border: 0;
    border-bottom: solid 1px #c8c8c8;
    margin: 0;
    padding: 0;
    display: table-row;
  }

  .fs-c-cartTable__dataCell--product {
    width: auto;
    padding: 20px 20px 20px 0;
    font-size: 1.4rem;
    border: 0;
  }

  .fs-c-cartTable__dataCell--product .fs-c-cartTable__productImage {
    width: 95px;
    padding-right: 15px;
  }

  .fs-c-cartTable__headerCell--quantity {
    width: 60px;
  }

  .fs-c-cartTable__dataCell--quantity {
    width: 60px;
    margin: 0;
    padding: 20px 20px 20px 0;
    border: 0;
  }

  .fs-c-cartTable__dataCell--quantity::before {
    content: none;
  }

  .fs-c-cartTable__quantity {
    display: block;
    width: 40px;
    max-width: 40px;
    min-width: 40px;
  }

  .fs-c-cartTable__quantity input,
  .fs-c-cartTable__quantity select {
    width: 40px;
    max-width: 40px;
    min-width: 40px;
  }

  .fs-c-cartTable__dataCell--subtotal {
    width: auto;
    white-space: nowrap;
    margin: 0;
    padding: 20px 10px 20px 0;
    border: 0;
    font-size: 1.4rem;
  }

  .fs-c-cartTable__dataCell--subtotal::before {
    content: none;
  }

  .fs-c-cartTable__dataCell--point {
    width: 80px;
    white-space: nowrap;
    margin: 0;
    padding: 20px 20px 20px 0;
    border: 0;
    font-size: 1.4rem;
  }

  .fs-c-cartTable__dataCell--point::before {
    content: none;
  }

  .fs-c-cartTable__dataCell--action {
    margin: 0;
    padding: 20px 0;
    border: 0;
  }

  .fs-c-cartTable__actionButton {
    display: block;
    width: 90px;
  }

  .fs-c-cartTable__actionButton__container {
    width: 90px;
    margin: 10px 0;
    padding: 0;
  }

  .fs-c-button--cancel--cart {
    font-size: 1.4rem;
    padding: 8px 0;
  }

  .fs-c-button--buyItLater {
    font-size: 1.4rem;
    padding: 8px 0;
  }
}


/* 総合計エリア（システムパーツグループ）
---------------------------------------- */

.fs-l-cart__sideColumn {
  background: #f4f4f4;
  padding: 20px 10px;
  margin: 20px 0 0 0;
}

.fs-c-orderTotalTable {
  border-collapse: collapse;
  width: 100%;
}

.fs-c-orderTotalTable > tbody > tr > th {
  border: 0;
  border-top: solid 1px #c8c8c8;
  border-bottom: solid 1px #c8c8c8;
  padding: 10px 0;
  text-align: left;
  font-weight: normal;
  font-size: 1.4rem;
}

.fs-c-orderTotalTable > tbody > tr > td {
  border: 0;
  border-top: solid 1px #c8c8c8;
  border-bottom: solid 1px #c8c8c8;
  padding: 10px 0;
  text-align: right;
  font-weight: normal;
  font-size: 1.4rem;
}

.fs-c-purchaseHere__message {
  margin: 0 0 -21px 0;
  font-size: 1.2rem;
}

.freeShippingNotice {
  margin: 10px 0 0;
  background: #333;
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1.5;
  padding: 8px 0;
}

.fs-c-buttonContainer--unregisteredUserPurchase {
  margin: 10px 0 0 0;
}

.fs-c-button--loginAndPurchase,
.fs-c-button--unregisteredUserPurchase {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  border: none;
  background: #672f89;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 2;
  color: #fff;
  text-align: center;
  padding: 15px 0;
}

.fs-c-button--unregisteredUserPurchase {
  background: #333;
}

.fs-c-button--loginAndPurchase::before {
  content: 'ログインして進む';
}

/*.fs-c-button--unregisteredUserPurchase::before {
  content: 'ご注文手続きへ';
}*/

.fs-c-button--loginAndPurchase img,
.fs-c-button--unregisteredUserPurchase img {
  display: none;
}


@media (min-width: 769px){

  .fs-l-cart__sideColumn {
    width: 240px;
    padding: 20px;
    margin: 0 0 0 40px;
  }

  .fs-c-purchaseHere__message {
    margin: 0 0 -35px 0;
  }

  .fs-l-cart__sideColumn .fs-c-button--purchaseHere,
  .fs-c-button--loginAndPurchase,
  .fs-c-button--unregisteredUserPurchase {
    font-size: 1.6rem;
    padding: 8px 0;
  }

  .freeShippingNotice {
    font-size: 1.6rem;
  }
}


/* Amazon購入エリア（システムパーツ）
---------------------------------------- */

.fs-c-payWithAmazon {
  display: flex;
  flex-wrap: wrap;
}

.fs-c-payWithAmazon__message {
  width: 100%;
  order: 2;
  font-size: 1.2rem;
  line-height: 1.5;
}

.fs-c-payWithAmazon__button {
  width: 100%;
  order: 1;
  margin: 26px 0 0 0;
}


@media (min-width: 769px){
  .fs-c-payWithAmazon__button {
    margin: 15px 0 10px 0;
  }

  .fs-c-payWithAmazon__message p {
    margin: 0;
  }
}


/* ショッピングを続ける（不要なため非表示）
---------------------------------------- */

.fs-c-continueShopping {
  display: none;
}



/* ------------------------------------------------------------

お客様情報入力（非会員時）

------------------------------------------------------------ */

.fs-c-agreementConfirmation__message--registrationChecked,
.fs-c-agreementConfirmation__message--newsletterChecked {
  background: #f2f2f2;
  padding: 5px 10px;
}

.fs_unregisterAndContinue button {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  border: none;
  background: #333;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 2;
  color: #fff;
  text-align: center;
  padding: 15px 0;
}

@media (min-width: 769px) {

  .fs_unregisterAndContinue button {
    font-size: 1.8rem;
    padding: 12px 0;
  }
}





/* ------------------------------------------------------------

Amazonでのお支払い

------------------------------------------------------------ */

.fs-c-checkout-amazonWidget__widget {
  min-width: 100%;
}





/* ------------------------------------------------------------

ご注文手続き

------------------------------------------------------------ */

/* ご注文手続きエリア（システムパーツグループ）
---------------------------------------- */

.fs-l-checkout__mainColumn {
  margin: 35px 0 0 0;
}

.fs-c-checkout-preview {
  margin: 26px 0 0 0;
}

.fs-c-checkout-preview__title {
  background: #f4f4f4;
  font-weight: normal;
  font-size: 1.4rem;
  padding: 4px 10px;
  margin: 0;
}

.fs-c-checkout-preview__body {
  margin: 15px 0 0 0;
  font-size: 1.2rem;
}

.fs-c-checkout-preview rt,
.fs-c-checkout-preview rb,
.fs-c-checkout-preview rt,
.fs-c-checkout-preview rb,
.fs-c-checkout-destination__name__home {
  font-size: 1.2rem;
  line-height: 2;
}

.fs-c-checkout-preview__button {
  text-align: right;
}

.fs-c-checkout-destination__button,
.fs-c-checkout-previewAndEdit__button {
  text-align: right;
}

.fs-c-button--change--small {
  background: #f4f4f4;
  border: none;
  padding: 10px 30px;
}

.fs-c-checkout-confirmationList > dt::after {
  height: auto;
}

.fs-c-buttonContainer--chooseDestination {
  margin: 5px 0 0 0;
}

.fs-c-button--chooseDestination {
  background: #f4f4f4;
  border: none;
  padding: 10px 30px;
}

.fs-c-checkout-destination__control {
  display: block;
}

.fs-c-returnedSpecialContract__link {
  display: none;
}

.fs-c-checkout-orderInfo__body {
  margin: -20px 0 0 0;
}

.fs-c-checkout-orderInfo__body .fs-c-cartTable {
  border: 0;
}

.fs-c-checkout-orderInfo__body .fs-c-cartTable__row {
  padding: 15px 0 10px;
  border: 0;
  border-bottom: solid 1px #c8c8c8;
}

.fs-c-checkout-orderInfo__body thead .fs-c-cartTable__row {
  border: 0;
}


@media (min-width: 769px){

  .fs-l-checkout__mainColumn {
    width: calc( 100% - 280px );
    float: left;
    margin: 0;
  }

  .fs-c-checkout-preview {
    margin: 40px 0 0 0;
  }

  .fs-c-checkout-preview__title {
    font-size: 1.6rem;
    padding: 4px 20px;
  }

  .fs-c-checkout-preview__body {
    margin: 20px 0 0 0;
    font-size: 1.4rem;
  }

  .fs-c-checkout-destination__body {
    display: block;
  }

  .fs-c-checkout-preview rt,
  .fs-c-checkout-preview rb,
  .fs-c-checkout-preview rt,
  .fs-c-checkout-preview rb,
  .fs-c-checkout-destination__name__home {
    font-size: 1.4rem;
  }

  .fs-c-checkout-orderInfo__body {
    margin: 0;
  }

  .fs-c-checkout-orderInfo__body thead {
    display: none;
  }

  .fs-c-checkout-orderInfo__body td {
    vertical-align: top;
  }

  .fs-c-checkout-orderInfo__body {
    margin: 0;
  }


}


/* お支払い金額パーツ（システムパーツ）
---------------------------------------- */

.fs-l-checkout__sideColumn {
  background: #f4f4f4;
  padding: 20px 10px;
  margin: 26px 0 0 0;
}

.fs-l-checkout__sideColumn .fs-c-totalAndActions {
  margin: 0;
}

.fs-l-checkout__sideColumn .fs-c-checkout-preview__title {
  font-size: 1.2rem;
  line-height: 2;
  margin: 0 0 10px 0;
  padding: 0;
}

.fs-c-orderTotalTable .fs-c-orderTotalTable__grandTotal th,
.fs-c-orderTotalTable .fs-c-orderTotalTable__grandTotal td {
  border-top: solid 1px #c8c8c8;
}

@media (min-width: 769px){
  .fs-l-checkout__sideColumn {
    padding: 20px;
    margin: 40px 0 0 0;
    width: 240px;
    float: right;
  }

  .fs-l-checkout__sideColumn  .fs-c-checkout-preview__title {
    font-size: 1.4rem;
  }

  .fs-c-buttonContainer--confirmOrder {
    margin: 20px 0 0 0;
  }

  .fs-c-buttonContainer--confirmOrder .fs-c-button--primary {
    font-size: 1.6rem;
    padding: 8px 0;
  }
}



/* modal
---------------------------------------- */
.fs-c-modal__header {
  background: #f4f4f4;
}

.fs-c-modal__title {
  padding: 0 16px 8px;
  font-size: 1.6rem;
}

.fs-c-modal__close {
  position: relative;
  width: 40px;
}

.fs-c-modal__close::before {
  font-size: 2rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.fs-c-inputTable--inModal {
  margin: 0;
  border-top: 0;
}

.fs-c-inputTable--inModal .fs-c-inputTable__headerCell {
  padding-bottom: 5px;
}

.fs-c-inputTable--inModal .fs-c-inputTable__dataCell {
  border-bottom: 0;
}

.fs-c-checkout-addresseeList {
  list-style-type: none;
  margin: -10px 0 0 0;
   padding: 0;
}

.fs-c-checkout-addressee {
  border: solid 1px #c8c8c8;
  margin: 10px 0 0 0;
  padding: 16px;
}

.fs-c-checkout-addressee .fs-c-button--setDestination {
  background: #672f89;
  color: #fff;
  padding: 6px 16px;
  border: 0;
}

.fs-c-checkout-addressee .fs-c-button--edit {
  background: #333;
  color: #fff;
  padding: 6px 16px;
  border: 0;
}

.fs-c-buttonContainer--pair .fs-c-button--addAddressee {
  display: inline-block;
  margin: 0;
  order: 2;
  width: 100%;
  max-width: 320px;
  border: none;
  background: #672f89;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 2;
  color: #fff;
  text-align: center;
  padding: 15px 0;
}

.fs-c-checkout-deliveryMethod__option__setting {
  background: #f4f4f4;
  padding: 16px;
}

.fs-c-checkout-deliveryMethod__option__setting dd {
  margin: 0;
  padding: 0;
}

.fs-c-checkout-deliveryMethod__option__setting__message {
  margin: 0 0 10px 0;
  font-size: 0.875em;
  line-height: 1.5;
}

.fs-c-creditCardIcons {
  display: flex;
  list-style-type: none;
  margin: 10px;
  padding: 0;
}

.fs-c-creditCardIcons__icon {
  margin: 0 10px 0 0;
}

.fs-c-inputTable--inModal .fs-c-dropdown {
  width: 100%;
}

.fs-c-inputTable--inModal .fs-c-inputField__explanation {
  font-size: 0.875em;
  line-height: 1.5;
}

.fs-c-checkout-pointSetting__inputUsePoint {
  display: flex;
  align-items: center;
}

.fs-c-checkout-pointSetting__inputUsePoint input {
  width: 50%;
}

.fs-c-checkout-pointSetting__inputUsePoint label {
  margin-left: 10px;
}

@media (min-width: 769px){
  .fs-c-inputTable--inModal .fs-c-inputTable__headerCell {
    border: 0;
    width: 100%;
  }

  .fs-c-inputTable--inModal .fs-c-inputTable__dataCell {
    border: 0;
  }

  .fs-c-checkout-addressee {
    display: flex;
    justify-content: space-between;
  }

  .fs-c-checkout-addressee__control {
    padding-left: 30px;
  }

  .fs-c-buttonContainer--pair .fs-c-button--addAddressee {
    font-size: 1.8rem;
    padding: 12px 0;
  }

  .fs-c-inputTable--inModal .fs-c-dropdown {
    width: 100%;
  }
}



/* ------------------------------------------------------------

ご注文完了

------------------------------------------------------------ */

.fs-c-checkoutSuccess {
  margin: 35px 0 0 0;
}

.fs-c-checkoutSuccess h2 {
  font-size: 1.6rem;
  font-weight: bold;
  color: #672f89;
  margin: 0;
}


@media (min-width: 769px){
  .fs-c-checkoutSuccess {
    margin: 45px 0 0 0;
  }

  .fs-c-checkoutSuccess h2 {
    font-size: 2.4rem;
  }
}



/* ------------------------------------------------------------

マイページ

------------------------------------------------------------ */

.mypageContentsContainer {
  margin: -25px 0 0 0;
}

.mypageTopPoint {
  background: #f4f4f4;
  margin: 35px 0 0 0;
  padding: 8px 15px;
}

.mypageTopPoint_txt {
  font-size: 1.6rem;
  font-weight: bold;
  margin: 0;
}

@media (min-width: 769px){
  .mypageContentsContainer {
    margin: -75px 0 0 0;
  }

  .mypageTopPoint {
    padding: 16px 30px;
    margin: 45px 0 0 0;
  }

  .mypageTopPoint_txt {
    font-size: 2.4rem;

  }
}




/* マイページトップパーツ（システムパーツ）
---------------------------------------- */

.fs-c-accountService {
  margin: 50px -5px 0;
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

.fs-c-accountService__page {
  width: 33.3333%;
  margin: 10px 0 0 0;
  padding: 0 5px;
  text-align: center;
}

.fs-c-accountService__pageLink {
  display: block;
  width: 100%;
  height: 100%;
  background: #f4f4f4;
  font-size: 1rem;
  padding: 25% 0 20%;
}

.fs-c-accountService__pageLink::before {
  content: '';
  display: block;
  margin: 0 auto;
  width: 32px;
  height: 32px;
}

.fs-c-accountService__page--wishList .fs-c-accountService__pageLink::before {
  background: url(../img/mypage/ico_01.png) no-repeat center center / contain;
}

.fs-c-accountService__page--orderHistoryList .fs-c-accountService__pageLink::before {
  background: url(../img/mypage/ico_02.png) no-repeat center center / contain;
}

.fs-c-accountService__page--pointHistory .fs-c-accountService__pageLink::before {
  background: url(../img/mypage/ico_03.png) no-repeat center center / contain;
}

.fs-c-accountService__page--accountCard .fs-c-accountService__pageLink::before {
  background: url(../img/mypage/ico_04.png) no-repeat center center / contain;
}

.fs-c-accountService__page--addressbook  .fs-c-accountService__pageLink::before {
  background: url(../img/mypage/ico_05.png) no-repeat center center / contain;
}

.fs-c-accountService__page--accountPassword .fs-c-accountService__pageLink::before {
  background: url(../img/mypage/ico_06.png) no-repeat center center / contain;
}

.fs-c-accountService__page--accountSettingsModify .fs-c-accountService__pageLink::before {
  background: url(../img/mypage/ico_07.png) no-repeat center center / contain;
}

.fs-c-accountService__page--accountDelete .fs-c-accountService__pageLink::before {
  background: url(../img/mypage/ico_08.png) no-repeat center center / contain;
}
.fs-c-accountService__page--couponList .fs-c-accountService__pageLink::before {
  background: url(../img/mypage/ico_09.png) no-repeat center center / contain;
}
.fs-c-accountService__page--subscriptionHistoryList .fs-c-accountService__pageLink::before {
  background: url(../img/mypage/ico_11.png) no-repeat center center / contain;
}

.fs-c-accountService__pageLink__label {
  display: block;
  margin: 10px 0 0 0;
  line-height: 1.5;
}

/* レビュー履歴を非表示 */
.fs-c-accountService__page--accountReviews {
  display: none;
}


@media (min-width: 769px) {
  .fs-c-accountService {
    margin: 100px -10px 0;
  }

  .fs-c-accountService__page {
    width: 25%;
    margin: 20px 0 0 0;
    padding: 0 10px;
  }

  .fs-c-accountService__pageLink {
    font-size: 1.6rem;
  }

  .fs-c-accountService__pageLink::before {
    width: 64px;
    height: 64px;
  }

  .fs-c-accountService__pageLink__label {
    margin: 15px 0 0 0;
  }
}


/* お気に入りリストタイトル
---------------------------------------- */

.fs-c-wishlistProduct__title {
  margin: 64px auto 0;
  font-weight: bold;
  line-height: 1.83;
  font-size: 1.6rem;
  border-bottom: solid 1px #c8c8c8;
  padding: 0 0 4px 0;
}

@media (min-width: 769px){
  .fs-c-wishlistProduct__title {
    margin: 80px auto 0;
    font-size: 2.4rem;
    padding: 0 0 8px 0;
  }
}



/* お気に入りリスト
---------------------------------------- */

.fs-c-wishlistProduct__list {
  position: relative;
  display: block;
}

.fs-c-productListCarousel__list {
  display: block;
  overflow: initial;
}

.fs-c-productListCarousel__list__itemTrack {
  padding: 0;
  margin: 26px 0 0;
  display: flex;
  flex-wrap: wrap;
  counter-reset: item-count;
}

.fs-c-productListItem {
  flex-basis: 145px;
  max-width: 145px;
  min-width: 145px;
  margin: 0 10px 0 0;
  position: relative;
  counter-increment: item-count;
}

/* slick arrow */
.fs-c-productListCarousel__ctrl {
  display: block;
  width: 14px;
  min-width: 0;
  height: 14px;
  position: absolute;
  z-index: 5;
  top: 72px !important;
  transition: .3s;
  line-height: 14px;
  border: none;
  background: none;
  overflow: hidden;
}

.fs-c-productListCarousel__ctrl--prev {
  left: 2px;
  border-top: solid 1px #333;
  border-left: solid 1px #333;
  transform: rotate(-45deg) translate(0,-50%);
}

.fs-c-productListCarousel__ctrl--next {
  right: 2px;
  border-top: solid 1px #333;
  border-right: solid 1px #333;
  transform: rotate(45deg) translate(0,-50%);
}

.fs-c-button--carousel--prev,
.fs-c-button--carousel--next {
  display: block;
  width: 14px;
  height: 14px;
  line-height: 14px;
}

.fs-c-productListCarousel__ctrl .fs-c-button__label {
  display: none;
}

.fs-c-productListCarousel__ctrl.slick-disabled,
.fs-c-productListCarousel__ctrl.slick-disabled:hover {
  opacity: 0;
}

@media (min-width: 769px) {

  .fs-c-productListCarousel__list__itemTrack {
    margin: 40px 0 0 0;
    padding: 0;
  }

  .fs-c-productListItem {
    flex-basis: 260px;
    max-width: 260px;
    min-width: 260px;
    margin: 0 40px 0 0;
    padding: 0;
  }

  .fs-c-productListCarousel__ctrl {
    width: 30px;
    height: 30px;
    top: 130px !important;
  }

  .fs-c-productListCarousel__ctrl:hover {
    opacity: .6;
  }

  .fs-c-productListCarousel__ctrl.slick-disabled:hover {
    opacity: 0;
  }

}


/* お気に入りリストパーツ
---------------------------------------- */

.fs-c-productListItem__imageContainer {
  margin: 0;
}

.fs-c-productListItem__image {
  margin: 0;
}

.fs-c-productListItem__image a {
  display: block;
}

.fs-c-productListItem__image img {
  width: 100%;
  height: auto;
}

.fs-c-productListItem__productName {
  font-size: 1.4rem;
  line-height: 1.714;
  margin: 10px 0 0 0;
}

.fs-c-productName__copy {
  display: none;
}

.fs-c-productPrice__main__label {
  display: none;
}

.fs-c-productPrice {
  display: flex;
  font-size: 1.4rem;
  line-height: 1.714;
}

.fs-c-productPrice__main__price {
  display: flex;
}

.fs-c-productPrice__addon__label::before {
  content: '（';
}

.fs-c-productPrice__addon__label::after {
  content: '）';
}

.fs-c-productListItem__control {
  margin: 10px 0 0;
  display: flex;
  line-height: 1;
}

.fs-c-button--addToCart--list {
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 15px;
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid #333;
  background: url(../img/common/ico_cart.png) no-repeat 0 0 / contain;
  margin: 0 5px 0 0;
}

.fs-c-button--addToWishList--icon,
.fs-c-button--removeFromWishList--icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 15px;
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid #333;
  background: #672f89 url(../img/common/ico_favorite_on.png) no-repeat 0 0 / contain;
  margin: 0 5px 0 0;
}

.fs-c-button--addToWishList--icon {
  background: transparent url(../img/common/ico_favorite.png) no-repeat 0 0 / contain;
}

.fs-c-button--addToCart--list .fs-c-button__label,
.fs-c-button--addToWishList--icon .fs-c-button__label,
.fs-c-button--removeFromWishList--icon .fs-c-button__label {
  display: none;
}


@media (min-width: 769px){

  .fs-c-button--addToCart--list,
  .fs-c-button--addToWishList--icon,
  .fs-c-button--removeFromWishList--icon {
    margin-right: 10px;
    width: 40px;
    height: 40px;
    border-radius: 20px;
  }

}


/* お気に入りリスト下のボタン
---------------------------------------- */

.fs-c-wishlistProduct__footer {
  text-align: right;
  margin: 26px 0 0 0;
}


.fs-c-wishlistProduct__viewAllProducts {
  display: inline-block;
  border: solid 1px #c8c8c8;
  font-size: 1.4rem;
  padding: 5px 62px 5px 12px;
  position: relative;
}

.fs-c-wishlistProduct__viewAllProducts::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 10px;
  height: 10px;
  border-top: solid 1px #c8c8c8;
  border-right: solid 1px #c8c8c8;
  transform: translate(-12px,-50%) rotate(45deg);
}

@media (min-width: 769px){
  .fs-c-wishlistProduct__footer {
    margin: 40px 0 0 0;
  }
}



/* マイページトップボタン（システムパーツ）
---------------------------------------- */

.fs-c-buttonContainer--myPageTop {
  display: none;
}

/*
.fs-c-buttonContainer--myPageTop {
  margin: 26px 0 0 0;
}

.fs-c-button--myPageTop {
  text-decoration: underline;
}

@media (min-width: 769px){
  .fs-c-buttonContainer--myPageTop {
    margin: 40px 0 0 0;
  }
}
*/



/* ------------------------------------------------------------

登録変更 / 退会

------------------------------------------------------------ */

.fs-c-inputInformation__field--display {
  margin: 26px 0 0 0;
  border-top: solid 1px #c8c8c8;
}

.fs-c-inputInformation__field--display .fs-c-inputTable {
  border: 0;
  margin: 16px 0 0 0;
}


.fs-c-inputInformation__field--display .fs-c-inputTable__headerCell {
  display: table-cell;
  border: 0;
  padding: 10px 10px 0 0;
}

.fs-c-inputInformation__field--display .fs-c-inputTable__dataCell {
  display: table-cell;
  border: 0;
  padding: 10px 0 0 0;
}

.fs-c-buttonContainer--pair {
  margin: 26px 0 0 0;
  text-align: center;
  display: flex;
  justify-content: center;
}

.fs-c-buttonContainer--pair .fs-c-button--primary {
  display: inline-block;
  margin: 0;
  order: 2;
}

.fs-c-buttonContainer--pair .fs-c-button--cancel {
  width: 100%;
  max-width: 200px;
  background: #333;
  color: #fff;
  margin: 0 10px 0 0;
  border: none;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 2;
  text-align: center;
  padding: 15px 0;
}

@media (min-width: 769px) {
  .fs-c-inputInformation__field--display {
    margin: 40px 0 0 0;
  }

  .fs-c-inputInformation__field--display .fs-c-inputTable {
    margin: 24px 0 0 0;
  }

  .fs-c-buttonContainer--pair {
    margin: 40px 0 0 0;
  }

  .fs-c-buttonContainer--pair .fs-c-button--cancel {
    font-size: 1.8rem;
    padding: 12px 0;
    margin: 0 20px 0 0;
  }
}




/* ------------------------------------------------------------

お届け先リスト

------------------------------------------------------------ */

.fs-c-addressBookList__addButton {
  text-align: left;
}

.fs-c-button--addToAddressbook {
  display: inline-block;
  background: #672f89;
  color: #fff;
  padding: 6px 20px;
  font-size: 100%;
  font-weight: normal;
}

.fs-c-addressBookList__count {
  margin: 10px 0 0 0;
}

.fs-c-addressBookList__list {
  width: 100%;
}

.fs-c-addressBookList__list > tbody > tr {
  display: flex;
  flex-wrap: wrap;
  background: #f4f4f4;
  padding: 20px 10px;
  margin: 10px 0 0 0;
}

.fs-c-addressBookList__list > tbody > tr + tr {
  margin: 10px 0 0 0;
}

.fs-c-addressBookList__list > tbody > tr td {
  display: block;
  width: 100%;
}

.fs-c-buttonContainer--deleteChange {
  display: flex;
  justify-content: center;
  margin: 10px 0 0 0;
}

.fs-c-button--changeInfomation {
  display: block;
  background: #672f89;
  color: #fff;
  width: 75px;
  text-align: center;
  padding: 6px 0;
  order: 2;
  margin: 0 0 0 10px;
  font-weight: normal;
  font-size: 100%;
}

.fs-c-button--delete {
  display: block;
  background: #333;
  color: #fff;
  width: 75px;
  border: 0;
  text-align: center;
  padding: 6px 0;
  order: 1;
}

.fs-c-addressbookRemoveField {
  display: block;
  margin: 10px 0 0 0;
  border: solid 1px #c8c8c8;
  padding: 16px;
}

@media (min-width: 769px) {
  .fs-c-addressBookList__addButton {
    float: left;
    margin-right: 20px;
  }

  .fs-c-addressBookList__count {
    margin: 0;
    padding: 40px 0 0 20px;
    line-height: 44px;
  }

  .fs-c-addressBookList__list > tbody > tr {
    padding: 20px 200px 20px 20px;
    margin: 20px 0 0 0;
    position: relative;
  }

  .fs-c-addressBookList__list > tbody > tr + tr {
    margin: 20px 0 0 0;
  }

  .fs-c-buttonContainer--deleteChange {
    position: absolute;
    top: 20px;
    right: 20px;
    margin: 0;
  }

}



/* ------------------------------------------------------------

注文履歴

------------------------------------------------------------ */

/* fs-c-history
---------------------------------------- */

.fs-c-history {
  margin: 35px 0 0 0;
}

.fs-c-orderHistoryItem {
  margin: 10px 0;
  border: solid 1px #c8c8c8;
}

.fs-c-history__listContainer .fs-c-listControl {
  font-size: 1.2rem;
}

.fs-c-orderHistoryItem__header {
  background: #f4f4f4;
  padding: 10px;
}

.fs-c-orderHistoryItem__orderInfo {
  display: flex;
}

.fs-c-orderHistoryItem__orderInfo__info {
  margin: 0;
  width: 100%;
}

.fs-c-orderHistoryItem__orderInfo__info dt,
.fs-c-orderHistoryItem__orderInfo__info dd {
  margin: 0;
  padding: 0;
  text-align: left;
  font-size: 1.2rem;
  white-space: nowrap;
  text-align: center;
}

.fs-c-orderHistoryItem__orderInfo__info .fs-c-price {
  justify-content: center;
}

.fs-c-orderHistoryItem__header__button {
  margin: 10px 0 0 0;
  text-align: center;
}

.fs-c-button--viewOrderHistoryDetail {
  display: inline-block;
  background: #333;
  color: #fff;
  font-size: 1.2rem;
  padding: 6px 12px;
}

.fs-c-orderHistoryItem__body {
  padding: 0 10px;
}

.fs-c-orderHistoryItem__product {
  border-top: solid 1px #c8c8c8;
  padding: 20px 0;
  font-size: 1.2rem;
}

.fs-c-orderHistoryItem__product::after {
  content: '';
  display: block;
  clear: both;
}

.fs-c-orderHistoryItem__product:first-child {
  border-top: 0;
}

.fs-c-orderHistoryItem__productImage {
  width: 80px;
  float: left;
}

.fs-c-orderHistoryItem__productName {
  margin: 0 0 0 90px;
}

.fs-c-orderHistoryItem__unitPrice {
  margin: 0 0 0 90px;
}

.fs-c-orderHistoryItem__productQuantity {
  margin: 0 0 0 90px;
}

.fs-c-orderHistoryItem__deliveryInfo {
  display: none;
}

.fs-c-buttonContainer--addReview--detail {
  display: none;
}

@media (min-width: 769px){
  .fs-c-history {
    margin: 40px 0 0 0;
    display: flex;
    justify-content: space-between;
    align-items: start;
  }

  .fs-c-orderHistoryItem__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
  }

  .fs-c-orderHistoryItem__orderInfo {
    flex: 1;
  }

  .fs-c-orderHistoryItem__header__button {
    margin: 0 0 0 20px;
  }

  .fs-c-orderHistoryItem__body {
    padding: 0 20px;
  }

  .fs-c-orderHistoryItem__product {
    font-size: 1.4rem;
  }
}

/* fs-c-history__listContainer
---------------------------------------- */

.fs-c-history__listContainer {
  margin: 26px 0 0 0;
}

@media (min-width: 769px){

  .fs-c-history__listContainer {
    width: 100%;
    flex: 1;
    margin: 0;
  }

}


/* fs-c-history__info
---------------------------------------- */

.fs-c-history__info {
  background: #f4f4f4;
  padding: 20px 10px;
  margin: 20px 0 0 0;
}

.fs-c-history__infoSummary {
  margin: 10px 0 0 0;
}

.fs-c-history__total dt,
.fs-c-history__total dd {
  border-top: solid 1px #c8c8c8;
  padding-top: 10px;
  margin-top: 10px;
}

.fs-c-history__total dd {
  text-align: right;
}

.fs-c-history__total dt::after {
  content: none;
}

.fs-c-pairList {
  grid-gap: 0;
}

@media (min-width: 769px){

  .fs-c-history__info {
    width: 240px;
    padding: 20px;
    margin: 0 0 0 40px;
    order: 2;
  }
}



/* ------------------------------------------------------------

注文履歴詳細

------------------------------------------------------------ */

.fs-c-orderDetailList {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1fr;
  grid-template-columns: auto 1fr;
  grid-auto-rows: auto;
  grid-auto-flow: row;
  grid-gap: 0;
  border: 1px solid #c8c8c8;
}

.fs-c-orderDetailList > *:nth-child(1) {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 1;
  grid-row: 1;
}

.fs-c-orderDetailList > *:nth-child(2) {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 1;
  grid-row: 1;
}

.fs-c-orderDetailList > *:nth-child(3) {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 2;
  grid-row: 2;
}

.fs-c-orderDetailList > *:nth-child(4) {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 2;
  grid-row: 2;
}

.fs-c-orderDetailList dt,
.fs-c-orderDetailList dd {
  margin: 0;
  padding: 8px;
  line-height: 1;
}

.fs-c-orderDetailList__date, .fs-c-orderDetailList__date + dd {
  background: #333;
  color: #ffffff;
}

.fs-c-orderPerAddressee__heading {
  background: #f4f4f4;
  padding: 4px 12px;
}

.fs-c-orderPerAddressee__addressee {
  display: flex;
  flex-wrap: wrap;
  margin: 10px 0;
  font-size: 1.2rem;
}

.fs-c-orderPerAddressee__addressee dt {
  width: 8em;
  margin: 0;
  padding: 0;
}

.fs-c-orderPerAddressee__addressee dd {
  width: calc(100% - 8em);
  margin: 0;
  padding: 0;
}

.fs-c-orderDetailInfo__cartTable {
  margin: 15px 0 0 0;
}

.fs-c-orderPerAddressee__orderDeliveryInfo,
.fs-c-orderDetailInfo__orderTotal {
  background: #f4f4f4;
  padding: 20px;
  margin: 15px 0 0 0;
}

.fs-c-orderPerAddressee__orderDeliveryInfo .fs-c-deliveryInfoList {
  border: 0;
  border-bottom: solid 1px #c8c8c8;
  padding: 0 0 10px 0;
}

.fs-c-orderPerAddressee__orderDeliveryInfo .fs-c-deliveryInfoList dt {
  border: 0;
  padding: 0;
}

.fs-c-orderPerAddressee__orderDeliveryInfo .fs-c-deliveryInfoList dd {
  border: 0;
  padding: 0;
  text-align: right;
}

.fs-c-orderDetailInfo__orderTotal .fs-c-orderPaymentTable th,
.fs-c-orderDetailInfo__orderTotal .fs-c-orderPaymentTable td {
  border: 0;
  padding: 10px 0;
  text-align: left;
  font-weight: normal;
  border-bottom: solid 1px #c8c8c8;
}

.fs-c-orderDetailInfo__orderTotal .fs-c-orderPaymentTable td {
  text-align: right;
}

.fs-c-orderDetail__orderInfo {
  margin: 40px 0 0 0;
}

.fs-c-button--back {
  display: inline-block;
  margin: 0 auto;
  border: 0;
  background: #f2f2f2;
  font-size: 1.2rem;
  text-align: center;
  padding: 12px 30px;
}



@media (min-width:769px){
  .fs-c-orderDetail .fs-c-orderPerAddressee {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 280px;
    -ms-grid-rows: auto auto auto;
    grid-template: auto auto auto/1fr 280px;
    align-items: start;
  }
  .fs-c-orderDetail .fs-c-orderPerAddressee__heading {
    -ms-grid-row: 1;
    grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / span 2;
  }
  .fs-c-orderDetail .fs-c-orderPerAddressee__addressee {
    -ms-grid-row: 2;
    grid-row: 2;
    -ms-grid-column: 1;
    grid-column: 1;
    margin: 10px 0;
    font-size: 1.4rem;
  }
  .fs-c-orderDetail .fs-c-orderPerAddressee__deliveryInfoList {
    -ms-grid-row: 2;
    grid-row: 2;
    -ms-grid-column: 2;
    grid-column: 2;
  }
  .fs-c-orderDetail .fs-c-orderPerAddressee__cartTable {
    -ms-grid-row: 3;
    grid-row: 3;
    -ms-grid-column: 1;
    grid-column: 1;
  }
  .fs-c-orderDetail .fs-c-orderPerAddressee__orderDeliveryInfo {
    -ms-grid-row: 3;
    grid-row: 3;
    -ms-grid-column: 2;
    grid-column: 2;
    margin: 0 0 0 40px;
  }
  .fs-c-orderDetail .fs-c-orderDetailInfo {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 280px;
    -ms-grid-rows: auto auto auto;
    grid-template: auto auto auto/1fr 280px;
    align-items: start;
  }
  .fs-c-orderDetail .fs-c-orderDetailInfo__heading {
    -ms-grid-row: 1;
    grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / span 2;
  }
  .fs-c-orderDetail .fs-c-orderDetailInfo__cartTable {
    -ms-grid-row: 2;
    grid-row: 2;
    -ms-grid-column: 1;
    grid-column: 1;
  }
  .fs-c-orderDetail .fs-c-orderDetailInfo__orderTotal {
    -ms-grid-row: 2;
    grid-row: 2;
    -ms-grid-column: 2;
    grid-column: 2;
    margin-left: 40px;
  }
}


/* ------------------------------------------------------------

ポイント履歴

------------------------------------------------------------ */

.fs-c-pointSummary {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1fr auto;
  grid-template-columns: auto 1fr auto;
  padding: 10px;
  margin: 0;
  align-items: center;
}

.fs-c-pointSummary > dd {
  margin-left: 0;
  text-align: right;
}

.fs-c-pointSummary__label--availablePoint {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 1;
  grid-row: 1;
}

.fs-c-pointSummary__value--availablePoint {
  -ms-grid-column: 2;
  -ms-grid-column-span: 2;
  grid-column: 2 / 4;
  -ms-grid-row: 1;
  grid-row: 1;
}

.fs-c-pointSummary__value--availablePoint .fs-c-pointSummary__number {
  font-size: 2.4rem;
  line-height: 1;
}

.fs-c-pointSummary__value--availablePoint::after,
.fs-c-pointSummary__value--waitingPoint::after,
.fs-c-pointSummary__value--purchasePointTotal::after {
  content: 'pt';
}

.fs-c-pointSummary__label--limitedPoint {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1 / 3;
  -ms-grid-row: 2;
  grid-row: 2;
  text-align: right;
  font-size: 1.2rem;
  padding-bottom: 10px;
}

.fs-c-pointSummary__label--limitedPoint::before {
  content: "（";
}

.fs-c-pointSummary__label--limitedPoint::after {
  content: "：";
}

.fs-c-pointSummary__value--limitedPoint {
  -ms-grid-column: 3;
  grid-column: 3;
  -ms-grid-row: 2;
  grid-row: 2;
  font-size: 1.2rem;
  padding-bottom: 10px;
}

.fs-c-pointSummary__value--limitedPoint::after {
  content: "pt）";
}

.fs-c-pointSummary__label--purchasePointExpiration, .fs-c-pointSummary__label--waitingPoint, .fs-c-pointSummary__label--purchasePointTotal {
  -ms-grid-column: 1;
  grid-column: 1;
}

.fs-c-pointSummary__value--purchasePointExpiration, .fs-c-pointSummary__value--waitingPoint, .fs-c-pointSummary__value--purchasePointTotal {
  -ms-grid-column: 2;
  -ms-grid-column-span: 2;
  grid-column: 2 / 4;
}

.fs-c-pointSummary__label--purchasePointExpiration,
.fs-c-pointSummary__value--purchasePointExpiration {
  border-top: solid 1px #c8c8c8;
  padding-top: 10px;
}

.fs-c-pointSummary [class$="--purchasePointExpiration"] {
  -ms-grid-row: 3;
  grid-row: 3;
}

.fs-c-pointSummary [class$="--waitingPoint"] {
  -ms-grid-row: 4;
  grid-row: 4;
}

.fs-c-pointSummary [class$="--purchasePointTotal"] {
  -ms-grid-row: 5;
  grid-row: 5;
}

.fs-body-my-points .fs-c-listControl {
  margin: 20px 0;
}

.fs-body-my-points .fs-c-pointListTable tr {
  margin: 0;
  padding: 10px;
  background: #f4f4f4;
}

.fs-body-my-points .fs-c-pointListTable tr:nth-child(even) {
  background: #fff;
  border-bottom: solid 1px #f4f4f4;
}

.fs-body-my-points .fs-c-pointListTable thead {
  display: none;
}

.fs-body-my-points .fs-c-pointListTable td[aria-label="獲得・利用ポイント"] .fs-c-pointListTable__data::after {
  content: 'pt';
}




@media (min-width: 769px){
  .fs-body-my-points .fs-c-history {
    display: block;
  }

  .fs-body-my-points .fs-c-history__info {
    width: auto;
    margin: 0;
  }

  .fs-body-my-points .fs-c-history__listContainer {
    width: auto;
    margin: 40px 0 0 0;
  }

  .fs-body-my-points .fs-c-pointListTable tr,
  .fs-body-my-points .fs-c-pointListTable tr:nth-child(even) {
    padding: 0;
  }

  .fs-body-my-points .fs-c-pointListTable td {
    padding: 10px 0;
    line-height: 1.5;
  }

  .fs-body-my-points .fs-c-pointListTable td[aria-label="日付"] {
    text-align: left;
    padding-left: 15px;
  }
}




/* ------------------------------------------------------------

クレジットカード一覧

------------------------------------------------------------ */

.fs-c-creditCardListItem {
  border: solid 1px #c8c8c8;
  padding: 20px;
  margin: 16px 0 0 0;
}

.fs-c-creditCardListItem.is-active {
  border: solid 1px #c8c8c8;
  background: #f4f4f4;
}

.fs-c-creditCardListItem__button button {
  margin: 0 auto;
}

.fs-c-creditCardList__message {
  background: #f4f4f4;
  padding: 20px;
  margin: 16px 0 0 0;
  text-align: center;
}

@media (min-width: 769px){
  .fs-c-creditCardListItem {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
  }

  .fs-c-creditCardListItem__status {
    width: 100%;
  }

  .fs-c-creditCardListItem__button {
    margin: 0;
  }

  .fs-c-creditCardList__message {
    margin: 24px 0 0 0;
  }
}



/* ------------------------------------------------------------

お問い合わせ

------------------------------------------------------------ */

.fs_input_contact {
  max-width: 280px;
}

.fs-c-button--contact-confirmBtn {
  position: relative;
}

.fs-c-button--contact-confirmBtn::after {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  transform: rotate(45deg) translate(0,-50%);
  position: absolute;
  right: 20px;
  top: 50%;
}

textarea {
  font-size: 1.6rem;
  line-height: 1;
  padding: 8px 10px;
  border-radius: 5px;
  min-height: none;
}

textarea.is-error {
  border-color: #da4453;
  background-color: #fceef0;
}

.fs-c-inputTable-contactConfirm {
  border-top: 0;
}

.fs-c-inputTable-contactConfirm tr:first-child th,
.fs-c-inputTable-contactConfirm tr:first-child td {
  border-top: 0;
}



@media (min-width: 769px){

  .fs-c-button--contact-confirmBtn::after {
    width: 11px;
    height: 11px;
    right: 20px;
  }

}



/* ------------------------------------------------------------

商品一覧 システムパーツ

------------------------------------------------------------ */

/* 商品一覧は、マイページの「お気に入り表示」のスタイルを上書きする */

.fs-c-productList__controller {
  display: none;
}

.fs-c-productList__list {
  padding: 0;
  margin: -5px -5px 0;
  display: flex;
  flex-wrap: wrap;
}

.fs-c-productList__list__item {
  width: 50%;
  flex-basis: auto;
  max-width: none;
  min-width: 0;
  margin: 30px 0 0 0;
  padding: 0 5px;
  position: relative;
}

.fs-c-productListItem__viewMoreImageButton {
  display: none;
}

.itemList_btns > div.itemList_btns_listDetail {
  margin-left: 0;
}

@media (min-width: 769px) {

  .fs-c-productList__list {
    margin: -10px 0 0;
  }

  .fs-c-productList__list__item {
    width: 31.8%;
    margin: 45px 2.3% 0 0;
    padding: 0;
  }

  .fs-c-productList__list__item:nth-child(3n) {
    margin-right: 0;
  }
}




/* ------------------------------------------------------------

商品詳細 システムパーツ上書き用

------------------------------------------------------------ */

/* itemBox
---------------------------------------- */

.fs-c-productNameHeading {
  font-size: 1.8rem;
  line-height: 1.5;
  margin: 15px 0 0 0;
}

.fs-c-productNameHeading .fs-c-productNameHeading__copy {
  display: none;
}

.itemBox_table .fs-c-productPrice {
  font-size: 1.2rem;
  line-height: 2;
  align-items: baseline;
}

.itemBox_table .fs-c-productPrice__main__price {
  font-size: 1.5em;
  line-height: 1.4;
}

.itemBox_table .fs-c-productPointDisplay__label,
.itemBox_table .fs-c-productPointDisplay__unit {
  display: none;
}

.itemBox_table .fs-c-productPointDisplay__quantity::after {
  content: 'pt';
}

@media (min-width: 769px) {

  .fs-c-productNameHeading {
    font-size: 2.4rem;
    margin: 0;
  }
}



/* itemBox_buy
---------------------------------------- */

.itemBox_buy {
  padding: 0 0 63px;
  position: relative;
}

.fs-c-productQuantityAndWishlist__quantity {
  display: flex;
  width: 100%;
  margin: 30px 0 0 0;
  align-items: center;
  max-width: none;
}

.fs-c-productQuantityAndWishlist__quantity::before {
  content: '数量';
  display: block;
  width: 27.5%;
  font-size: 1.2rem;
}

.fs-c-productQuantityAndWishlist__quantity .fs-c-quantity__select,
.fs-c-productQuantityAndWishlist__quantity .fs-c-quantity__number {
  position: relative;
  border: solid 1px #c8c8c8;
  border-radius: 0;
  background: #fff;
  font-size: 1.6rem;
  line-height: 16px;
  width: 60px;
  padding: 7px 5px;
  -webkit-appearance: none;
  appearance: none;
  box-shadow: none;
}

.itemBox_buy .fs-c-productActionButton {
  margin: 20px 0 0 0;
}

.itemBox_buy .fs-c-button--addToCart--detail {
  display: block;
  width: 100%;
  border: none;
  background: #672f89;
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1;
  padding: 20px 0;
}
@media (max-width: 600px) {
	.itemBox_buy .fs-c-button--addToCart--detail {
		position: fixed;
		bottom: 0;
		left: 0;
		z-index: 1;
	}
}
.itemBox_buy .fs-c-button__image {
  display: none;
}

.itemBox_buy .fs-c-button--addToCart--detail::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 18px;
  background: url(../img/item/ico_buy.png) no-repeat 0 0 / contain;
  margin: 0 10px 0 0;
}

.itemBox_buy .fs-c-button--addToCart--detail::after {
  content: 'カートに入れる';
}

.fs-c-productQuantityAndWishlist__wishlist {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.fs-c-button--addToWishList--detail,
.fs-c-button--removeFromWishList--detail {
  display: block;
  width: 100%;
  border: solid 1px #333;
  background: none;
  color: #333;
  font-size: 1.4rem;
  line-height: 14px;
  padding: 13px 0;
  border-radius: 20px;
}

.fs-c-button--addToWishList--detail::before,
.fs-c-button--removeFromWishList--detail::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 16px;
  line-height: 14px;
  background: url(../img/item/ico_favorite.png) no-repeat 0 0 / contain;
  margin: -2px 5px -1px 0;
  vertical-align: middle;
}

.fs-c-button--removeFromWishList--detail::before {
  background: url(../img/item/ico_favorite_on.png) no-repeat 0 0 / contain;
}

@media (min-width: 769px) {

  .itemBox_buy {
    position: absolute;
  }

  .fs-c-productQuantityAndWishlist__quantity::before {
    font-size: 1.4rem;
  }

}