@charset "UTF-8";
/* --------------------------------
	base
-------------------------------- */
body {
  font-family: 'Noto Serif JP', serif;
  color: #333; }

a {
  color: #333; }

a:hover, a:focus, a:active {
  color: #333; }

/* animation */
.fadeIn {
  opacity: 0;
  transition: opacity 1s ease; }
  .fadeIn.animated {
    opacity: 1; }

.fadeInUp {
  display: block;
  letter-spacing: 0.2em;
  opacity: 0;
  transition: all 1.5s cubic-bezier(0.25, 0.64, 0.29, 0.98);
  transform: translateY(20px);
  filter: blur(10px); }
  .fadeInUp.animated {
    letter-spacing: 0.2em;
    opacity: 1;
    filter: blur(0);
    transform: translateY(0); }

.fadeInLeft {
  display: block;
  letter-spacing: 0.2em;
  opacity: 0;
  transition: all 1.5s cubic-bezier(0.25, 0.64, 0.29, 0.98);
  transform: translateX(-20px);
  filter: blur(10px); }
  .fadeInLeft.animated {
    letter-spacing: 0.2em;
    opacity: 1;
    filter: blur(0);
    transform: translateX(0); }

.fadeInRight {
  display: block;
  letter-spacing: 0.2em;
  opacity: 0;
  transition: all 1.5s cubic-bezier(0.25, 0.64, 0.29, 0.98);
  transform: translateX(20px);
  filter: blur(10px); }
  .fadeInRight.animated {
    letter-spacing: 0.2em;
    opacity: 1;
    filter: blur(0);
    transform: translateX(0); }

@-webkit-keyframes dropDown {
  0% {
    transform: scaleY(0);
    transform-origin: center top; }
  50% {
    transform: scaleY(1);
    transform-origin: center top; }
  51% {
    transform: scaleY(1);
    transform-origin: center bottom; }
  100% {
    transform: scaleY(0);
    transform-origin: center bottom; } }

@keyframes dropDown {
  0% {
    transform: scaleY(0);
    transform-origin: center top; }
  50% {
    transform: scaleY(1);
    transform-origin: center top; }
  51% {
    transform: scaleY(1);
    transform-origin: center bottom; }
  100% {
    transform: scaleY(0);
    transform-origin: center bottom; } }

.animated.delay-02s {
  transition-delay: 0.2s; }

.animated.delay-04s {
  transition-delay: 0.4s; }

.animated.delay-06s {
  transition-delay: 0.6s; }

.animated.delay-08s {
  transition-delay: 0.8s; }

.animated.delay-1s {
  transition-delay: 1s; }

/* --------------------------------
	header
-------------------------------- */
#header {
  width: 100%;
  padding-top: 0;
  background: rgba(255, 255, 255, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50; }
  #header .header-inner {
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    -webkit-align-items: center;
    align-items: center; }

#header_right {
  display: flex; }

.header_logo_area {
  min-height: inherit;
  margin: 0 auto 0 0; }

.header_logo {
  height: 20px;
  line-height: 1; }
  .header_logo a {
    height: 100%;
    display: block;
    transition: all 0.5s; }
    .header_logo a:hover {
      opacity: 0.6; }
  .header_logo img {
    max-width: inherit;
    height: 100%; }

/* member link */
.member_link {
  margin: 0;
  display: flex; }
  .member_link a {
    width: 60px;
    height: 60px;
    padding: 0 20px;
    border: none;
    line-height: 60px; }

/* header cart */
#cart_area {
  position: static; }
  #cart_area .cart-trigger {
    overflow: visible; }
  #cart_area .inner:before {
    content: '';
    width: 14px;
    height: 12px;
    background: url("../img/common/arrow05-gray.svg") no-repeat 0 0;
    background-size: 100%;
    position: absolute;
    top: -12px;
    right: 97px;
    z-index: 5; }

.cart {
  top: 60px; }

p.cart-trigger .cb {
  font-size: 20px; }

#cart_area p.errormsg {
  min-width: inherit;
  float: none; }

.mypage #cart_area .message {
  margin-bottom: 0;
  border-bottom: none; }

#header #cart_area p.cart-trigger {
  min-width: inherit;
  height: inherit;
  border: none;
  float: none;
  position: relative;
  right: 0; }
  #header #cart_area p.cart-trigger a {
    width: 60px;
    height: 60px;
    line-height: 60px;
    float: none; }
  #header #cart_area p.cart-trigger .badge {
    background: #D6868B;
    position: absolute;
    top: 10px;
    left: auto;
    right: 5px; }

p.cart-trigger.cart-is-visible .cb-shopping-cart,
p.cart-trigger.cart-is-visible span.badge {
  opacity: 1; }

/* gnavi btn */
.nav-trigger {
  width: 60px;
  height: 60px;
  z-index: 55; }
  .nav-trigger span {
    right: 20px; }
  .nav-trigger span,
  .nav-trigger span::before,
  .nav-trigger span::after {
    width: 20px;
    height: 2px;
    background: #666; }
  .nav-trigger.is-open span {
    background: rgba(46, 50, 51, 0); }
  .nav-trigger.is-open span::before,
  .nav-trigger.is-open span::after {
    background: #666; }
  .nav-trigger.is-open span::before {
    transform: translateX(3px) translateY(-1px) rotate(45deg); }
  .nav-trigger.is-open span::after {
    transform: translateX(3px) translateY(1px) rotate(-45deg); }

.btn_menu {
  margin: 0; }

/* --------------------------------
	gnavi
-------------------------------- */
.l-gnavi {
  width: 100%;
  height: 100vh;
  background: #fff;
  display: none;
  text-align: left;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  overflow-y: scroll; }
  .l-gnavi .inner {
    margin: 0 auto;
    position: relative; }
  .l-gnavi .btn_menu {
    position: absolute;
    top: 0;
    right: 16px; }

.gnavi-box {
  max-width: 600px;
  margin: 0 auto;
  padding: 100px 0;
  display: flex; }
  .gnavi-box__left, .gnavi-box__right {
    width: 50%; }

.gnavi-list__item {
  font-size: 3rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: normal; }
  .gnavi-list__item + .gnavi-list__item {
    margin: 50px 0 0; }

.gnavi-list__link {
  margin: 0 0 10px;
  display: block; }
  .gnavi-list__link.is-disable {
    opacity: 0.4; }

.gnavi-sublist__item {
  margin: 15px 0;
  font-size: 1.8rem; }

.gnavi-sublist__link {
  margin: 10px;
  padding: 0 0 0 15px;
  display: block;
  background: url("../img/common/arrow01-gray.svg") no-repeat left center;
  background-size: 7px 12px; }
  .gnavi-sublist__link.is-disable {
    opacity: 0.4; }

.gnavi-sublist__jp {
  margin: 0 0 0 10px;
  display: inline-block;
  font-size: 1.2rem;
  font-family: 'Noto Serif JP', serif; }

.gnavi-sublist--jp .gnavi-sublist__item {
  margin: 15px 0 20px;
  font-size: 1.5rem;
  font-family: 'Noto Serif JP', serif; }

/* --------------------------------
	contents
-------------------------------- */
#contents {
  width: 100%;
  padding-top: 80px;
  overflow-x: hidden; }
  #contents::after {
    content: '';
    width: 100%;
    height: 60px;
    background: #EEE;
    position: absolute;
    top: 60px;
    left: 0;
    z-index: -1; }

.front_page #contents {
  padding-top: 60px; }
  .front_page #contents::after {
    display: none; }
  .front_page #contents .row {
    padding-bottom: 0; }
    .front_page #contents .row > div {
      padding-bottom: 0; }

/* main */
#main {
  padding: 0 0 100px; }

.front_page #main {
  padding: 0; }

/* --------------------------------
	common
-------------------------------- */
/* page layput */
.page-heading {
  margin: 0;
  padding: 0;
  border: none;
  display: flex;
  justify-content: space-between; }
  .page-heading__left {
    width: 50%; }
  .page-heading__right {
    width: 50%;
    font-size: 1.4rem; }
  .page-heading__title {
    margin: 0 0 30px;
    padding: 20px 30px;
    display: inline-block;
    background: linear-gradient(to bottom, white 0%, white 35%, rgba(255, 255, 255, 0) 100%);
    font-size: 3.6rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: normal; }
    .page-heading__title span {
      display: block;
      font-size: 1.4rem;
      font-family: 'Noto Serif JP', serif; }

.page-sub-title {
  margin: 0 0 30px;
  padding: 0 0 10px;
  font-size: 2.4rem;
  border-bottom: 1px solid #CCCCCC; }
  .page-sub-title--small {
    margin: 0 0 20px;
    font-size: 1.8rem; }

.l-section {
  padding: 50px 0; }
  .l-section--nobg {
    margin: -50px 0 0; }

.section-title {
  margin: 0 0 30px;
  padding: 10px 0;
  border-bottom: 1px solid #ccc;
  font-size: 3rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: normal; }
  .section-title__jp {
    padding: 0 0 0 10px;
    font-size: 1.4rem;
    font-family: 'Noto Serif JP', serif; }

.section-subtitle {
  margin: 0 0 20px;
  padding: 10px 0 10px 50px;
  font-size: 2.4rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: normal;
  position: relative; }
  .section-subtitle:before {
    content: '';
    width: 40px;
    height: 1px;
    background: #ccc;
    position: absolute;
    top: 50%;
    left: 0; }
  .section-subtitle__jp {
    padding: 0 0 0 10px;
    font-size: 1.2rem;
    font-family: 'Noto Serif JP', serif; }

.section-box__inner {
  padding: 0 20px; }

.section-box + .section-box {
  margin: 100px 0 0; }

.section-thumb {
  margin: 50px 0;
  text-align: center; }
  .section-thumb__inner {
    margin: 0 auto;
    display: inline-block; }
  .section-thumb__caption {
    text-align: left;
    font-size: 1.4rem; }

.section-text {
  line-height: 1.8; }
  .section-text__label {
    display: block;
    font-weight: 600; }

/* complete message */
.complete_message {
  line-height: 1.8; }

/* table */
.dl_table {
  border-top: 1px solid #ccc; }
  .dl_table dl {
    border-bottom: 1px solid #ccc; }
  .dl_table dt,
  .dl_table dd {
    line-height: 1.8;
    border-bottom: 1px solid #ccc; }

.registration_page .dl_table {
  margin: 0; }
  .registration_page .dl_table + .dl_table {
    border-top: none; }

div.table ol li {
  background: #eee; }

/* required */
span.required {
  padding: 0 5px 2px;
  background: #D6868B;
  color: #fff;
  line-height: 1; }

/* btn */
.btn-close {
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  background: #333;
  border: 0 none;
  box-shadow: none;
  text-shadow: none;
  line-height: 40px;
  color: #fff;
  vertical-align: middle;
  cursor: pointer;
  position: absolute;
  top: -10px;
  right: -10px; }

.btn-primary {
  margin: 20px 0 0;
  padding: 20px 16px 16px;
  background: #333;
  border-color: #333;
  color: #FFF;
  position: relative;
  transition: all 0.5s; }
  .btn-primary:before {
    content: '';
    width: 1px;
    height: 20px;
    background: #333;
    position: absolute;
    top: -20px;
    left: 50%;
    z-index: 1;
    transform: translate(-50%, 0);
    transition: all 0.5s cubic-bezier(0.25, 0.64, 0.29, 0.98); }
  .btn-primary:after {
    content: '';
    width: 1px;
    height: 10px;
    background: #fff;
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 1;
    transform: translate(-50%, 0);
    transition: all 0.5s; }
  .btn-primary:hover {
    background: #fff;
    border-color: #333;
    color: #333; }
    .btn-primary:hover:after {
      background: #333; }
    .btn-primary:hover:before {
      height: 30px;
      top: -30px; }

.btn-info {
  margin: 20px 0 0;
  padding: 20px 16px 16px;
  background: #fff;
  border-color: #666;
  color: #333;
  position: relative;
  transition: all 0.5s; }
  .btn-info:before {
    content: '';
    width: 1px;
    height: 20px;
    background: #666;
    position: absolute;
    top: -20px;
    left: 50%;
    z-index: 1;
    transform: translate(-50%, 0);
    transition: all 0.5s cubic-bezier(0.25, 0.64, 0.29, 0.98); }
  .btn-info:after {
    content: '';
    width: 1px;
    height: 10px;
    background: #666;
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 1;
    transform: translate(-50%, 0);
    transition: all 0.5s; }
  .btn-info:hover {
    background: #333;
    color: #fff; }
    .btn-info:hover:after {
      background: #fff; }
    .btn-info:hover:before {
      height: 30px;
      top: -30px; }

.btn-default {
  margin: 0 0 0 30px;
  padding: 10px 16px 10px 40px;
  background: #fff;
  border-color: #666;
  position: relative;
  transition: all 0.5s; }
  .btn-default:before {
    content: '';
    width: 30px;
    height: 1px;
    background: #666;
    position: absolute;
    top: 50%;
    left: -30px;
    z-index: 1;
    transform: translate(0, -50%);
    transition: all 0.5s; }
  .btn-default:after {
    content: '';
    width: 10px;
    height: 1px;
    background: #666;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 1;
    transform: translate(0, -50%);
    transition: all 0.5s; }
  .btn-default:hover {
    background: #333;
    border-color: #333;
    color: #FFF; }
    .btn-default:hover:after {
      background: #fff; }
    .btn-default:hover:before {
      width: 50px;
      left: -50px; }
  .btn-default--black {
    background: #333;
    color: #FFF; }
    .btn-default--black:after {
      background: #fff; }
    .btn-default--black:hover {
      background: #fff;
      border-color: #333;
      color: #333; }
      .btn-default--black:hover:after {
        background: #333; }
  .btn-default.btn-block {
    width: calc(100% - 30px); }
  .btn-default.disabled:before, .btn-default.disabled:after, .btn-default[disabled]:before, .btn-default[disabled]:after {
    background: #D7DADD; }

.btn-link-bg {
  background: #333;
  border: 1px solid #333;
  color: #FFF; }
  .btn-link-bg:hover {
    background: #fff;
    color: #333; }

.btn-wrapper-right {
  text-align: right; }

.btn_group > p {
  margin: 0;
  padding-top: 10px; }

/* text */
.text-primary {
  color: #D6868B; }

.text-note {
  margin: 0;
  padding: 0 0 0 1.2em;
  font-size: 1.4rem;
  line-height: 1.8;
  position: relative; }
  .text-note:before {
    content: '※';
    position: absolute;
    top: 0;
    left: 0; }

.text-marker {
  position: relative;
  transition: opacity 0.5s; }
  .text-marker:before {
    content: '';
    width: 100%;
    height: 1px;
    background: #333;
    position: absolute;
    bottom: 0;
    left: 0; }
  .text-marker:hover {
    opacity: 0.7; }

/* list */
.list-dot {
  margin: 0.5em 0 0; }
  .list-dot__item {
    margin: 0 0 0.5em;
    padding: 0 0 0 1.2em;
    position: relative;
    line-height: 1.6; }
    .list-dot__item:before {
      content: '・';
      position: absolute;
      top: 0;
      left: 0; }

.list-circle {
  margin: 0.5em 0 0; }
  .list-circle__item {
    margin: 0 0 0.5em;
    padding: 0 0 0 1.2em;
    position: relative;
    line-height: 1.6; }
    .list-circle__item:before {
      content: '◎';
      position: absolute;
      top: 0;
      left: 0; }

.list-number {
  margin: 0.5em 0 0;
  counter-reset: number; }
  .list-number__item {
    margin: 0 0 0.5em;
    padding: 0 0 0 1.2em;
    position: relative;
    line-height: 1.6; }
    .list-number__item:before {
      content: counter(number) ".";
      counter-increment: number;
      position: absolute;
      top: 0;
      left: 0; }
  .list-number--box .list-number__item {
    margin: 0 0 2em; }

/* bg */
.bg-danger {
  background: #D6868B; }

.bg-gray {
  position: relative; }
  .bg-gray:after {
    content: '';
    width: 100vw;
    height: 100%;
    background: #F5F5F5;
    position: absolute;
    top: 0;
    left: 50%;
    z-index: -1;
    transform: translate(-50%, 0); }

.bg-pink {
  margin: 30px 0 0;
  padding: 30px;
  background: #fff3f4; }

/* form */
hr {
  margin-top: 16px;
  margin-bottom: 16px;
  border-top: 1px solid #ccc; }

/* form */
.form-control {
  border: 1px solid #ccc;
  border-radius: 0;
  background: #fff;
  background-image: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none; }
  .form-control::-ms-expand {
    display: none; }

select.form-control {
  padding: 6px 30px 6px 12px;
  background: url("../img/common/arrow03-gray.svg") no-repeat center right 8px;
  background-size: 11px 6px; }

.form-group .errormsg {
  margin: 8px 0; }

/* info bar */
.info-scroll {
  padding: 0 0 180px;
  position: fixed;
  bottom: 0;
  left: 20px;
  z-index: 20;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  line-height: 1;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; }
  .info-scroll:after {
    content: '';
    width: 1px;
    height: calc(100% - 50px);
    background: #999;
    -webkit-animation-name: dropDown;
    animation-name: dropDown;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    position: absolute;
    top: 50px;
    left: 0.5em; }

/* product item */
.product_item a {
  transition: opacity 0.5s; }
  .product_item a:hover {
    opacity: 0.7; }

/* item photo */
.item_photo {
  transition: opacity 0.5s; }
  .item_photo:hover {
    opacity: 0.7; }

#item_photo_area img {
  transition: opacity 0.5s; }

.slick-dots li button.thumbnail img {
  opacity: 0.6; }

/* --------------------------------
	popup 
-------------------------------- */
.l-popup {
  padding: 40px 20px;
  background: #FFF; }

/* --------------------------------
	loading 
-------------------------------- */
.loading {
  width: 100%;
  height: 100vh;
  padding: 100px 30px;
  background: #fff;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100; }

/* --------------------------------
	concept 
-------------------------------- */
.l-concept {
  width: 100%;
  height: 100vh;
  padding: 100px 30px;
  background: #fff url("../img/common/bg-concept.jpg") center no-repeat;
  background-size: cover;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  overflow-y: scroll; }
  .l-concept .btn_menu {
    position: fixed;
    top: 0;
    right: 16px;
    z-index: 3; }

.concept-title {
  margin: 0 0 80px 1em;
  font-size: 6rem; }

.concept-text {
  margin: 0 0 60px;
  font-size: 1.8rem;
  line-height: 3; }

.concept-btn__item {
  margin: 40px 0; }

.concept-trigger {
  width: 60px;
  height: 60px;
  position: relative;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  z-index: 3;
  cursor: pointer; }
  .concept-trigger span,
  .concept-trigger span::before,
  .concept-trigger span::after {
    width: 20px;
    height: 3px;
    background: #999999;
    display: inline-block;
    position: absolute;
    transform-origin: 0% 50%; }
  .concept-trigger span {
    margin-top: -2px;
    background: rgba(46, 50, 51, 0);
    position: absolute;
    top: 50%;
    right: 20px; }
  .concept-trigger span::before,
  .concept-trigger span::after {
    content: '';
    right: 0; }
  .concept-trigger span::before {
    top: -6px;
    transform: translateX(3px) translateY(-1px) rotate(45deg); }
  .concept-trigger span::after {
    top: 6px;
    transform: translateX(3px) translateY(1px) rotate(-45deg); }

/* --------------------------------
	main visual
-------------------------------- */
.l-main_visual {
  display: flex;
  /* slick */ }
  .l-main_visual__left {
    width: 35%;
    padding: 80px 20px 80px 50px; }
  .l-main_visual__right {
    width: 65%; }
  .l-main_visual .slick-dots {
    width: 35%;
    padding: 0 20px 0 0;
    text-align: right;
    bottom: 100px;
    right: 0; }
    .l-main_visual .slick-dots li {
      width: 40px; }
      .l-main_visual .slick-dots li button {
        width: 100%;
        padding: 0; }
        .l-main_visual .slick-dots li button:before {
          width: 100%;
          height: 3px;
          border-radius: 0;
          background: #FFF;
          opacity: 1;
          top: 8px; }
      .l-main_visual .slick-dots li.slick-active button:before {
        background: #999; }

.mv-about__title {
  margin: 0 0 30px;
  font-size: 4.8rem; }

.mv-about__copy {
  font-size: 2.4rem;
  line-height: 1.8; }

.mv-about__btn__link {
  padding: 10px 50px;
  display: inline-block;
  border: #999 solid 1px;
  background: url("../img/common/arrow01-gray.svg") no-repeat 15px 17px;
  background-size: 6px 11px;
  transition: all 0.5s; }
  .mv-about__btn__link:hover {
    color: #fff;
    border: #333 solid 1px;
    background-color: #333;
    background-image: url("../img/common/arrow01-wht.svg"); }

.mv-recommend {
  margin: 0 0 50px; }
  .mv-recommend__title {
    margin: 0 0 15px;
    font-size: 3rem;
    font-weight: 600; }
  .mv-recommend__item {
    position: relative; }
  .mv-recommend__text {
    width: 65%;
    max-width: 500px;
    height: 250px;
    padding: 20px 20px 65px;
    background: rgba(255, 255, 255, 0.9);
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 5; }
  .mv-recommend__label {
    padding: 3px 15px;
    color: #FFF;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    line-height: 1;
    position: absolute;
    top: -15px;
    left: 15px;
    z-index: 2; }
    .mv-recommend__label::before {
      content: '';
      width: 100%;
      height: 100%;
      background: #D6868B;
      position: absolute;
      top: 0;
      left: 0;
      z-index: -1;
      transform: skew(-20deg); }
  .mv-recommend__thumb {
    width: 100%;
    height: 0;
    margin: 0 0 130px 50px;
    padding-top: 66.6%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat; }
  .mv-recommend__lead {
    margin: 0; }
  .mv-recommend__btn {
    position: absolute;
    right: 20px;
    bottom: 20px; }

/* --------------------------------
	infomation
-------------------------------- */
.info-text {
  margin: 0 0 50px;
  line-height: 1.8;
  text-align: center; }

.info-box {
  width: calc((99.9% - 100px) / 3);
  margin: 0 50px 50px 0;
  display: flex; }
  .info-box:nth-child(3n) {
    margin: 0 0 50px 0; }
  .info-box__thumb__img {
    width: 100%;
    height: 0;
    padding-top: 66.6%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat; }
  .info-box__text {
    padding: 10px 0; }
  .info-box__link {
    width: 100%;
    display: block;
    transition: all 0.5s; }
    .info-box__link:hover {
      opacity: 0.7; }
  .info-box__title {
    margin: 0;
    font-weight: 600; }
  .info-box__date {
    margin: 0 0 5px;
    font-family: 'Cormorant Garamond', serif; }
  .info-box-wrapper {
    display: flex;
    flex-wrap: wrap; }

.wp-pagenavi {
  margin: 50px 0 0;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  line-height: 1; }
  .wp-pagenavi .pages {
    display: none; }
  .wp-pagenavi .page {
    padding: 0 15px;
    font-size: 3rem;
    color: #CCC;
    transition: all 0.5s; }
    .wp-pagenavi .page:hover {
      color: #333; }
  .wp-pagenavi .current {
    padding: 0 15px;
    font-size: 3rem; }
  .wp-pagenavi .previouspostslink {
    padding: 0 20px;
    font-size: 1.8rem;
    position: relative;
    transition: all 0.5s; }
    .wp-pagenavi .previouspostslink:before {
      content: '';
      width: 7px;
      height: 12px;
      background: url("../img/common/arrow01-gray.svg") no-repeat 0 0;
      background-size: 100%;
      position: absolute;
      top: 50%;
      left: 0;
      transform: translate(0, -50%) scale(-1, 1);
      transition: all 0.5s cubic-bezier(0.25, 0.64, 0.29, 0.98); }
    .wp-pagenavi .previouspostslink:hover {
      color: #999; }
      .wp-pagenavi .previouspostslink:hover:before {
        left: -10px; }
  .wp-pagenavi .nextpostslink {
    padding: 0 20px;
    font-size: 1.8rem;
    position: relative;
    transition: all 0.5s; }
    .wp-pagenavi .nextpostslink:before {
      content: '';
      width: 7px;
      height: 12px;
      background: url("../img/common/arrow01-gray.svg") no-repeat 0 0;
      background-size: 100%;
      position: absolute;
      top: 50%;
      right: 0;
      transform: translate(0, -50%);
      transition: all 0.5s cubic-bezier(0.25, 0.64, 0.29, 0.98); }
    .wp-pagenavi .nextpostslink:hover {
      color: #999; }
      .wp-pagenavi .nextpostslink:hover:before {
        right: -10px; }

/* info detail */
.l-2column {
  display: flex; }
  .l-2column__side {
    width: 30%; }
  .l-2column__main {
    width: 70%; }

.post-category-list {
  font-family: 'Cormorant Garamond', serif; }
  .post-category-list__item {
    margin: 0 0 15px; }
  .post-category-list__link {
    padding: 0 0 0 40px;
    display: block;
    position: relative;
    transition: all 0.5s cubic-bezier(0.25, 0.64, 0.29, 0.98); }
    .post-category-list__link:before {
      content: '';
      width: 30px;
      height: 1px;
      background: #999;
      position: absolute;
      top: 10px;
      left: 0;
      transition: all 0.5s cubic-bezier(0.25, 0.64, 0.29, 0.98); }
    .post-category-list__link:hover {
      padding: 0 0 0 55px;
      opacity: 0.7; }
      .post-category-list__link:hover:before {
        width: 45px; }

.post-title {
  margin: 0 0 20px;
  padding: 0 0 20px;
  border-bottom: 1px solid #ccc;
  font-size: 3rem; }

.post-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; }

.post-category {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: #D6868B; }

.post-header {
  margin: 0 0 50px; }
  .post-header__bottom {
    display: flex;
    justify-content: space-between; }

.post-subinfo {
  display: flex; }
  .post-subinfo__item + .post-subinfo__item {
    margin: 0 0 0 20px; }

.post-share {
  display: flex;
  align-items: center; }
  .post-share__label {
    margin: 0 10px 0 0;
    padding: 0 40px 0 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    position: relative; }
    .post-share__label:after {
      content: '';
      width: 30px;
      height: 1px;
      background: #ccc;
      position: absolute;
      top: 10px;
      right: 0; }

.post-share-list {
  display: flex;
  align-items: center; }
  .post-share-list__item {
    height: 17px;
    padding: 0 10px;
    font-size: 0; }
  .post-share-list__link {
    height: 100%;
    display: block;
    line-height: 1;
    transition: all 0.5s; }
    .post-share-list__link:hover {
      opacity: 0.7; }
  .post-share-list__img {
    max-width: inherit;
    height: 100%; }

.post-body {
  line-height: 1.8; }
  .post-body__thumb {
    margin: 0 0 30px;
    text-align: center; }
  .post-body__textarea {
    margin: 0 0 20px;
    line-height: 2; }
    .post-body__textarea p {
      margin: 0 0 1em; }

.post-footer {
  margin: 100px 0 0; }

.post-back-index {
  width: 100%;
  height: 100%; }
  .post-back-index__link {
    width: 100%;
    height: 100%;
    padding: 0 0 0 40px;
    display: flex;
    align-items: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    position: relative;
    transition: all 0.5s; }
    .post-back-index__link:before {
      content: '';
      width: 30px;
      height: 10px;
      background: url("../img/common/arrow02-gray.svg") no-repeat 0 0;
      background-size: auto 100%;
      position: absolute;
      top: 50%;
      left: 0;
      transform: translate(0, -50%);
      transition: all 0.5s cubic-bezier(0.25, 0.64, 0.29, 0.98); }
    .post-back-index__link:hover {
      opacity: 0.7; }
      .post-back-index__link:hover:before {
        width: 40px;
        left: -10px; }

.post-navi {
  display: flex;
  position: relative; }
  .post-navi:after {
    content: '';
    width: 1px;
    height: 100%;
    background: #ccc;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0); }
  .post-navi__item {
    width: 50%; }
  .post-navi__link {
    padding: 10px 30px;
    display: block;
    transition: all 0.5s; }
    .post-navi__link:hover {
      background: #FAFAFA; }
      .post-navi__link:hover .post-navi__label:before {
        right: -10px; }
    .post-navi__link--prev {
      text-align: right; }
      .post-navi__link--prev .post-navi__label {
        padding: 0 0 0 20px; }
        .post-navi__link--prev .post-navi__label:before {
          right: auto;
          left: 0;
          transform: translate(0, -50%) scale(-1, 1); }
      .post-navi__link--prev:hover .post-navi__label:before {
        right: auto;
        left: -10px; }
  .post-navi__title {
    text-align: left;
    font-size: 1.4rem; }
  .post-navi__label {
    padding: 0 20px 0 0;
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    position: relative; }
    .post-navi__label:before {
      content: '';
      width: 6px;
      height: 11px;
      background: url("../img/common/arrow01-gray.svg") no-repeat 0 0;
      background-size: 100%;
      position: absolute;
      top: 50%;
      right: 0;
      transform: translate(0, -50%);
      transition: all 0.5s cubic-bezier(0.25, 0.64, 0.29, 0.98); }

/* post list */
.post-list__item {
  padding: 15px;
  border-bottom: 1px solid #ccc; }

.post-list__link {
  display: block;
  transition: all 0.5s cubic-bezier(0.25, 0.64, 0.29, 0.98); }
  .post-list__link:hover {
    transform: translate(10px);
    opacity: 0.7; }

.post-list__title {
  margin: 0;
  font-size: 2.4rem; }

.post-list__date {
  margin: 0 0 5px;
  font-family: 'Cormorant Garamond', serif; }

/* --------------------------------
	recommend
-------------------------------- */
.recommend-box {
  width: calc((100% - 50px) / 2);
  margin: 0 50px 30px 0; }
  .recommend-box:nth-child(2n) {
    margin: 0 0 30px 0; }
  .recommend-box__thumb {
    width: 50%; }
    .recommend-box__thumb__img {
      width: 100%;
      height: 0;
      padding-top: 66.6%;
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat; }
  .recommend-box__text {
    width: 50%;
    padding: 0 0 0 15px; }
  .recommend-box__link {
    width: 100%;
    display: flex;
    transition: all 0.5s; }
    .recommend-box__link:hover {
      opacity: 0.7; }
  .recommend-box__title {
    margin: 0 0 20px;
    font-weight: 600; }
  .recommend-box__price {
    margin: 0;
    font-size: 1.8rem; }
  .recommend-box-wrapper {
    display: flex;
    flex-wrap: wrap; }

/* --------------------------------
	category list
-------------------------------- */
.category-list {
  display: flex;
  flex-wrap: wrap; }
  .category-list__item {
    width: calc((100% - 60px) / 4);
    margin: 0 20px 20px 0;
    text-align: center;
    transition: all 0.5s; }
    .category-list__item:nth-child(4n) {
      margin: 0 0 20px 0; }
    .category-list__item:hover {
      opacity: 0.6; }
    .category-list__item.is-disable {
      position: relative; }
      .category-list__item.is-disable:after {
        content: '';
        width: 100%;
        height: 100%;
        background: rgba(204, 204, 204, 0.6);
        position: absolute;
        top: 0;
        left: 0;
        z-index: 5; }
      .category-list__item.is-disable:hover {
        opacity: 1; }
  .category-list__text {
    font-size: 2.4rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: normal;
    color: #FFF;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform: translate(-50%, -50%); }
    .category-list__text__jp {
      display: block;
      font-size: 1.4rem;
      font-family: 'Noto Serif JP', serif; }
  .category-list__inner {
    height: 0;
    padding-bottom: 100%;
    display: block;
    position: relative; }
  .category-list__bg {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0; }

/* --------------------------------
	concierge
-------------------------------- */
.concierge-box {
  width: 100%;
  height: 196px;
  margin: 0;
  position: relative; }
  .concierge-box-wrapper {
    margin: 30px 0 0;
    display: flex; }
    .concierge-box-wrapper__left {
      width: 40%;
      margin: 0 20px 0 0; }
    .concierge-box-wrapper__right {
      width: calc(60% - 20px); }
  .concierge-box-list {
    margin: 0 0 -20px;
    display: flex;
    flex-wrap: wrap; }
    .concierge-box-list .concierge-box {
      width: calc((100% - 20px) / 2);
      height: 88px;
      margin: 0 20px 20px 0; }
      .concierge-box-list .concierge-box:nth-child(2n) {
        margin: 0 0 20px 0; }
      .concierge-box-list .concierge-box__title {
        font-size: 1.6rem; }
  .concierge-box__link {
    height: 100%;
    display: flex;
    align-items: center;
    background: #fff;
    transition: all 0.5s; }
    .concierge-box__link:hover {
      opacity: 0.7; }
  .concierge-box__thumb {
    width: 45%;
    height: 100%; }
    .concierge-box__thumb__img {
      width: 100%;
      height: 100%;
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat; }
  .concierge-box__text {
    width: 55%;
    padding: 10px 15px;
    background: #FFF; }
  .concierge-box__title {
    margin: 0;
    font-size: 2rem; }
  .concierge-box--onlythumb {
    height: 100%; }
    .concierge-box--onlythumb .concierge-box__thumb {
      width: 100%; }

.l-concierge-case {
  text-align: center; }

.concierge-case-list {
  width: 360px;
  margin: 0 auto 50px;
  text-align: left; }
  .concierge-case-list__item {
    margin: 0 0 2em;
    padding: 0 0 0 60px;
    position: relative; }
    .concierge-case-list__item:before {
      content: '';
      width: 50px;
      height: 1px;
      background: #ccc;
      position: absolute;
      top: 50%;
      left: 0;
      transform: translate(0, -50%); }
    .concierge-case-list__item:last-child {
      margin: 0; }

.l-concierge-answer {
  padding: 50px 0; }

.concierge-answer__title {
  margin: 0 0 40px;
  font-size: 3.6rem;
  text-align: center;
  color: #D6868B;
  letter-spacing: -0.1em;
  opacity: 0;
  position: relative;
  transition: all 2s cubic-bezier(0.25, 0.64, 0.29, 0.98); }
  .concierge-answer__title:after {
    content: '';
    width: 1px;
    height: 0;
    background: #D6868B;
    position: absolute;
    top: -100px;
    left: 50%;
    transition: all 1s cubic-bezier(0.25, 0.64, 0.29, 0.98); }
  .concierge-answer__title.animated {
    transition-delay: 1s;
    letter-spacing: 0;
    opacity: 1; }
    .concierge-answer__title.animated:after {
      height: 100px; }

.concierge-answer-box {
  width: 70%;
  margin: 0 auto; }
  .concierge-answer-box__thumb__img {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat; }

.concierge-note__title {
  margin: 0 0 10px;
  font-size: 1.8rem;
  font-weight: 600; }

.concierge-note + .concierge-note {
  margin: 100px 0 0; }

.concierge-info {
  margin: 50px 0 0;
  padding: 20px 40px;
  border: 1px solid #ccc;
  position: relative; }
  .concierge-info__title {
    padding: 3px 15px;
    color: #FFF;
    font-size: 2rem;
    line-height: 1;
    position: absolute;
    top: -15px;
    left: 15px;
    z-index: 2; }
    .concierge-info__title::before {
      content: '';
      width: 100%;
      height: 100%;
      background: #D6868B;
      position: absolute;
      top: 0;
      left: 0;
      z-index: -1;
      transform: skew(-20deg); }
  .concierge-info-box {
    display: flex;
    flex-wrap: wrap;
    font-size: 2.4rem; }
    .concierge-info-box__label {
      width: 80px;
      margin: 5px 0;
      font-weight: 600; }
    .concierge-info-box__content {
      width: calc(100% - 80px);
      margin: 5px 0;
      padding: 0 0 0 1em;
      position: relative; }
      .concierge-info-box__content:before {
        content: ':';
        position: absolute;
        top: 0;
        left: 0; }
  .concierge-info__note {
    padding: 0 0 0 20px;
    font-size: 1.4rem; }

/* --------------------------------
	shopping guide
-------------------------------- */
.shopping-guide-list__item {
  margin: 0 50px 30px 0;
  display: inline-block; }

.shopping-guide-list__link {
  padding: 0 0 0 15px;
  display: inline-block;
  background: url("../img/common/arrow01-gray.svg") no-repeat 0 5px;
  background-size: 7px 12px;
  transition: all 0.5s cubic-bezier(0.25, 0.64, 0.29, 0.98); }
  .shopping-guide-list__link:hover {
    transform: translate(10px);
    opacity: 0.7; }

.shopping-guide-list-wrapper {
  margin: 0 0 40px;
  padding: 30px 50px 0;
  background: #FAFAFA; }

/* mizuhiki */
.about-mizuhiki {
  margin: 20px 0 10px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; }

.about-mizuhiki__thumb {
  width: 120px;
  margin: 0 20px 10px 0; }

/* mizuhiki */
.about-mizuhiki__content {
  width: calc( 100% - 140px);
  margin: 0 0 10px; }

.l-mizuhiki {
  display: flex; }
  .l-mizuhiki__left {
    width: 30%;
    display: flex;
    -webkit-align-items: center;
    align-items: center; }
  .l-mizuhiki__right {
    width: calc(70% - 30px);
    margin: 0 0 0 30px; }

.mizuhiki-preview {
  width: 100%;
  height: 100%;
  border: 1px solid #ccc;
  position: relative; }
  .mizuhiki-preview-bg {
    width: 100%;
    height: 100%;
    display: block; }
    .mizuhiki-preview-bg--black {
      background: url("../img/shopping_guide/mizuhiki-box-black.png") 0 0 repeat; }
    .mizuhiki-preview-bg--white {
      background: url("../img/shopping_guide/mizuhiki-box-white.png") 0 0 repeat; }
  .mizuhiki-preview-line01, .mizuhiki-preview-line02 {
    width: 100%;
    height: 10px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 5; }
  .mizuhiki-preview-line01 {
    transform: translate(0, -10px); }
  .mizuhiki-preview-line02 {
    transform: translate(0, 10px); }

.mizuhiki-option-box {
  display: flex; }
  .mizuhiki-option-box__left {
    width: 120px;
    padding: 20px;
    background: #eee;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    position: relative; }
    .mizuhiki-option-box__left:after {
      content: '';
      width: 10px;
      height: 12px;
      background: url("../img/common/arrow04-gray.svg") no-repeat 0 0;
      background-size: 100%;
      position: absolute;
      top: 50%;
      right: -10px;
      z-index: 5;
      transform: translate(0, -50%); }
  .mizuhiki-option-box__right {
    width: calc(100% - 120px);
    padding: 20px;
    background: #fafafa; }
  .mizuhiki-option-box__title {
    padding: 10px 0; }
  .mizuhiki-option-box + .mizuhiki-option-box {
    margin: 20px 0 0; }

.mizuhiki-box-color {
  display: flex;
  flex-wrap: wrap; }
  .mizuhiki-box-color__item {
    width: 120px;
    margin: 0;
    padding: 10px;
    border-left: 1px solid #ccc;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    background: #EEE;
    color: #999;
    line-height: 1;
    text-align: center;
    cursor: pointer;
    transition: all 0.5s; }
    .mizuhiki-box-color__item.is-active {
      background: #fff;
      color: #333; }
    .mizuhiki-box-color__item:last-child {
      border-right: 1px solid #ccc; }
    .mizuhiki-box-color__item:hover {
      background: #fff;
      color: #333; }

.mizuhiki-number {
  display: flex;
  flex-wrap: wrap; }
  .mizuhiki-number__item {
    width: 120px;
    margin: 0;
    padding: 10px;
    border-left: 1px solid #ccc;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    background: #EEE;
    color: #999;
    line-height: 1;
    text-align: center;
    cursor: pointer;
    transition: all 0.5s; }
    .mizuhiki-number__item.is-active {
      border-bottom: 1px solid #fff;
      background: #fff;
      color: #333; }
    .mizuhiki-number__item:last-child {
      border-right: 1px solid #ccc; }
    .mizuhiki-number__item:hover {
      background: #fff;
      color: #333; }

.mizuhiki-color {
  margin: -1px 0 0;
  padding: 15px;
  border: 1px solid #ccc;
  background: #FFF;
  display: flex;
  flex-wrap: wrap; }
  .mizuhiki-color__item {
    width: calc( (99.9% - 90px) / 3);
    margin: 15px;
    position: relative;
    text-align: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.5s; }
    .mizuhiki-color__item:hover {
      opacity: 0.7; }
  .mizuhiki-color__thumb {
    width: 100%;
    height: 20px;
    margin: 0 0 5px;
    display: block;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center; }

.mizuhiki-bg--32 {
  background-image: url("../img/shopping_guide/m-color-32.png"); }

.mizuhiki-bg--37 {
  background-image: url("../img/shopping_guide/m-color-37.png"); }

.mizuhiki-bg--40 {
  background-image: url("../img/shopping_guide/m-color-40.png"); }

.mizuhiki-bg--20 {
  background-image: url("../img/shopping_guide/m-color-20.png"); }

.mizuhiki-bg--67 {
  background-image: url("../img/shopping_guide/m-color-67.png"); }

.mizuhiki-bg--19 {
  background-image: url("../img/shopping_guide/m-color-19.png"); }

.mizuhiki-bg--49 {
  background-image: url("../img/shopping_guide/m-color-49.png"); }

.mizuhiki-bg--15 {
  background-image: url("../img/shopping_guide/m-color-15.png"); }

.mizuhiki-bg--27 {
  background-image: url("../img/shopping_guide/m-color-27.png"); }

.mizuhiki-bg--38 {
  background-image: url("../img/shopping_guide/m-color-38.png"); }

.mizuhiki-bg--45 {
  background-image: url("../img/shopping_guide/m-color-45.png"); }

/* flow */
.l-flow {
  counter-reset: step; }
  .l-flow__item {
    padding: 0 0 0 150px;
    counter-increment: step; }
    .l-flow__item__label {
      width: calc(100% + 140px);
      margin: 0 0 30px -140px;
      padding: 10px 10px 10px 150px;
      display: block;
      border: 1px solid #ccc;
      font-size: 2.1rem;
      position: relative; }
      .l-flow__item__label:before {
        content: "STEP" counter(step);
        width: 140px;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #999;
        font-size: 1.8rem;
        color: #FFF;
        position: absolute;
        top: 0;
        left: 0; }
    .l-flow__item + .l-flow__item {
      margin: 60px 0 0; }

/* payment */
.payment-box {
  line-height: 1.8; }
  .payment-box__label {
    margin: 0 0 0.5em;
    font-weight: bold; }
  .payment-box__text {
    margin: 0; }
  .payment-box + .payment-box {
    margin: 30px 0 0; }

.payment-table {
  margin: 10px 0;
  min-width: 500px;
  border-bottom: solid 1px #ccc; }
  .payment-table tr:nth-child(even) {
    background: #FAFAFA; }
  .payment-table th, .payment-table td {
    padding: 10px 20px;
    border-top: solid 1px #ccc;
    text-align: left; }
  .payment-table th {
    font-weight: normal;
    white-space: nowrap; }
  .payment-table--small {
    border-left: solid 1px #ccc;
    font-size: 1.4rem; }
    .payment-table--small th, .payment-table--small td {
      padding: 10px;
      border-right: solid 1px #ccc;
      white-space: nowrap; }

.payment-table02 {
  margin: 10px 0;
  border-bottom: solid 1px #ccc;
  border-left: solid 1px #ccc;
  font-size: 1.4rem; }
  .payment-table02 th, .payment-table02 td {
    padding: 10px;
    border-top: solid 1px #ccc;
    border-right: solid 1px #ccc;
    text-align: left;
    white-space: nowrap; }
  .payment-table02 th {
    background: #FAFAFA; }

.table-scroll {
  width: 100%;
  overflow-x: scroll; }

/* --------------------------------
	faq
-------------------------------- */
.qa-box {
  margin: 0 0 30px; }
  .qa-box__q {
    margin: 0 0 20px;
    padding: 0 0 0 30px;
    line-height: 1.8;
    font-weight: 600;
    position: relative;
    cursor: pointer; }
    .qa-box__q:before {
      content: 'Q';
      font-size: 2.4rem;
      font-family: 'Cormorant Garamond', serif;
      font-weight: bold;
      line-height: 1;
      position: absolute;
      top: 0;
      left: 0; }
  .qa-box__a {
    margin: 0;
    padding: 0 0 0 30px;
    display: none;
    line-height: 1.8;
    position: relative; }
    .qa-box__a:before {
      content: 'A';
      font-size: 2.4rem;
      font-family: 'Cormorant Garamond', serif;
      font-weight: bold;
      line-height: 1;
      position: absolute;
      top: 2px;
      left: 0; }

/* --------------------------------
	home btn
-------------------------------- */
.l-go-home {
  padding: 100px 0 0;
  text-align: center; }

#contents_bottom .l-go-home {
  padding: 100px 0; }

/* --------------------------------
	message
-------------------------------- */
.l-message {
  text-align: center;
  position: relative; }
  .l-message:after {
    content: '';
    width: 100vw;
    height: calc(100% + 140px);
    background: url("../img/common/bg-concept.jpg") center;
    background-size: cover;
    position: absolute;
    top: -140px;
    left: 50%;
    z-index: -2;
    transform: translate(-50%, 0); }

.message-title {
  margin: 0 0 80px 1em;
  font-size: 6rem; }

.message-text {
  margin: 0 0 60px;
  font-size: 1.8rem;
  line-height: 3; }

/* --------------------------------
	my page
-------------------------------- */
.local_nav {
  margin: 0 0 50px; }
  .local_nav ul {
    border-color: #ccc; }
  .local_nav li {
    border-color: #ccc; }
    .local_nav li.active a {
      color: #333;
      background: #FAFAFA; }
    .local_nav li a {
      color: #999; }
      .local_nav li a:hover {
        color: #333;
        background: #FAFAFA; }

/* mypage TOP */
.history_list__item-wrapper {
  border-bottom: 1px solid #ccc; }
  .history_list__item-wrapper > .row {
    padding: 8px 10px; }
    .history_list__item-wrapper > .row:nth-child(odd) {
      background: #FAFAFA; }

/* お気に入り */
.mypage .intro {
  margin: 0 0 40px;
  padding: 0 0 10px;
  border-bottom: 1px solid #ccc; }

.mypage #item_list .item_name {
  margin: 0 0 10px;
  font-size: 1.8rem; }

.mypage #item_list .item_price {
  font-weight: normal; }

.mypage .not_required {
  margin-top: 0;
  border-top: none; }

/* お届け先 */
.address_table {
  border-bottom: 1px solid #ccc; }
  .address_table .icon_edit {
    width: 12%;
    font-size: 12px; }
    .address_table .icon_edit a {
      padding: 10px;
      border: solid 1px #333;
      display: flex;
      align-items: center;
      justify-content: center;
      white-space: nowrap; }
    .address_table .icon_edit img {
      width: 12px;
      padding: 0 5px 0 0; }

.addr_box > .td {
  border-top: 1px solid #ccc; }

.addr_box .column.is-edit .address {
  line-height: 1.8; }

/* 退会 */
.unsubscribe_box .icon {
  margin: 0 0 50px;
  height: 150px; }
  .unsubscribe_box .icon img {
    max-width: inherit;
    height: 100%; }

/* ご注文内容のご確認 */
.heading02 + .column .btn_edit {
  top: -10px; }

/* --------------------------------
	login
-------------------------------- */
#login_box .column .form-group {
  margin: 0;
  padding: 5px 0;
  text-align: center; }

#login_box .column .btn_area ul {
  margin: 20px 0 0; }

#login_box .column .message {
  font-size: 1.4rem;
  text-align: left; }
  #login_box .column .message-label {
    margin: 16px 0 8px;
    display: block;
    font-size: 1.6rem;
    font-weight: 600; }

#login_box .column .icon {
  margin: 0 0 15px;
  line-height: 1; }

#AmazonPayButton {
  text-align: center; }
  #AmazonPayButton img {
    transition: opacity 0.5s; }
    #AmazonPayButton img:hover {
      opacity: 0.6; }

/* --------------------------------
	shopping
-------------------------------- */
.shipping_item {
  padding: 10px 0;
  border-bottom: solid 1px #ccc; }
  .shipping_item > * {
    margin-top: 5px;
    margin-bottom: 5px; }

.cart_item .item_box > .td {
  border-bottom: solid 1px #ccc; }

.cart_item {
  border-top: 1px solid #ccc; }

.flowline ul:before {
  background: #666; }

.flowline li .flow_number {
  background: #666; }

.mail_list dl {
  border-bottom: solid 1px #ccc; }

#shopping_confirm .total_box .total_amount {
  border-top: solid 1px #ccc; }

/* --------------------------------
	product detail
-------------------------------- */
.item_name {
  color: #333; }

.item_comment {
  line-height: 1.8; }

#item_detail_area .item_detail p {
  margin: 10px 0; }

.cart_area {
  border-top: solid 1px #ccc; }

.freearea {
  font-size: 1.4rem;
  line-height: 1.6; }

.extra-form {
  margin: 30px 0; }
  .extra-form dl {
    margin: 0 0 15px; }
  .extra-form dt {
    margin: 0 0 5px; }

/* --------------------------------
	cart
-------------------------------- */
.total_box {
  min-width: inherit;
  float: none; }
  .total_box #AmazonPayButton {
    margin: 0 0 0 30px;
    text-align: right; }

/* --------------------------------
	search
-------------------------------- */
.search-word-box {
  margin: 0 0 20px;
  padding: 2rem;
  background: #FAFAFA; }
  .search-word-box__text {
    margin: 0;
    font-size: 2rem; }

/* --------------------------------
	footer
-------------------------------- */
#footer {
  margin: 0;
  padding: 0;
  background: #fff;
  border-top: none;
  font-size: 14px;
  text-align: center; }

.footer_logo_area {
  margin: 50px auto; }

.footer_logo_area .logo {
  height: 40px;
  line-height: 1; }
  .footer_logo_area .logo a {
    display: inline-block;
    height: 100%;
    transition: opacity 0.5s; }
    .footer_logo_area .logo a:hover {
      opacity: 0.6; }
  .footer_logo_area .logo img {
    max-width: inherit;
    height: 100%; }

#footer .sns_list {
  margin: 50px auto;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center; }
  #footer .sns_list li {
    margin: 0 25px;
    height: 50px; }
  #footer .sns_list a {
    display: block;
    height: 100%;
    transition: all 0.5s; }
    #footer .sns_list a:hover {
      opacity: 0.6; }
  #footer .sns_list img {
    max-width: inherit;
    height: 100%; }

#footer .footer_menu {
  margin: 50px auto; }
  #footer .footer_menu a {
    transition: all 0.5s;
    position: relative; }
    #footer .footer_menu a:after {
      content: '';
      height: 1px;
      background: #999;
      position: absolute;
      left: 0;
      right: 0;
      bottom: -5px;
      transform: scaleX(0);
      transition: all 0.5s; }
    #footer .footer_menu a:hover:after {
      transform: scaleX(1); }

@media only screen and (min-width: 768px) {
  /* --------------------------------
		header
	-------------------------------- */
  #header .header_logo_area {
    margin: 0 auto 0 0;
    float: none; }
  .header_logo_area .header_logo {
    font-size: 0; }
  #header #cart_area p.cart-trigger .cb-shopping-cart {
    position: absolute;
    top: 20px;
    left: 20px; }
  /* member link */
  #member {
    float: none; }
  .member ul li {
    display: block; }
  /* header cart */
  #cart_area p.cart-trigger {
    top: 0; }
  #cart_area .inner {
    width: 400px; }
  p.cart-trigger .cb-close {
    top: 18px;
    left: 18px; }
  /* --------------------------------
		product detail
	-------------------------------- */
  #item_detail_area .item_detail .item_code {
    padding: 0;
    border: none; }
  .cart_area {
    padding-top: 0; }
  /* --------------------------------
		shopping
	-------------------------------- */
  #shopping_confirm .cart_item.table {
    border-top: solid 1px #ccc; }
  /* --------------------------------
		login_box
	-------------------------------- */
  #login_box .column {
    padding: 16px; }
  #login_box .column .btn_area,
  #login_box .column .message,
  #login_box #AmazonPayButton {
    padding: 8px 10%; }
  #login_box .column input[type="text"],
  #login_box .column input[type="email"],
  #login_box .column input[type="password"] {
    width: 80%; }
  #AmazonPayButton img {
    width: 100% !important;
    max-height: inherit !important;
    height: inherit !important; } }

@media only screen and (min-width: 767px) and (max-width: 970px) {
  /* --------------------------------
		main visual
	-------------------------------- */
  .l-main_visual .slick-dots {
    width: 30%;
    padding: 0 8px 0 0; }
    .l-main_visual .slick-dots li {
      width: 30px; }
  .mv-about__title {
    font-size: 3.2rem; }
  .mv-about__copy {
    font-size: 1.8rem; }
  .mv-about__btn__link {
    padding: 10px 30px; }
  .mv-recommend {
    margin: 0 0 30px; }
    .mv-recommend__title {
      font-size: 2.4rem; }
    .mv-recommend__label {
      font-size: 1.6rem;
      top: -12px; }
    .mv-recommend__text {
      width: 70%;
      height: 215px;
      padding: 20px 15px 65px; }
    .mv-recommend__btn {
      bottom: 15px;
      right: 15px; }
  /* --------------------------------
		concierge
	-------------------------------- */
  .concierge-box-list .concierge-box__text {
    padding: 10px; }
  .concierge-box-list .concierge-box__title {
    font-size: 1.4rem; }
  .concierge-box__title {
    font-size: 1.8rem; } }

@media only screen and (max-width: 767px) {
  /* --------------------------------
		header
	-------------------------------- */
  #header.cart-is-visible {
    background: white; }
  #header .header-inner {
    padding: 0 8px; }
  #header #cart_area p.cart-trigger a {
    width: 50px; }
  #header #cart_area p.cart-trigger .badge {
    right: 0; }
  /* member link */
  .member_link a {
    width: 40px;
    padding: 0 10px; }
  /* header cart */
  #cart .inner {
    padding: 20px 8px; }
  .cart {
    height: calc(100vh - 60px);
    background: #f3f3f3;
    position: fixed;
    overflow-y: scroll; }
  p.cart-trigger .badge {
    right: 20px;
    top: 15px; }
  /* gnavi btn */
  .nav-trigger {
    width: 40px; }
    .nav-trigger span {
      right: 10px; }
  /* --------------------------------
		contents
	-------------------------------- */
  /* main */
  #main {
    padding: 0 0 50px; }
  /* --------------------------------
		gnavi
	-------------------------------- */
  .l-gnavi .btn_menu {
    right: 8px; }
  .gnavi-box {
    display: block;
    padding: 100px 16px; }
    .gnavi-box__left, .gnavi-box__right {
      width: 100%; }
  .gnavi-list + .gnavi-list {
    margin: 50px 0 0; }
  .gnavi-sublist {
    font-size: 1.6rem; }
  /* --------------------------------
		common
	-------------------------------- */
  .page-heading {
    display: block; }
    .page-heading__left, .page-heading__right {
      width: 100%; }
    .page-heading__title {
      margin: 0 0 10px;
      padding: 15px 20px;
      font-size: 2.4rem; }
      .page-heading__title span {
        font-size: 1.2rem; }
  .page-sub-title {
    margin: 30px 0;
    font-size: 1.8rem; }
    .page-sub-title--small {
      margin: 20px 0;
      font-size: 1.6rem; }
  .local_nav ul {
    font-size: 1.4rem; }
  .section-title {
    margin: 0 0 20px;
    padding: 8px 0;
    font-size: 2.2rem; }
    .section-title__jp {
      font-size: 1.2rem; }
  .section-subtitle {
    padding: 10px 0 10px 25px;
    font-size: 2rem; }
    .section-subtitle:before {
      width: 15px; }
  .section-box__inner {
    padding: 0; }
  .section-box + .section-box {
    margin: 40px 0 0; }
  .section-thumb {
    margin: 30px 0; }
    .section-thumb__inner {
      max-width: 100%; }
    .section-thumb__caption {
      font-size: 1.2rem; }
  .section-text {
    font-size: 1.4rem; }
  .dl_table dt {
    font-weight: 600; }
  .dl_table dt, .dl_table dd {
    border-bottom: none;
    font-size: 1.4rem; }
  /* bg */
  .bg-pink {
    padding: 16px; }
  /* text */
  .text-note {
    font-size: 1.2rem; }
  /* list */
  .list-dot__item {
    font-size: 1.4rem; }
  .list-circle__item {
    font-size: 1.4rem; }
  .list-number__item {
    font-size: 1.4rem; }
  /* info bar */
  .info-scroll {
    display: none !important; }
  /* --------------------------------
		concept 
	-------------------------------- */
  .l-concept {
    background-image: url("../img/common/bg-concept-sp.jpg"); }
  .concept-title {
    font-size: 4rem; }
  .concept-text {
    font-size: 1.4rem; }
  /* --------------------------------
		main visual
	-------------------------------- */
  .l-main_visual {
    padding: 0 0 50px;
    display: block;
    /* slick */ }
    .l-main_visual__left {
      width: 100%;
      padding: 50px 8px;
      text-align: center; }
    .l-main_visual__right {
      width: 100%; }
    .l-main_visual .slick-dots {
      width: 100%;
      padding: 0 16px;
      bottom: -30px; }
  .mv-about__title {
    margin: 0 0 30px;
    font-size: 3rem; }
  .mv-about__copy {
    font-size: 2rem;
    line-height: 1.8; }
  .mv-about__btn__link {
    background-position: 15px 15px;
    font-size: 1.4rem; }
  .mv-recommend__title {
    font-size: 2.1rem; }
  .mv-recommend__text {
    width: 100%;
    max-width: inherit;
    height: inherit;
    padding: 20px 20px 75px;
    position: static; }
  .mv-recommend__label {
    font-size: 1.6rem;
    top: 0;
    left: 20px; }
  .mv-recommend__thumb {
    margin: 10px 0 0; }
  /* --------------------------------
		info
	-------------------------------- */
  .info-text {
    font-size: 1.4rem;
    text-align: left; }
  .info-box {
    width: 100%;
    margin: 0 0 30px 0; }
    .info-box:nth-child(3n) {
      margin: 0 0 30px 0; }
    .info-box__thumb {
      width: 30%; }
    .info-box__text {
      width: 70%;
      padding: 0 0 0 15px; }
    .info-box__link {
      display: flex; }
    .info-box__title {
      font-size: 1.6rem; }
  .wp-pagenavi .page {
    display: none; }
  .wp-pagenavi .current {
    display: none; }
  .wp-pagenavi .previouspostslink {
    font-size: 1.6rem; }
    .wp-pagenavi .previouspostslink:before {
      width: 6px;
      height: 11px; }
  .wp-pagenavi .nextpostslink {
    font-size: 1.6rem; }
    .wp-pagenavi .nextpostslink:before {
      width: 6px;
      height: 11px; }
  .l-2column {
    flex-wrap: wrap; }
    .l-2column__side {
      width: 100%;
      order: 2; }
    .l-2column__main {
      width: 100%;
      order: 1; }
  .post-header {
    margin: 0 0 30px; }
  .post-subinfo__item + .post-subinfo__item {
    margin: 0 0 0 10px; }
  .post-share__label {
    margin: 0 5px 0 0;
    padding: 0 30px 0 0; }
    .post-share__label:after {
      width: 20px; }
  .post-share-list__item {
    padding: 0 6px; }
  .post-title {
    font-size: 2rem; }
  .post-body__textarea {
    font-size: 1.4rem; }
  .post-footer {
    margin: 0; }
  .post-category-list {
    margin: 50px 0; }
  .post-navi {
    margin: 0 0 50px; }
    .post-navi__link {
      padding: 10px; }
  /* --------------------------------
		recommend
	-------------------------------- */
  .recommend-box {
    width: 100%;
    margin: 0 0 30px; }
    .recommend-box__thumb {
      width: 30%; }
    .recommend-box__text {
      width: 70%; }
    .recommend-box__title {
      margin: 0 0 10px;
      font-size: 1.4rem; }
    .recommend-box__price {
      font-size: 2rem; }
    .recommend-box-wrapper {
      display: block; }
  /* --------------------------------
		concierge
	-------------------------------- */
  .concierge-box {
    width: 100%;
    height: inherit; }
    .concierge-box-wrapper {
      display: block; }
      .concierge-box-wrapper__left {
        width: 100%;
        margin: 0 0 10px; }
      .concierge-box-wrapper__right {
        width: 100%; }
    .concierge-box-list {
      margin: 0;
      display: block; }
      .concierge-box-list .concierge-box {
        width: 100%;
        height: inherit;
        margin: 0 0 10px 0; }
        .concierge-box-list .concierge-box:nth-child(2n) {
          margin: 0 0 10px; }
        .concierge-box-list .concierge-box__title {
          font-size: 1.4rem; }
    .concierge-box__thumb__img {
      width: 100%;
      height: 0;
      padding-top: 66.6%; }
    .concierge-box__text {
      /*			width: 70%;
			padding: 10px 15px;
			background: #FFF;*/ }
    .concierge-box__title {
      font-size: 1.4rem; }
  .concierge-case-list {
    width: 300px;
    font-size: 1.4rem; }
    .concierge-case-list__item {
      margin: 0 0 1em;
      padding: 0 0 0 30px; }
      .concierge-case-list__item:before {
        width: 20px; }
  .l-concierge-answer {
    padding: 30px 0; }
  .concierge-answer__title {
    margin: 0 0 30px;
    font-size: 2.4rem; }
    .concierge-answer__title:after {
      top: -60px; }
    .concierge-answer__title.animated:after {
      height: 60px; }
  .concierge-answer-box {
    width: 100%; }
  .concierge-note + .concierge-note {
    margin: 50px 0 0; }
  .concierge-info {
    padding: 16px; }
    .concierge-info__title {
      font-size: 1.6rem;
      text-align: center; }
    .concierge-info-box {
      font-size: 2rem; }
    .concierge-info__note {
      padding: 0;
      display: block; }
  /* --------------------------------
		category list
	-------------------------------- */
  .category-list__item {
    width: calc((100% - 8px) / 2);
    margin: 0 8px 8px 0; }
    .category-list__item:nth-child(2n), .category-list__item:nth-child(4n) {
      margin: 0 0 8px; }
  .category-list__text {
    font-size: 1.8rem; }
    .category-list__text__jp {
      font-size: 1rem; }
  /* --------------------------------
		shopping guide
	-------------------------------- */
  .shopping-guide-list {
    padding: 0 8px; }
    .shopping-guide-list__link {
      background-size: 6px 11px; }
    .shopping-guide-list__item {
      margin: 0 20px 20px 0;
      font-size: 1.4rem; }
  .shopping-guide-list-wrapper {
    padding: 20px 20px 0; }
  /* mizuhiki */
  .l-mizuhiki {
    flex-wrap: wrap; }
    .l-mizuhiki__left {
      width: 100%; }
    .l-mizuhiki__right {
      width: 100%;
      margin: 10px 0 0; }
  .mizuhiki-preview {
    height: 200px; }
  .mizuhiki-option-box {
    font-size: 1.4rem; }
    .mizuhiki-option-box__left {
      width: 65px;
      padding: 5px;
      font-size: 1.2rem; }
    .mizuhiki-option-box__right {
      width: calc(100% - 65px);
      padding: 10px 10px 10px 15px; }
    .mizuhiki-option-box + .mizuhiki-option-box {
      margin: 10px 0 0; }
  .mizuhiki-number__item {
    width: 80px;
    padding: 15px 5px; }
  .mizuhiki-box-color__item {
    width: 80px;
    padding: 15px 5px; }
  .mizuhiki-color {
    padding: 5px; }
    .mizuhiki-color__item {
      width: calc( (99.9% - 30px) / 3);
      margin: 5px; }
  /* flow */
  .l-flow__item {
    padding: 0 10px; }
    .l-flow__item__label {
      width: calc( 100% + 20px);
      margin: 0 -10px 20px -10px;
      padding: 10px 10px 10px 90px;
      font-size: 1.8rem; }
      .l-flow__item__label:before {
        width: 80px;
        font-size: 1.4rem; }
    .l-flow__item + .l-flow__item {
      margin: 40px 0 0; }
  /* payment */
  .payment-box__text {
    font-size: 1.4rem; }
  .payment-table {
    margin: 0 0 20px;
    min-width: 100%;
    font-size: 1.4rem; }
    .payment-table th, .payment-table td {
      padding: 10px; }
  /* --------------------------------
		faq
	-------------------------------- */
  .qa-box {
    margin: 0 0 30px; }
    .qa-box__q:before {
      font-size: 2rem;
      top: 2px; }
    .qa-box__a {
      font-size: 1.4rem; }
      .qa-box__a:before {
        font-size: 2rem; }
  /* --------------------------------
		home btn
	-------------------------------- */
  .l-go-home {
    padding: 50px 0 0; }
  #contents_bottom .l-go-home {
    padding: 50px 0; }
  /* --------------------------------
		message 
	-------------------------------- */
  .l-message:after {
    background-image: url("../img/common/bg-concept-sp.jpg"); }
  .message-title {
    font-size: 4rem; }
  .message-text {
    font-size: 1.4rem; }
  /* --------------------------------
		my page
	-------------------------------- */
  /* 送り先 */
  #delivery_address_list div.is-edit p.btn_edit {
    position: static;
    text-align: right; }
  /* --------------------------------
		product detail
	-------------------------------- */
  .cart_area {
    font-size: 14px; }
  #item_photo_area {
    margin: 0 0 30px; }
  /* --------------------------------
		shopping
	-------------------------------- */
  .flowline {
    border-bottom: solid 1px #ccc; }
  .cart_item {
    margin: 0 0 20px; }
  .item_detail dd {
    line-height: 1.6; }
  #confirm_side {
    margin-top: 0 !important; }
  #point_box__info {
    line-height: 1.6; }
    #point_box__info .btn-default {
      width: 170px;
      margin: 0 0 0 auto;
      display: block; }
  /* --------------------------------
		login_box
	-------------------------------- */
  #login_box .column {
    padding: 32px 16px; }
  /* --------------------------------
		cart
	-------------------------------- */
  .total_box #AmazonPayButton {
    text-align: center; }
  /* --------------------------------
		footer
	-------------------------------- */
  .footer_logo_area {
    margin: 30px auto; }
    .footer_logo_area .logo {
      height: 30px; }
  #footer .sns_list {
    margin: 30px auto; }
    #footer .sns_list li {
      height: 40px;
      margin: 0 15px; }
  #footer .footer_menu {
    margin: 30px auto; }
  #footer .copyright {
    font-size: 1.2rem; } }
