@charset "UTF-8";
/*$vw_standard_width: 390;*/
/* font-sizeレスポンシブ */
@-webkit-keyframes active-menu-bar {
  100% {
    height: 0;
  }
}
@keyframes active-menu-bar {
  100% {
    height: 0;
  }
}
@-webkit-keyframes scroll-down {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 100%;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 100%;
    opacity: 0;
  }
}
@keyframes scroll-down {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 100%;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 100%;
    opacity: 0;
  }
}
@-webkit-keyframes zoomOut {
  0% {
    -webkit-transform: scale(2);
            transform: scale(2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes zoomOut {
  0% {
    -webkit-transform: scale(2);
            transform: scale(2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes zoomIn {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes zoomIn {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  20% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes slideInRight {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  20% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  20% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes slideInLeft {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  20% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes slideRight {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes slideRight {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@-webkit-keyframes slideLeft {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes slideLeft {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@-webkit-keyframes slideInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes slideInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes zoomIn_bg {
  0% {
    background-size: 0%;
  }
  100% {
    background-size: 50%;
  }
}
@keyframes zoomIn_bg {
  0% {
    background-size: 0%;
  }
  100% {
    background-size: 50%;
  }
}
/*
@include sp {
	@keyframes zoomIn_bg {
		0% {
			background-size: 0%;
		}
		100% {
			background-size: 95%;
		}
	}
}
*/
.fadeIn, .slideInUp, .slideInRight, .slideInLeft, .slideInDown {
  opacity: 0;
}

.fadeIn.is-animated {
  -webkit-animation: fadeIn 0.7s ease-in-out both;
          animation: fadeIn 0.7s ease-in-out both;
}

.slideInUp.is-animated {
  -webkit-animation: slideInUp 0.7s ease-in-out both;
          animation: slideInUp 0.7s ease-in-out both;
}

.slideInDown.is-animated {
  -webkit-animation: slideInDown 0.7s ease-in-out both;
          animation: slideInDown 0.7s ease-in-out both;
}

.slideInRight.is-animated {
  -webkit-animation: slideInRight 0.7s ease-in-out both;
          animation: slideInRight 0.7s ease-in-out both;
}

.slideInLeft.is-animated {
  -webkit-animation: slideInLeft 0.7s ease-in-out both;
          animation: slideInLeft 0.7s ease-in-out both;
}

.zoomIn_bg {
  -webkit-animation: zoomIn_bg 1.5s ease-in-out both;
          animation: zoomIn_bg 1.5s ease-in-out both;
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

@-webkit-keyframes scroll_bar {
  0% {
    width: 0;
    opacity: 0;
  }
  20% {
    width: 0;
    opacity: 1;
  }
  80% {
    width: 105%;
    opacity: 1;
  }
  100% {
    width: 105%;
    opacity: 0;
  }
}

@keyframes scroll_bar {
  0% {
    width: 0;
    opacity: 0;
  }
  20% {
    width: 0;
    opacity: 1;
  }
  80% {
    width: 105%;
    opacity: 1;
  }
  100% {
    width: 105%;
    opacity: 0;
  }
}
/* -----------------------------------------------
* Plugins エントリーポイント
-------------------------------------------------- */
/*------------------------------------------------------------------------------
  reset PC
------------------------------------------------------------------------------*/
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

* {
  margin: 0;
}

body {
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

#root, #__next {
  isolation: isolate;
}

ul {
  padding: 0;
}
ul li {
  list-style: none;
}

button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  opacity: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 1rem;
}
@media screen and (min-width: 350px) {
  button {
    font-size: calc(18px + 3 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  button {
    font-size: 1.1666666667rem;
  }
}
button:hover {
  opacity: 0.7;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
}

.cart_ico {
  background-image: url(../images/ico/on_cart.png);
  display: block;
  width: 30px;
  height: 30px;
  margin-right: 0.5rem;
}

.woocommerce .products ul::before, .woocommerce .products ul::after, .woocommerce ul.products::before, .woocommerce ul.products::after {
  display: block !important;
  content: none !important;
}

html {
  font-size: 18px;
  color: #ffffff;
  background-color: #000000;
  word-break: break-all;
  -ms-overflow-style: none;
  scrollbar-width: none;
  font-family: "YuMincho", "Hiragino Mincho ProN", serif;
  overflow-x: hidden;
}

html,
input,
textarea,
select,
button {
  line-height: 1.625;
}

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

.scroll-prevent {
  overflow-y: hidden;
}

body {
  position: relative;
  margin: 0;
  font-size: 0.8888888889rem;
}
@media screen and (min-width: 350px) {
  body {
    font-size: calc(16px + 2 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  body {
    font-size: 1rem;
  }
}

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

.pc {
  display: block;
}

.sp {
  display: none;
}

@media only screen and (max-width: 767px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
.home .c-product__img {
  width: 16.1111111111rem;
  height: 16.1111111111rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0);
  position: relative;
}
@media screen and (min-width: 900px) {
  .home .c-product__img {
    width: calc(290px + 110 * (100vw - 900px) / 1019);
  }
}
@media screen and (min-width: 1919px) {
  .home .c-product__img {
    width: 22.2222222222rem;
  }
}
@media screen and (min-width: 900px) {
  .home .c-product__img {
    height: calc(290px + 110 * (100vw - 900px) / 1019);
  }
}
@media screen and (min-width: 1919px) {
  .home .c-product__img {
    height: 22.2222222222rem;
  }
}
.home .c-product__img .custom-sale-label {
  position: absolute;
  left: 0;
  top: 0;
  color: #E8380D !important;
  font-weight: bold;
  padding: 0.25rem 1rem;
  z-index: 1;
}
.home .c-product__img img {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (max-width: 900px) {
  .home .c-product__img img {
    width: 100%;
  }
}
.home .c-product__img img:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.home .c-product__img:hover {
  border: 1px solid #ffffff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  border: 0;
  margin: 0;
  max-width: 100%;
  height: auto;
  display: inline-block;
}

img.aligncenter {
  display: block;
  margin: 15px auto;
}

.d-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.d-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

p {
  margin: 0;
  padding: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
  text-align: justify;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  opacity: 1;
}
@media only screen and (min-width: 768px) {
  a:hover {
    opacity: 0.7;
    color: inherit;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
}

a:hover {
  cursor: pointer;
}

.no_hover > a {
  pointer-events: none;
  cursor: none;
}

aside {
  margin-right: 1rem;
}
aside .button_area {
  background-color: #fff;
}

.l-container {
  width: 1400px; /* 常に1400pxの幅を設定 */
  max-width: 100%; /* 最大幅はビューポートの100% */
  margin: 0 auto; /* 中央揃え */
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* パディングとボーダーを含める */
}

.txt_16 {
  font-size: 0.4444444444rem;
}
@media screen and (min-width: 350px) {
  .txt_16 {
    font-size: calc(8px + 8 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .txt_16 {
    font-size: 0.8888888889rem;
  }
}

.txt_17 {
  font-size: 0.4444444444rem;
}
@media screen and (min-width: 350px) {
  .txt_17 {
    font-size: calc(8px + 9 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .txt_17 {
    font-size: 0.9444444444rem;
  }
}

.txt_14 {
  font-size: 0.4444444444rem;
}
@media screen and (min-width: 350px) {
  .txt_14 {
    font-size: calc(8px + 6 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .txt_14 {
    font-size: 0.7777777778rem;
  }
}

.root_font {
  font-size: 18px !important;
}
.root_font a {
  font-size: 18px !important;
}

.normal_txt {
  padding-left: 0.5rem;
  font-size: 0.5555555556rem;
}
@media screen and (min-width: 350px) {
  .normal_txt {
    font-size: calc(10px + 8 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .normal_txt {
    font-size: 1rem;
  }
}

.text_center {
  text-align: center;
}

.text_right {
  text-align: right;
}
.text_right .img_box img {
  border-radius: 30px 0 0 30px;
  overflow: hidden;
}

.text_left {
  text-align: left;
}
.text_left .img_box img {
  border-radius: 0 30px 30px 0;
  overflow: hidden;
}

.black_box {
  background-color: #000000;
  color: #ffffff;
}

.white_box {
  background-color: #ffffff;
  color: #000000;
}

.red_txt {
  color: #E8380D;
}

.text-shadow {
  text-shadow: 2px 2px 1px rgb(0, 0, 0);
}

.rotate_90 {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.parent {
  text-align: center;
}

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

.select2-results__option[aria-selected], .select2-results__option[data-selected],
.select2-container--default .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-results__option--highlighted[data-selected] {
  color: #000000 !important;
}

/*ボタン*/
.more_btn_box {
  text-align: center;
  position: relative;
}

.white_more_btn {
  position: relative;
  background-color: #ffffff;
  font-weight: 500;
  display: block;
  color: #000000;
  margin: auto;
  width: 16.6666666667rem;
  line-height: 2.6666666667rem;
  height: 2.6666666667rem;
}
@media screen and (min-width: 350px) {
  .white_more_btn {
    width: calc(300px + 100 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .white_more_btn {
    width: 22.2222222222rem;
  }
}
@media screen and (min-width: 350px) {
  .white_more_btn {
    line-height: calc(48px + 17 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .white_more_btn {
    line-height: 3.6111111111rem;
  }
}
@media screen and (min-width: 350px) {
  .white_more_btn {
    height: calc(48px + 17 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .white_more_btn {
    height: 3.6111111111rem;
  }
}
.white_more_btn:after {
  content: "";
  display: block;
  position: absolute;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  right: -25px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 54px;
  height: 7px;
  background-image: url(../images/ico/right_arrow.png);
  background-size: contain;
}
@media only screen and (max-width: 767px) {
  .white_more_btn:after {
    right: -15px;
    width: 31px;
  }
}
.white_more_btn:hover {
  color: #000000;
}
.white_more_btn:hover:after {
  right: -40px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media only screen and (max-width: 767px) {
  .white_more_btn:hover:after {
    right: -15px;
  }
}

#yith-wcwl-message {
  color: #000000;
}

.archive .c-product__img:hover,
.category .c-product__img:hover,
.single .c-product__img:hover {
  border: 1px solid #ffffff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.card-container .products {
  display: grid;
  grid-template-columns: repeat(auto-fit, 300px);
  grid-column-gap: 65px;
  grid-row-gap: 65px;
  max-width: 1400px;
  margin: 0 auto;
}
@media screen and (max-width: 1444px) {
  .card-container .products {
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
  }
}

.c-product-inner {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
}

.home .archive_btn {
  display: none;
}

.archive .c-product__price,
.category .c-product__price {
  display: none;
}
.archive .p-product-list-container,
.category .p-product-list-container {
  padding: 0 25px;
}
.archive .archive_btn a,
.archive .category a,
.category .archive_btn a,
.category .category a {
  display: block;
  width: 100%;
}

.page_title_ico {
  position: relative;
  display: block;
  text-align: center;
  margin: auto;
  font-size: 1.1111111111rem;
}
@media screen and (min-width: 350px) {
  .page_title_ico {
    font-size: calc(20px + 10 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .page_title_ico {
    font-size: 1.6666666667rem;
  }
}
.page_title_ico span {
  font-size: 1rem;
}
@media screen and (min-width: 350px) {
  .page_title_ico span {
    font-size: calc(18px + 4 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .page_title_ico span {
    font-size: 1.2222222222rem;
  }
}
.page_title_ico:before {
  content: "";
  background-image: url(../images/ico/page_title_ico.png);
  display: block;
  width: 42px;
  height: 17px;
  background-repeat: no-repeat;
  position: absolute;
  top: -1.3888888889rem;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
}
@media screen and (min-width: 350px) {
  .page_title_ico:before {
    top: calc(-25px + -10 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .page_title_ico:before {
    top: -1.9444444444rem;
  }
}

.p_ico,
.f_ico,
.custom-sale-label {
  padding: 1.5px 10px !important;
  border-radius: 20px;
  text-align: center;
  margin-right: 1rem;
  margin-bottom: 1rem;
}

.p_ico {
  display: none;
}

.f_ico {
  display: none;
}

.popular .p_ico {
  display: block;
  background-color: #E8380D;
}

.featured .f_ico {
  display: block;
  background-color: #EF9630;
}

.l-post {
  padding: 1.1111111111rem;
}
@media screen and (min-width: 350px) {
  .l-post {
    padding: calc(20px + 60 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .l-post {
    padding: 4.4444444444rem;
  }
}
.l-post p {
  margin-bottom: 1rem;
}

/*会員ページ*/
.mypage .l-inner {
  background-color: #ffffff;
  color: #000000;
}

/*プライバシーポリシー*/
.privacy-policy .p-privacy-policy {
  background-image: none;
}
.privacy-policy .p-privacy-policy h2 {
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .privacy-policy .p-privacy-policy h2 {
    margin-bottom: 30px;
  }
}
.privacy-policy .p-privacy-policy a {
  color: #4581DC;
  text-decoration: underline;
}
.privacy-policy ul {
  padding-left: 24px;
}
.privacy-policy ul li {
  text-indent: -1em;
  padding-left: 1em;
}

/*特定商取引法ページ用テーブル*/
.tradelaw .p-tokusyo {
  background-image: none;
}
.tradelaw .p-tokusyo h2 {
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .tradelaw .p-tokusyo h2 {
    margin-bottom: 30px;
  }
}
.tradelaw .wp-block-table td,
.tradelaw .wp-block-table th {
  border: none;
  padding: 1rem 2rem;
  border-bottom: 1px solid #7B7B7B;
}
@media only screen and (max-width: 767px) {
  .tradelaw .wp-block-table td,
  .tradelaw .wp-block-table th {
    display: block;
    width: 100%;
    padding: 0.5rem 1rem;
  }
}
.tradelaw .wp-block-table {
  margin-bottom: 30px;
}
.tradelaw .wp-block-table th {
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .tradelaw .wp-block-table th {
    background-color: #999999 !important;
  }
}

.p-category-image--info,
.product-tag--info,
.p-product-detail__description {
  line-height: 1.6666666667rem;
}
@media screen and (min-width: 350px) {
  .p-category-image--info,
  .product-tag--info,
  .p-product-detail__description {
    line-height: calc(30px + 6 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .p-category-image--info,
  .product-tag--info,
  .p-product-detail__description {
    line-height: 2rem;
  }
}

.woocommerce-checkout #payment div.payment_box textarea {
  width: 100% !important;
}

/* -----------------------------------------------
* layout エントリーポイント
-------------------------------------------------- */
/* --------------------------------
l-header
----------------------------------- */
/* --------------------------------
l-inner
----------------------------------- */
.l-inner {
  width: 1400px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1400px) {
  .l-inner {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .l-inner {
    padding: 20px;
  }
}

.m-inner {
  width: 1280px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 50px;
}
@media only screen and (max-width: 767px) {
  .m-inner {
    padding: 20px;
  }
}

/* --------------------------------
l-shopping
----------------------------------- */
.l-shopping {
  font-size: 0.7777777778rem;
  background-color: #fff;
  color: #000000;
  padding-top: 2.2222222222rem;
  padding-left: 1.1111111111rem;
  padding-right: 1.1111111111rem;
  padding-bottom: 2.2222222222rem;
}
@media screen and (min-width: 350px) {
  .l-shopping {
    font-size: calc(14px + 2 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .l-shopping {
    font-size: 0.8888888889rem;
  }
}
@media screen and (min-width: 350px) {
  .l-shopping {
    padding-top: calc(40px + 24 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .l-shopping {
    padding-top: 3.5555555556rem;
  }
}
@media screen and (min-width: 350px) {
  .l-shopping {
    padding-left: calc(20px + 130 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .l-shopping {
    padding-left: 8.3333333333rem;
  }
}
@media screen and (min-width: 350px) {
  .l-shopping {
    padding-right: calc(20px + 130 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .l-shopping {
    padding-right: 8.3333333333rem;
  }
}
@media screen and (min-width: 350px) {
  .l-shopping {
    padding-bottom: calc(40px + 16 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .l-shopping {
    padding-bottom: 3.1111111111rem;
  }
}
.l-shopping a {
  color: #4581DC;
  text-decoration: underline;
}
.l-shopping h1 {
  color: #EF9630;
  border: 1px solid #EF9630;
  padding: 12px;
  font-size: 1.3888888889rem;
  text-align: center;
  margin-bottom: 32px;
}
.l-shopping h2 {
  font-size: 1.3888888889rem;
  color: #EF9630;
  margin-bottom: 16px;
}
.l-shopping p {
  line-height: 1.563;
}
.l-shopping fieldset {
  border: 1px solid #7B7B7B;
  padding: 10px;
  margin-bottom: 1em;
}
.l-shopping input, .l-shopping textarea {
  font-size: 0.8888888889rem;
}
.l-shopping .sonypayment_agreement_message {
  width: 100%;
}
.l-shopping .woocommerce-SavedPaymentMethods-saveNew label {
  font-size: 0;
}
.l-shopping .woocommerce-SavedPaymentMethods-saveNew label:after {
  content: "入力したカード情報を登録する　※以前のカード情報は上書きされます";
  font-size: 0.7155555556rem;
}
@media screen and (min-width: 350px) {
  .l-shopping .woocommerce-SavedPaymentMethods-saveNew label:after {
    font-size: calc(12.88px + 1.84 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .l-shopping .woocommerce-SavedPaymentMethods-saveNew label:after {
    font-size: 0.8177777778rem;
  }
}

/* -----------------------------------------------
* Modules エントリーポイント
-------------------------------------------------- */
/*=============================
.btn-trigger
=============================*/
#menu-btn {
  cursor: pointer;
  margin: 0 5px;
  margin-left: 0.2777777778rem;
  margin-right: 0.2777777778rem;
}
@media screen and (min-width: 350px) {
  #menu-btn {
    margin-left: calc(5px + 5 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  #menu-btn {
    margin-left: 0.5555555556rem;
  }
}
@media screen and (min-width: 350px) {
  #menu-btn {
    margin-right: calc(5px + 5 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  #menu-btn {
    margin-right: 0.5555555556rem;
  }
}
#menu-btn .btn-trigger {
  position: relative;
  width: 1.1111111111rem;
  height: 0.8888888889rem;
}
@media screen and (min-width: 350px) {
  #menu-btn .btn-trigger {
    width: calc(20px + 18 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  #menu-btn .btn-trigger {
    width: 2.1111111111rem;
  }
}
@media screen and (min-width: 350px) {
  #menu-btn .btn-trigger {
    height: calc(16px + 12 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  #menu-btn .btn-trigger {
    height: 1.5555555556rem;
  }
}
@media only screen and (max-width: 767px) {
  #menu-btn .btn-trigger {
    height: 18px !important;
  }
}
#menu-btn .btn-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #000000;
  border-radius: 4px;
}
@media only screen and (max-width: 767px) {
  #menu-btn .btn-trigger span {
    height: 2px;
  }
}
#menu-btn .btn-trigger, #menu-btn .btn-trigger span {
  display: inline-block;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#menu-btn .btn-trigger span:nth-of-type(1) {
  top: 0;
}
#menu-btn .btn-trigger span:nth-of-type(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#menu-btn .btn-trigger span:nth-of-type(3) {
  bottom: 0;
}

/*=============================
#sp-btn
=============================*/
#sp-btn.active span:nth-of-type(1) {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
          transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  top: 50%;
  left: 50%;
}

#sp-btn.active span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  -webkit-animation: active-sp-btn-bar02 0.8s forwards;
  animation: active-sp-btn-bar02 0.8s forwards;
}

@-webkit-keyframes active-sp-btn-bar02 {
  100% {
    height: 0;
  }
}
@keyframes active-sp-btn-bar02 {
  100% {
    height: 0;
  }
}
#sp-btn.active span:nth-of-type(3) {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
          transform: translateX(-50%) translateY(-50%) rotate(45deg);
  top: 50%;
  left: 50%;
}

/* --------------------------------
c-object
----------------------------------- */
.white_circle {
  width: 2.2222222222rem;
  height: 2.2222222222rem;
  line-height: 2.2222222222rem;
  border-radius: 50%;
  text-align: center;
  background-color: #ffffff;
}
@media screen and (min-width: 350px) {
  .white_circle {
    width: calc(40px + 30 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .white_circle {
    width: 3.8888888889rem;
  }
}
@media screen and (min-width: 350px) {
  .white_circle {
    height: calc(40px + 30 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .white_circle {
    height: 3.8888888889rem;
  }
}
@media screen and (min-width: 350px) {
  .white_circle {
    line-height: calc(40px + 30 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .white_circle {
    line-height: 3.8888888889rem;
  }
}

.center_box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.c-product__price {
  font-size: 1.1111111111rem;
}
@media screen and (min-width: 350px) {
  .c-product__price {
    font-size: calc(20px + 6 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .c-product__price {
    font-size: 1.4444444444rem;
  }
}

/* --------------------------------
c-to-top
----------------------------------- */
#page-top {
  position: fixed;
  right: 15px;
  z-index: 90;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
#page-top a {
  width: 1.6666666667rem;
  height: 1.6666666667rem;
  background-color: #ffffff;
  border: 1px solid #ffffff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 50%;
  position: relative;
}
@media screen and (min-width: 350px) {
  #page-top a {
    width: calc(30px + 50 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  #page-top a {
    width: 4.4444444444rem;
  }
}
@media screen and (min-width: 350px) {
  #page-top a {
    height: calc(30px + 50 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  #page-top a {
    height: 4.4444444444rem;
  }
}
#page-top a img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 0.5555555556rem;
  height: 0.3055555556rem;
}
@media screen and (min-width: 350px) {
  #page-top a img {
    width: calc(10px + 10 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  #page-top a img {
    width: 1.1111111111rem;
  }
}
@media screen and (min-width: 350px) {
  #page-top a img {
    height: calc(5.5px + 5.5 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  #page-top a img {
    height: 0.6111111111rem;
  }
}
#page-top a .off_arrow {
  opacity: 1;
}
#page-top a .on_arrow {
  opacity: 0;
}
#page-top a:hover {
  cursor: pointer;
  background-color: #000000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#page-top a:hover .off_arrow {
  opacity: 0;
}
#page-top a:hover .on_arrow {
  opacity: 1;
}

/* -----------------------------------------------
* component エントリーポイント
-------------------------------------------------- */
/* --------------------------------
p-header
----------------------------------- */
.p-header {
  /*position: fixed;*/
  top: 0;
  background-color: rgba(255, 255, 255, 0.9);
  width: 100%;
  z-index: 100;
  color: #000000;
}
.p-header #header-bar {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 1.1111111111rem;
  padding-right: 1.1111111111rem;
  padding-top: 0.5555555556rem;
  padding-bottom: 0.5555555556rem;
}
@media screen and (min-width: 350px) {
  .p-header #header-bar {
    padding-left: calc(20px + 30 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .p-header #header-bar {
    padding-left: 2.7777777778rem;
  }
}
@media screen and (min-width: 350px) {
  .p-header #header-bar {
    padding-right: calc(20px + 30 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .p-header #header-bar {
    padding-right: 2.7777777778rem;
  }
}
@media screen and (min-width: 350px) {
  .p-header #header-bar {
    padding-top: calc(10px + 0 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .p-header #header-bar {
    padding-top: 0.5555555556rem;
  }
}
@media screen and (min-width: 350px) {
  .p-header #header-bar {
    padding-bottom: calc(10px + 0 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .p-header #header-bar {
    padding-bottom: 0.5555555556rem;
  }
}
.p-header #header-bar #logo-mark {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-header #header-bar #logo-mark #p-header--logo img {
  width: 2.2222222222rem;
  height: auto;
}
@media screen and (min-width: 350px) {
  .p-header #header-bar #logo-mark #p-header--logo img {
    width: calc(40px + 75 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .p-header #header-bar #logo-mark #p-header--logo img {
    width: 6.3888888889rem;
  }
}
.p-header #header-bar #logo-mark #shop_description {
  font-size: 0.4444444444rem;
  line-height: 0.6666666667rem;
  margin-left: 0.4444444444rem;
  color: #000000;
}
@media screen and (min-width: 350px) {
  .p-header #header-bar #logo-mark #shop_description {
    font-size: calc(8px + 10 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .p-header #header-bar #logo-mark #shop_description {
    font-size: 1rem;
  }
}
@media screen and (min-width: 350px) {
  .p-header #header-bar #logo-mark #shop_description {
    line-height: calc(12px + 12 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .p-header #header-bar #logo-mark #shop_description {
    line-height: 1.3333333333rem;
  }
}
@media screen and (min-width: 350px) {
  .p-header #header-bar #logo-mark #shop_description {
    margin-left: calc(8px + 10 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .p-header #header-bar #logo-mark #shop_description {
    margin-left: 1rem;
  }
}
.p-header #header-bar .header_right_box.d-flex {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: start;
      -ms-flex-align: start;
          align-items: start;
}
.p-header #header-bar .l-header__shop-nav-btn .white_circle {
  position: relative;
}
.p-header #header-bar .l-header__shop-nav-btn .white_circle .on_ico {
  display: none;
}
.p-header #header-bar .l-header__shop-nav-btn .white_circle:hover {
  background-color: #000000;
}
.p-header #header-bar .l-header__shop-nav-btn .white_circle:hover .on_ico {
  display: block;
}
.p-header #header-bar .l-header__shop-nav-btn .white_circle:hover .off_ico {
  display: none;
}
.p-header #header-bar .l-header__shop-nav-btn .white_circle a {
  font-size: 10px;
}
.p-header #header-bar .l-header__shop-nav-btn .white_circle .cart-badge {
  position: absolute;
  top: -10px;
  left: 80%;
}
.p-header #header-bar .l-header__shop-nav-btn.d-flex {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-header #header-bar .l-header__shop-nav-btn.d-flex a {
  position: relative;
  margin-left: 0.2777777778rem;
  margin-right: 0.2777777778rem;
}
@media screen and (min-width: 350px) {
  .p-header #header-bar .l-header__shop-nav-btn.d-flex a {
    margin-left: calc(5px + 5 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .p-header #header-bar .l-header__shop-nav-btn.d-flex a {
    margin-left: 0.5555555556rem;
  }
}
@media screen and (min-width: 350px) {
  .p-header #header-bar .l-header__shop-nav-btn.d-flex a {
    margin-right: calc(5px + 5 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .p-header #header-bar .l-header__shop-nav-btn.d-flex a {
    margin-right: 0.5555555556rem;
  }
}
.p-header #header-bar .l-header__shop-nav-btn.d-flex a .cart-badge {
  position: absolute;
  right: 5%;
  width: 0.6666666667rem;
  height: 0.6666666667rem;
  font-size: 0.4444444444rem;
  border-radius: 50%;
  background-color: #000000;
  color: #ffffff;
  z-index: 10;
}
@media screen and (min-width: 350px) {
  .p-header #header-bar .l-header__shop-nav-btn.d-flex a .cart-badge {
    width: calc(12px + 11 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .p-header #header-bar .l-header__shop-nav-btn.d-flex a .cart-badge {
    width: 1.2777777778rem;
  }
}
@media screen and (min-width: 350px) {
  .p-header #header-bar .l-header__shop-nav-btn.d-flex a .cart-badge {
    height: calc(12px + 11 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .p-header #header-bar .l-header__shop-nav-btn.d-flex a .cart-badge {
    height: 1.2777777778rem;
  }
}
@media screen and (min-width: 350px) {
  .p-header #header-bar .l-header__shop-nav-btn.d-flex a .cart-badge {
    font-size: calc(8px + 8 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .p-header #header-bar .l-header__shop-nav-btn.d-flex a .cart-badge {
    font-size: 0.8888888889rem;
  }
}
.p-header #header-bar .l-header__shop-nav-btn img {
  width: 1.2222222222rem;
  height: auto;
}
@media screen and (min-width: 350px) {
  .p-header #header-bar .l-header__shop-nav-btn img {
    width: calc(22px + 10 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .p-header #header-bar .l-header__shop-nav-btn img {
    width: 1.7777777778rem;
  }
}
.p-header #header-bar .mypage-btn img {
  width: 0.6666666667rem;
}
@media screen and (min-width: 350px) {
  .p-header #header-bar .mypage-btn img {
    width: calc(12px + 11 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .p-header #header-bar .mypage-btn img {
    width: 1.2777777778rem;
  }
}

.p-header.m_fixed {
  position: fixed;
  -webkit-transition: 1s;
  transition: 1s;
}

/* --------------------------------
p-header-nav
----------------------------------- */
.p-header--nav {
  visibility: hidden;
  overflow-y: scroll !important;
  height: 0;
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-header--nav #main_menu_container {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .p-header--nav #main_menu_container {
    width: 90%;
  }
}
.p-header--nav #main_menu_container .p-header-nav--inner {
  font-weight: 500;
  padding-top: 2.2222222222rem;
}
@media screen and (min-width: 350px) {
  .p-header--nav #main_menu_container .p-header-nav--inner {
    padding-top: calc(40px + 40 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .p-header--nav #main_menu_container .p-header-nav--inner {
    padding-top: 4.4444444444rem;
  }
}
.p-header--nav #main_menu_container .p-header-nav--inner nav {
  width: 1400px;
  max-width: 100%;
  margin: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}
@media screen and (max-width: 1400px) {
  .p-header--nav #main_menu_container .p-header-nav--inner nav {
    width: 100%;
  }
}
.p-header--nav #main_menu_container .p-header-nav--inner nav #menu-main_menu-1 > li > a {
  font-size: 1.1666666667rem;
  display: block;
  margin-bottom: 2rem;
}
@media screen and (min-width: 350px) {
  .p-header--nav #main_menu_container .p-header-nav--inner nav #menu-main_menu-1 > li > a {
    font-size: calc(21px + 4 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .p-header--nav #main_menu_container .p-header-nav--inner nav #menu-main_menu-1 > li > a {
    font-size: 1.3888888889rem;
  }
}
.p-header--nav #main_menu_container .p-header-nav--inner nav #menu-main_menu-1 .sub-menu a {
  display: block;
  width: 20.4444444444rem;
  height: 7.1111111111rem;
  background-size: contain;
  text-indent: -99999px;
  margin-bottom: 1rem;
}
@media screen and (min-width: 350px) {
  .p-header--nav #main_menu_container .p-header-nav--inner nav #menu-main_menu-1 .sub-menu a {
    width: calc(368px + 92 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .p-header--nav #main_menu_container .p-header-nav--inner nav #menu-main_menu-1 .sub-menu a {
    width: 25.5555555556rem;
  }
}
@media screen and (min-width: 350px) {
  .p-header--nav #main_menu_container .p-header-nav--inner nav #menu-main_menu-1 .sub-menu a {
    height: calc(128px + 32 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .p-header--nav #main_menu_container .p-header-nav--inner nav #menu-main_menu-1 .sub-menu a {
    height: 8.8888888889rem;
  }
}
.p-header--nav #main_menu_container .p-header-nav--inner nav #menu-main_menu-1 .sub-menu .for_steak a {
  background-image: url(../images/common/steak_menu_bnr.png);
}
.p-header--nav #main_menu_container .p-header-nav--inner nav #menu-main_menu-1 .sub-menu .for_slice a {
  background-image: url(../images/common/sukiyaki_menu_bnr.png);
}
.p-header--nav #main_menu_container .p-header-nav--inner nav #menu-main_menu-1 .sub-menu .for_yakiniku a {
  background-image: url(../images/common/yakiniku_menu_bnr.png);
}
.p-header--nav #main_menu_container .p-header-nav--inner nav #menu-main_menu-1 > .center_line > a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 10;
}
.p-header--nav #main_menu_container .p-header-nav--inner nav #menu-main_menu-1 > .center_line > a:before {
  content: "";
  width: 78px;
  height: 1px;
  margin-right: 1.5rem;
  display: block;
  background: #000000;
}
.p-header--nav #main_menu_container .p-header-nav--inner nav #menu-main_menu-2 > li > a,
.p-header--nav #main_menu_container .p-header-nav--inner nav #menu-sp-main_menu-2 > li > a {
  font-size: 1.1111111111rem;
  margin-top: 2rem;
  display: block;
}
@media screen and (min-width: 350px) {
  .p-header--nav #main_menu_container .p-header-nav--inner nav #menu-main_menu-2 > li > a,
  .p-header--nav #main_menu_container .p-header-nav--inner nav #menu-sp-main_menu-2 > li > a {
    font-size: calc(20px + 5 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .p-header--nav #main_menu_container .p-header-nav--inner nav #menu-main_menu-2 > li > a,
  .p-header--nav #main_menu_container .p-header-nav--inner nav #menu-sp-main_menu-2 > li > a {
    font-size: 1.3888888889rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-header--nav #main_menu_container .p-header-nav--inner nav #menu-main_menu-2 > li > a,
  .p-header--nav #main_menu_container .p-header-nav--inner nav #menu-sp-main_menu-2 > li > a {
    margin-top: 1rem;
  }
}
.p-header--nav #main_menu_container .p-header-nav--inner nav #menu-main_menu-2 > li:first-child > a,
.p-header--nav #main_menu_container .p-header-nav--inner nav #menu-sp-main_menu-2 > li:first-child > a {
  margin-top: 0;
}
.p-header--nav #main_menu_container .p-header-nav--inner nav #menu-main_menu-2 .sub-menu,
.p-header--nav #main_menu_container .p-header-nav--inner nav #menu-sp-main_menu-2 .sub-menu {
  margin-left: 50px;
}
.p-header--nav #main_menu_container .p-header-nav--inner nav #menu-main_menu-2 .sub-menu > li,
.p-header--nav #main_menu_container .p-header-nav--inner nav #menu-sp-main_menu-2 .sub-menu > li {
  margin-top: 1rem;
}
.p-header--nav #main_menu_container .p-header-nav--inner nav #menu-main_menu-2 .sub-menu > li a:before,
.p-header--nav #main_menu_container .p-header-nav--inner nav #menu-sp-main_menu-2 .sub-menu > li a:before {
  width: 18px;
}
.p-header--nav #main_menu_container .p-header-nav--inner nav #menu-main_menu-2 > li a,
.p-header--nav #main_menu_container .p-header-nav--inner nav #menu-sp-main_menu-2 > li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 10;
}
.p-header--nav #main_menu_container .p-header-nav--inner nav #menu-main_menu-2 > li a:before,
.p-header--nav #main_menu_container .p-header-nav--inner nav #menu-sp-main_menu-2 > li a:before {
  content: "";
  width: 78px;
  height: 1px;
  margin-right: 1.5rem;
  display: block;
  background: #000000;
}
.p-header--nav #main_menu_container .p-header-nav--inner nav #menu-main_menu-2 .toggle_btn a,
.p-header--nav #main_menu_container .p-header-nav--inner nav #menu-sp-main_menu-2 .toggle_btn a {
  position: relative;
  z-index: 20;
}
.p-header--nav #main_menu_container .p-header-nav--inner nav #menu-sp-main_menu-2 .products_menu--list .sub-menu li:first-child {
  margin-top: 1rem !important;
}
.p-header--nav #main_menu_container .p-header-nav--inner nav #menu-sp-main_menu-2 .sub-menu > li {
  margin-top: 0.8rem;
}
.p-header--nav #main_menu_container .p-header-nav--inner nav #menu-sp-main_menu-2 > li a:before {
  width: 17px;
}
.p-header--nav #main_menu_container .p-header-nav--inner nav #menu-sp-main_menu-2 .price_menu--list .sub-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-bottom: 1.5rem;
  margin-left: 0;
}
.p-header--nav #main_menu_container .p-header-nav--inner nav #menu-sp-main_menu-2 .price_menu--list li {
  margin-top: 1.5rem;
  width: 45%;
}
@media only screen and (max-width: 767px) {
  .p-header--nav #main_menu_container .p-header-nav--inner nav #menu-sp-main_menu-2 .price_menu--list li {
    margin-top: 0.5rem;
  }
}
.p-header--nav #main_menu_container .p-header-nav--inner nav #menu-sp-main_menu-2 .sub_no_line li a:before {
  width: 0;
}
.p-header--nav #main_menu_container .p-header-nav--inner nav #menu-sp-main_menu-2 .sub_no_line .sub-menu > li:first-child {
  margin-top: 2rem;
}
.p-header--nav #main_menu_container .p-header-nav--inner nav #menu-sp-main_menu-2 .sub_no_line .sub-menu > li:last-child {
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #707070;
}
.p-header--nav #main_menu_container .p-header-nav--inner nav #menu-sp-main_menu-2 .sub-menu {
  margin-left: 1rem;
}
.p-header--nav #main_menu_container .p-header-nav--inner nav #menu-main_menu-3 {
  margin-top: 4rem;
  /*&> li a {
      display: flex;
      align-items: center;
      &:before {
          content: "";
          width: 78px;
          height: 1px;
          margin-right: 2rem;
          display: block;
          background: #000000;
      }
  }*/
}
.p-header--nav #main_menu_container .p-header-nav--inner nav #menu-main_menu-3 li {
  margin-bottom: 2rem;
  margin-left: 100px;
}

.p-header--nav.active {
  visibility: visible;
  opacity: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  height: 100svh;
  background-color: rgba(255, 255, 255, 0.8156862745);
}
@media only screen and (max-width: 767px) {
  .p-header--nav.active {
    padding-bottom: 100px;
  }
}

.p-header-nav--inner.sp #menu-sp-main_menu-2 {
  width: 100%;
}
.p-header-nav--inner.sp #menu-sp-main_menu-2 > li {
  font-size: 21px;
  position: relative;
}
.p-header-nav--inner.sp #menu-sp-main_menu-2 > li a {
  display: block;
  width: 100%;
}
.p-header-nav--inner.sp #menu-sp-main_menu-2 .text_center a {
  margin-top: 0 !important;
  margin-bottom: 1rem;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 14px;
  font-weight: 400;
}
.p-header-nav--inner.sp #menu-sp-main_menu-2 .text_center a:before {
  width: 0 !important;
}
@media only screen and (max-width: 767px) {
  .p-header-nav--inner.sp #menu-sp-main_menu-2 .text_center a {
    margin-bottom: 0.5rem;
  }
}
.p-header-nav--inner.sp #menu-sp-main_menu-2 .accordion > a {
  width: 50%;
}
.p-header-nav--inner.sp #menu-sp-main_menu-2 .sub-menu {
  font-size: 16px;
}
.p-header-nav--inner.sp .toggle_btn {
  position: absolute !important;
  left: 90%;
  z-index: 20;
  /*&:after {
      transform: rotate(0deg);
      transition: 0.5s;
      content: url(../images/ico/open_btn.png);
      display: block;
      width: 26px;
      height: 26px;
      top: 0;
      position: absolute;
      left: 90%;
  }*/
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: block;
  background-image: url(../images/ico/open_btn.png);
  background-repeat: no-repeat;
  width: 26px !important;
  height: 26px;
  text-indent: -9999px;
}
.p-header-nav--inner.sp .active .toggle_btn {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.p-header-nav--inner.sp .sp_for_steak,
.p-header-nav--inner.sp .sp_for_slice,
.p-header-nav--inner.sp .sp_for_yakiniku {
  padding: 0.8rem 0.8rem 0 0.8rem;
  border-top: 1px solid #707070;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.p-header-nav--inner.sp .sp_for_steak:before,
.p-header-nav--inner.sp .sp_for_slice:before,
.p-header-nav--inner.sp .sp_for_yakiniku:before {
  width: 150px;
  height: 92px;
  position: absolute;
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
}
.p-header-nav--inner.sp .sp_for_steak a,
.p-header-nav--inner.sp .sp_for_slice a,
.p-header-nav--inner.sp .sp_for_yakiniku a {
  padding-left: 150px;
  height: 92px;
  width: 100%;
}
.p-header-nav--inner.sp .sp_for_steak:before {
  content: "";
  background-image: url(../images/common/sp_for_steak.png);
}
.p-header-nav--inner.sp .sp_for_yakiniku:before {
  content: "";
  background-image: url(../images/common/sp_for_yakiniku.png);
}
.p-header-nav--inner.sp .sp_for_slice:before {
  content: "";
  background-image: url(../images/common/sp_for_slice.png);
}
.p-header-nav--inner.sp .root_font a {
  font-size: 16px !important;
}

/* --------------------------------
p-footer
----------------------------------- */
footer {
  background-color: #393535;
  padding: 50px 0 0;
  margin-top: 2.2222222222rem;
}
@media screen and (min-width: 350px) {
  footer {
    margin-top: calc(40px + 80 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  footer {
    margin-top: 6.6666666667rem;
  }
}
footer .l-footer {
  padding-bottom: 1.6666666667rem;
}
@media screen and (min-width: 350px) {
  footer .l-footer {
    padding-bottom: calc(30px + 10 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  footer .l-footer {
    padding-bottom: 2.2222222222rem;
  }
}
footer .l-footer-inner {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap-reverse;
      -ms-flex-wrap: wrap-reverse;
          flex-wrap: wrap-reverse;
}
@media only screen and (max-width: 767px) {
  footer .l-footer-inner .l-footer-nav__menu {
    width: 300px !important;
    margin: auto;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
}
footer .l-footer-inner #footer_logo {
  width: 350px;
  text-align: center;
}
footer .l-footer-inner #footer_logo img {
  width: 10.1111111111rem;
}
@media screen and (min-width: 350px) {
  footer .l-footer-inner #footer_logo img {
    width: calc(182px + 0 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  footer .l-footer-inner #footer_logo img {
    width: 10.1111111111rem;
  }
}
footer .l-footer-inner #menu-footer_menu {
  padding-top: 1.1111111111rem;
  padding-bottom: 1.1111111111rem;
  padding-left: 60px;
}
@media screen and (min-width: 350px) {
  footer .l-footer-inner #menu-footer_menu {
    padding-top: calc(20px + 20 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  footer .l-footer-inner #menu-footer_menu {
    padding-top: 2.2222222222rem;
  }
}
@media screen and (min-width: 350px) {
  footer .l-footer-inner #menu-footer_menu {
    padding-bottom: calc(20px + 20 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  footer .l-footer-inner #menu-footer_menu {
    padding-bottom: 2.2222222222rem;
  }
}
@media screen and (max-width: 999px) {
  footer .l-footer-inner #menu-footer_menu {
    padding-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  footer .l-footer-inner #menu-footer_menu {
    padding-left: 0;
  }
}
footer .l-footer-inner #menu-footer_menu > li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: start;
      -ms-flex-align: start;
          align-items: start;
  margin-left: 35px;
}
@media screen and (max-width: 999px) {
  footer .l-footer-inner #menu-footer_menu > li {
    margin-left: 0;
  }
}
footer .l-footer-inner #menu-footer_menu > li > a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0.5rem;
}
footer .l-footer-inner #menu-footer_menu > li > a:before {
  content: "";
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 1px;
  display: block;
  width: 34px;
  background-color: #ffffff;
  margin-right: 1.5rem;
}
footer .l-footer-inner #menu-footer_menu .sub-menu {
  padding-left: 28px;
}
@media only screen and (max-width: 767px) {
  footer .l-footer-inner #menu-footer_menu .sub-menu {
    padding-left: 60px;
    margin-bottom: 1rem;
  }
}
footer .l-footer-inner #menu-footer_menu .sub-menu > li {
  margin-bottom: 0.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: start;
      -ms-flex-align: start;
          align-items: start;
}
footer .l-footer-inner #menu-footer_menu .sub-menu > li > a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .l-footer-inner #menu-footer_menu .sub-menu > li > a:before {
  content: "";
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 1px;
  display: block;
  width: 13px;
  background-color: #ffffff;
  margin-right: 1.5rem;
}
@media only screen and (max-width: 767px) {
  footer .l-footer-inner #menu-footer_menu .sub-menu > li > a:before {
    width: 30px;
    margin-right: 0.5rem;
  }
}
footer .l-footer-inner #menu-footer_menu .sub-menu > .flbx_st > a {
  -webkit-box-align: start;
  -webkit-align-items: start;
      -ms-flex-align: start;
          align-items: start;
  position: relative;
}
footer .l-footer-inner #menu-footer_menu .sub-menu > .flbx_st > a:before {
  position: relative;
  top: 10px;
}
@media only screen and (max-width: 767px) {
  footer .l-footer-inner .l-footer__info {
    width: 100%;
  }
  footer .l-footer-inner .l-footer__info #footer_logo {
    margin: auto;
  }
}
footer .l-footer-inner .l-footer__nav {
  width: 1040px;
  max-width: 100%;
}
footer .l-footer-inner .l-footer__nav #menu-footer_menu {
  width: 100%;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  border-left: 1px solid #707070;
}
@media screen and (max-width: 786px) {
  footer .l-footer-inner .l-footer__nav #menu-footer_menu {
    -webkit-box-pack: start;
    -webkit-justify-content: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}
@media screen and (max-width: 1389px) {
  footer .l-footer-inner .l-footer__nav #menu-footer_menu {
    border-left: none;
  }
}
@media only screen and (max-width: 767px) {
  footer .l-footer-inner .l-footer__nav {
    max-width: 350px;
    margin: 0 auto 40px;
  }
}
footer .l-footer-inner a {
  font-size: 0.7777777778rem;
}
@media screen and (min-width: 350px) {
  footer .l-footer-inner a {
    font-size: calc(14px + 2 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  footer .l-footer-inner a {
    font-size: 0.8888888889rem;
  }
}
footer .l-footer-inner #footer_description {
  max-width: 216px;
  font-size: 19px;
  margin: 1.5rem auto 0;
}
@media only screen and (max-width: 767px) {
  footer .l-footer-inner #footer_description {
    position: relative;
    left: 1.5rem;
  }
}
footer .l-footer__copyright {
  padding-top: 1.6666666667rem;
  padding-bottom: 1.6666666667rem;
  text-align: center;
  background-color: #000000;
  font-size: 12px;
}
@media screen and (min-width: 350px) {
  footer .l-footer__copyright {
    padding-top: calc(30px + 10 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  footer .l-footer__copyright {
    padding-top: 2.2222222222rem;
  }
}
@media screen and (min-width: 350px) {
  footer .l-footer__copyright {
    padding-bottom: calc(30px + 10 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  footer .l-footer__copyright {
    padding-bottom: 2.2222222222rem;
  }
}
footer #menu-footer_menu-2.d-flex {
  font-size: 14px;
  font-weight: 400;
}
footer #menu-footer_menu-2.d-flex li {
  margin: 10px 30px 30px 100px;
}
@media only screen and (max-width: 767px) {
  footer #menu-footer_menu-2.d-flex li {
    margin: 5px 0 5px;
    text-align: left;
  }
}

/* -----------------------------------------------
* Page エントリーポイント
-------------------------------------------------- */
/*-- top --*/
/* --------------------------------
p-top
----------------------------------- */
.home .products .product {
  width: 19.4444444444rem;
}
@media screen and (min-width: 350px) {
  .home .products .product {
    width: calc(350px + 250 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .home .products .product {
    width: 33.3333333333rem;
  }
}
.home #p-top-content2 .white_more_btn,
.home #p-top-content3 .white_more_btn,
.home #p-top-content4 .white_more_btn {
  margin-top: 0rem;
}
@media screen and (min-width: 350px) {
  .home #p-top-content2 .white_more_btn,
  .home #p-top-content3 .white_more_btn,
  .home #p-top-content4 .white_more_btn {
    margin-top: calc(0px + 60 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .home #p-top-content2 .white_more_btn,
  .home #p-top-content3 .white_more_btn,
  .home #p-top-content4 .white_more_btn {
    margin-top: 3.3333333333rem;
  }
}
@media only screen and (max-width: 767px) {
  .home .zoomIn_bg.is-animated {
    background-size: 95% !important;
  }
}
.home .woocommerce ul.products li.product, .home .woocommerce-page ul.products li.product {
  width: 16.1111111111rem;
  float: none;
  margin: 10px;
}
@media screen and (min-width: 900px) {
  .home .woocommerce ul.products li.product, .home .woocommerce-page ul.products li.product {
    width: calc(290px + 110 * (100vw - 900px) / 1019);
  }
}
@media screen and (min-width: 1919px) {
  .home .woocommerce ul.products li.product, .home .woocommerce-page ul.products li.product {
    width: 22.2222222222rem;
  }
}
@media screen and (max-width: 900px) {
  .home .woocommerce ul.products li.product, .home .woocommerce-page ul.products li.product {
    margin: 10px auto;
  }
}
.home h2 {
  letter-spacing: 0.2rem;
  font-size: 2.2777777778rem;
  margin-bottom: 1.6666666667rem;
}
@media screen and (min-width: 350px) {
  .home h2 {
    font-size: calc(41px + 24 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .home h2 {
    font-size: 3.6111111111rem;
  }
}
@media screen and (min-width: 350px) {
  .home h2 {
    margin-bottom: calc(30px + 50 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .home h2 {
    margin-bottom: 4.4444444444rem;
  }
}
.home .sub_title {
  font-size: 1.3333333333rem;
}
@media screen and (min-width: 350px) {
  .home .sub_title {
    font-size: calc(24px + 6 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .home .sub_title {
    font-size: 1.6666666667rem;
  }
}
.home .swiper-pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 2rem;
}
.home .swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 0);
  border: 1px solid #ffffff;
  width: 10px;
  height: 10px;
  opacity: 1;
  margin: 0 0.5rem !important;
}
.home .swiper-pagination-bullet-active {
  outline: 1px solid #ffffff;
  background-color: #ffffff;
  width: 15px;
  height: 15px;
  outline-offset: 5px;
}
.home .subtitle {
  font-size: 1.5rem;
  margin-bottom: 0.2777777778rem;
}
@media screen and (min-width: 350px) {
  .home .subtitle {
    font-size: calc(27px + 8 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .home .subtitle {
    font-size: 1.9444444444rem;
  }
}
@media screen and (min-width: 350px) {
  .home .subtitle {
    margin-bottom: calc(5px + 5 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .home .subtitle {
    margin-bottom: 0.5555555556rem;
  }
}
.home h3 {
  font-size: 1.7222222222rem;
  margin-bottom: 1.1111111111rem;
}
@media screen and (min-width: 350px) {
  .home h3 {
    font-size: calc(31px + 14 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .home h3 {
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 350px) {
  .home h3 {
    margin-bottom: calc(20px + 40 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .home h3 {
    margin-bottom: 3.3333333333rem;
  }
}
@media only screen and (max-width: 767px) {
  .home h3 {
    padding-left: 25px !important;
  }
}
.home .horn_ico {
  position: relative;
  margin-top: 2.2222222222rem;
}
@media screen and (min-width: 350px) {
  .home .horn_ico {
    margin-top: calc(40px + 20 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .home .horn_ico {
    margin-top: 3.3333333333rem;
  }
}
.home .horn_ico:before {
  content: "";
  position: absolute;
  display: block;
  background-image: url(../images/ico/title_ico.png);
  width: 83px;
  height: 23px;
  top: -10px;
  left: 50%;
  -webkit-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
  background-size: contain;
  background-repeat: no-repeat;
}
.home main .p-top-main {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .home main .p-top-main .swiper {
    height: 100svh;
  }
  .home main .p-top-main .swiper img {
    aspect-ratio: 4/3;
    height: 100svh;
    -o-object-fit: cover;
       object-fit: cover;
    overflow: hidden;
  }
}
.home main .p-top-main #fast_view {
  position: absolute;
  top: 45%;
  left: 50%;
  font-size: 2.2222222222rem;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 10;
}
@media screen and (min-width: 350px) {
  .home main .p-top-main #fast_view {
    font-size: calc(40px + 25 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .home main .p-top-main #fast_view {
    font-size: 3.6111111111rem;
  }
}
@media only screen and (max-width: 767px) {
  .home main .p-top-main #fast_view {
    width: 100%;
  }
}
.home main .p-top-main .main_subtitle {
  font-size: 1.6666666667rem;
}
@media screen and (min-width: 350px) {
  .home main .p-top-main .main_subtitle {
    font-size: calc(30px + 20 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .home main .p-top-main .main_subtitle {
    font-size: 2.7777777778rem;
  }
}
.home main .right_container .right_box {
  margin-left: 0rem;
}
@media screen and (max-width: 1139px) {
  .home main .right_container .right_box {
    width: 100%;
  }
}
@media screen and (min-width: 350px) {
  .home main .right_container .right_box {
    margin-left: calc(0px + 60 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .home main .right_container .right_box {
    margin-left: 3.3333333333rem;
  }
}
.home main .right_container .right_box .img_box {
  text-align: right;
}
@media screen and (max-width: 1139px) {
  .home main .right_container .right_box .img_box {
    margin-top: 30px;
    width: 100%;
  }
}
.home main .right_container .right_box .img_box img {
  border-radius: 30px 0 0 30px;
  overflow: hidden;
}
.home main .left_container .left_box {
  margin-right: 0rem;
}
@media screen and (max-width: 1139px) {
  .home main .left_container .left_box {
    width: 100%;
  }
}
@media screen and (min-width: 350px) {
  .home main .left_container .left_box {
    margin-right: calc(0px + 60 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .home main .left_container .left_box {
    margin-right: 3.3333333333rem;
  }
}
.home main .left_container .left_box .img_box {
  text-align: left;
}
@media screen and (max-width: 1139px) {
  .home main .left_container .left_box .img_box {
    margin-top: 30px;
    width: 100%;
  }
}
.home main .left_container .left_box .img_box img {
  border-radius: 0 30px 30px 0;
  overflow: hidden;
}
.home main .right_box,
.home main .left_box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: start;
      -ms-flex-align: start;
          align-items: start;
}
@media only screen and (max-width: 767px) {
  .home main .right_box,
  .home main .left_box {
    width: 100%;
  }
}
.home main .right_box .img_box,
.home main .left_box .img_box {
  position: relative;
}
.home main .right_box .img_box img,
.home main .left_box .img_box img {
  height: 100%;
}
@media screen and (max-width: 1380px) {
  .home main .right_box,
  .home main .left_box {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .home main .right_box .img_box img,
  .home main .left_box .img_box img {
    width: 800px;
    height: 550px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.home main .right_box .more_btn_box,
.home main .left_box .more_btn_box {
  margin-bottom: 0rem;
}
@media screen and (min-width: 350px) {
  .home main .right_box .more_btn_box,
  .home main .left_box .more_btn_box {
    margin-bottom: calc(0px + 30 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .home main .right_box .more_btn_box,
  .home main .left_box .more_btn_box {
    margin-bottom: 1.6666666667rem;
  }
}
@media screen and (max-width: 1380px) {
  .home main .right_box .more_btn_box,
  .home main .left_box .more_btn_box {
    margin-top: 1rem;
  }
}
.home #p-top-content2,
.home #p-top-content3,
.home #p-top-content4 {
  padding-top: 1.1111111111rem;
  padding-bottom: 2.2222222222rem;
}
@media screen and (max-width: 1380px) {
  .home #p-top-content2 .info_container,
  .home #p-top-content3 .info_container,
  .home #p-top-content4 .info_container {
    padding: 20px 15px 0;
  }
}
@media only screen and (max-width: 1380px) and (max-width: 767px) {
  .home #p-top-content2 .info_container,
  .home #p-top-content3 .info_container,
  .home #p-top-content4 .info_container {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .home #p-top-content2 .info_container,
  .home #p-top-content3 .info_container,
  .home #p-top-content4 .info_container {
    padding: 20px 0;
  }
}
@media only screen and (max-width: 767px) {
  .home #p-top-content2 .info_container h3,
  .home #p-top-content3 .info_container h3,
  .home #p-top-content4 .info_container h3 {
    padding: 0 25px;
  }
}
.home #p-top-content2 .info_container .subtitle,
.home #p-top-content3 .info_container .subtitle,
.home #p-top-content4 .info_container .subtitle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.5rem;
  /*&:before {
      content:"";
      display: block;
      background-image: url(../images/ico/subtitle_ico.png);
      width: 39px;
      height: 39px;
      background-size: contain;
      margin-right: 0.5rem;
  }*/
}
@media screen and (min-width: 350px) {
  .home #p-top-content2 .info_container .subtitle,
  .home #p-top-content3 .info_container .subtitle,
  .home #p-top-content4 .info_container .subtitle {
    font-size: calc(27px + 27 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .home #p-top-content2 .info_container .subtitle,
  .home #p-top-content3 .info_container .subtitle,
  .home #p-top-content4 .info_container .subtitle {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 767px) {
  .home #p-top-content2 .info_container .subtitle,
  .home #p-top-content3 .info_container .subtitle,
  .home #p-top-content4 .info_container .subtitle {
    padding: 0 20px;
  }
}
@media screen and (min-width: 350px) {
  .home #p-top-content2,
  .home #p-top-content3,
  .home #p-top-content4 {
    padding-top: calc(20px + 40 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .home #p-top-content2,
  .home #p-top-content3,
  .home #p-top-content4 {
    padding-top: 3.3333333333rem;
  }
}
@media screen and (min-width: 350px) {
  .home #p-top-content2,
  .home #p-top-content3,
  .home #p-top-content4 {
    padding-bottom: calc(40px + 20 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .home #p-top-content2,
  .home #p-top-content3,
  .home #p-top-content4 {
    padding-bottom: 3.3333333333rem;
  }
}
.home #p-top-content2 .img_box img,
.home #p-top-content3 .img_box img,
.home #p-top-content4 .img_box img {
  /*max-width: 1150px;*/
  width: 19.7777777778rem;
  height: auto;
  /*@media screen and (max-width:1139px) {
      width: 95%;
      height: auto;
  }*/
}
@media screen and (min-width: 350px) {
  .home #p-top-content2 .img_box img,
  .home #p-top-content3 .img_box img,
  .home #p-top-content4 .img_box img {
    width: calc(356px + 794 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .home #p-top-content2 .img_box img,
  .home #p-top-content3 .img_box img,
  .home #p-top-content4 .img_box img {
    width: 63.8888888889rem;
  }
}
.home #p-top-content2 .right_container,
.home #p-top-content3 .right_container,
.home #p-top-content4 .right_container {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 1139px) {
  .home #p-top-content2 .right_container,
  .home #p-top-content3 .right_container,
  .home #p-top-content4 .right_container {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.home #p-top-content2 .left_container,
.home #p-top-content3 .left_container,
.home #p-top-content4 .left_container {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 1139px) {
  .home #p-top-content2 .left_container,
  .home #p-top-content3 .left_container,
  .home #p-top-content4 .left_container {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.home #p-top-content2 #p-top-content2--inner,
.home #p-top-content2 #p-top-content3--inner,
.home #p-top-content2 #p-top-content4--inner,
.home #p-top-content3 #p-top-content2--inner,
.home #p-top-content3 #p-top-content3--inner,
.home #p-top-content3 #p-top-content4--inner,
.home #p-top-content4 #p-top-content2--inner,
.home #p-top-content4 #p-top-content3--inner,
.home #p-top-content4 #p-top-content4--inner {
  padding-top: 0rem;
  padding-bottom: 0rem;
}
@media screen and (min-width: 350px) {
  .home #p-top-content2 #p-top-content2--inner,
  .home #p-top-content2 #p-top-content3--inner,
  .home #p-top-content2 #p-top-content4--inner,
  .home #p-top-content3 #p-top-content2--inner,
  .home #p-top-content3 #p-top-content3--inner,
  .home #p-top-content3 #p-top-content4--inner,
  .home #p-top-content4 #p-top-content2--inner,
  .home #p-top-content4 #p-top-content3--inner,
  .home #p-top-content4 #p-top-content4--inner {
    padding-top: calc(0px + 100 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .home #p-top-content2 #p-top-content2--inner,
  .home #p-top-content2 #p-top-content3--inner,
  .home #p-top-content2 #p-top-content4--inner,
  .home #p-top-content3 #p-top-content2--inner,
  .home #p-top-content3 #p-top-content3--inner,
  .home #p-top-content3 #p-top-content4--inner,
  .home #p-top-content4 #p-top-content2--inner,
  .home #p-top-content4 #p-top-content3--inner,
  .home #p-top-content4 #p-top-content4--inner {
    padding-top: 5.5555555556rem;
  }
}
@media screen and (min-width: 350px) {
  .home #p-top-content2 #p-top-content2--inner,
  .home #p-top-content2 #p-top-content3--inner,
  .home #p-top-content2 #p-top-content4--inner,
  .home #p-top-content3 #p-top-content2--inner,
  .home #p-top-content3 #p-top-content3--inner,
  .home #p-top-content3 #p-top-content4--inner,
  .home #p-top-content4 #p-top-content2--inner,
  .home #p-top-content4 #p-top-content3--inner,
  .home #p-top-content4 #p-top-content4--inner {
    padding-bottom: calc(0px + 60 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .home #p-top-content2 #p-top-content2--inner,
  .home #p-top-content2 #p-top-content3--inner,
  .home #p-top-content2 #p-top-content4--inner,
  .home #p-top-content3 #p-top-content2--inner,
  .home #p-top-content3 #p-top-content3--inner,
  .home #p-top-content3 #p-top-content4--inner,
  .home #p-top-content4 #p-top-content2--inner,
  .home #p-top-content4 #p-top-content3--inner,
  .home #p-top-content4 #p-top-content4--inner {
    padding-bottom: 3.3333333333rem;
  }
}
.home #p-top-content2 #p-top-content2--inner,
.home #p-top-content3 #p-top-content2--inner,
.home #p-top-content4 #p-top-content2--inner {
  padding-top: 0;
}
.home #p-top-content2 .d-flex,
.home #p-top-content3 .d-flex,
.home #p-top-content4 .d-flex {
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}
@media screen and (max-width: 999px) {
  .home #p-top-content2 .d-flex,
  .home #p-top-content3 .d-flex,
  .home #p-top-content4 .d-flex {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
@media screen and (max-width: 999px) {
  .home #p-top-content3 .d-flex {
    -webkit-flex-wrap: wrap-reverse;
        -ms-flex-wrap: wrap-reverse;
            flex-wrap: wrap-reverse;
  }
}
.home #p-top-content1 {
  position: relative;
  padding-top: 2.2222222222rem;
  padding-bottom: 2.2222222222rem;
  padding-top: 9.7222222222rem;
  background-image: url(../images/bg/gold_dot_bg.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center -10%;
}
.home #p-top-content1 a.opcity_1:hover {
  opacity: 1;
}
.home #p-top-content1 #scroll_btn {
  position: absolute;
  top: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(90deg);
          transform: translateX(-50%) rotate(90deg);
  letter-spacing: 0.2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.home #p-top-content1 #scroll_btn:after {
  position: absolute;
  left: 100%;
  content: "";
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 2px;
  display: block;
  width: 57px;
  margin-left: 20px;
  background-color: #ffffff;
  -webkit-animation: scroll_bar 1s linear infinite;
          animation: scroll_bar 1s linear infinite;
}
@media screen and (min-width: 350px) {
  .home #p-top-content1 {
    padding-top: calc(40px + 40 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .home #p-top-content1 {
    padding-top: 4.4444444444rem;
  }
}
@media screen and (min-width: 350px) {
  .home #p-top-content1 {
    padding-bottom: calc(40px + 40 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .home #p-top-content1 {
    padding-bottom: 4.4444444444rem;
  }
}
@media screen and (min-width: 350px) {
  .home #p-top-content1 {
    padding-top: calc(175px + 17 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .home #p-top-content1 {
    padding-top: 10.6666666667rem;
  }
}
.home #p-top-content1 #p-top-content1--inner {
  background-image: url(../images/bg/top_kiwami_bg.png);
  background-repeat: no-repeat;
  background-size: 50%;
  background-position: -10% center;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .home #p-top-content1 #p-top-content1--inner {
    background-position: -100px 95%;
    padding-bottom: 60px;
    overflow: hidden;
  }
}
.home #p-top-content1 #p-top-content1--inner .cow_family {
  position: absolute;
  top: 0;
  right: 0;
  width: 14.5rem;
}
@media screen and (min-width: 350px) {
  .home #p-top-content1 #p-top-content1--inner .cow_family {
    width: calc(261px + 472 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .home #p-top-content1 #p-top-content1--inner .cow_family {
    width: 40.7222222222rem;
  }
}
@media only screen and (max-width: 767px) {
  .home #p-top-content1 #p-top-content1--inner .cow_family {
    position: relative;
    right: -40%;
    top: -125px;
    margin-bottom: -240px;
  }
}
.home #p-top-content1 #p-top-content1--inner .top_content_meat {
  width: 19.0555555556rem;
  margin: auto;
  margin-bottom: 3.3333333333rem;
}
@media screen and (min-width: 350px) {
  .home #p-top-content1 #p-top-content1--inner .top_content_meat {
    width: calc(343px + 433 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .home #p-top-content1 #p-top-content1--inner .top_content_meat {
    width: 43.1111111111rem;
  }
}
@media screen and (min-width: 350px) {
  .home #p-top-content1 #p-top-content1--inner .top_content_meat {
    margin-bottom: calc(60px + 10 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .home #p-top-content1 #p-top-content1--inner .top_content_meat {
    margin-bottom: 3.8888888889rem;
  }
}
.home #p-top-content1 .coontent_logo {
  margin: auto;
  position: relative;
  z-index: 10;
  width: 14.7777777778rem;
  margin-top: 1.6666666667rem;
  margin-bottom: 3.3333333333rem;
}
@media screen and (min-width: 350px) {
  .home #p-top-content1 .coontent_logo {
    width: calc(266px + 97 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .home #p-top-content1 .coontent_logo {
    width: 20.1666666667rem;
  }
}
@media screen and (min-width: 350px) {
  .home #p-top-content1 .coontent_logo {
    margin-top: calc(30px + 10 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .home #p-top-content1 .coontent_logo {
    margin-top: 2.2222222222rem;
  }
}
@media screen and (min-width: 350px) {
  .home #p-top-content1 .coontent_logo {
    margin-bottom: calc(60px + 20 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .home #p-top-content1 .coontent_logo {
    margin-bottom: 4.4444444444rem;
  }
}
.home #p-top-content4 .img_box {
  text-align: right;
}
.home #p-top-content4 .img_box img {
  border-radius: 30px 0 0 30px;
  overflow: hidden;
}
.home #p-top-content3,
.home #p-top-content6 {
  padding-top: 0;
  background-image: url(../images/bg/top_kiwami_bg.png);
  background-repeat: no-repeat;
  background-size: 50%;
  background-position: -10% center;
  position: relative;
}
.home #p-top-content3 {
  background-position: 110% top;
  background-size: 45%;
}
@media only screen and (max-width: 767px) {
  .home #p-top-content3 {
    background-size: 65%;
    background-position: 110% bottom;
  }
}
.home #p-top-content5--inner,
.home #p-top-content6--inner,
.home #p-top-content7--inner,
.home #p-top-content8--inner {
  padding-top: 2.2222222222rem;
  padding-bottom: 2.2222222222rem;
  max-width: 1400px;
  margin: auto;
}
@media screen and (min-width: 350px) {
  .home #p-top-content5--inner,
  .home #p-top-content6--inner,
  .home #p-top-content7--inner,
  .home #p-top-content8--inner {
    padding-top: calc(40px + 20 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .home #p-top-content5--inner,
  .home #p-top-content6--inner,
  .home #p-top-content7--inner,
  .home #p-top-content8--inner {
    padding-top: 3.3333333333rem;
  }
}
@media screen and (min-width: 350px) {
  .home #p-top-content5--inner,
  .home #p-top-content6--inner,
  .home #p-top-content7--inner,
  .home #p-top-content8--inner {
    padding-bottom: calc(40px + 20 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .home #p-top-content5--inner,
  .home #p-top-content6--inner,
  .home #p-top-content7--inner,
  .home #p-top-content8--inner {
    padding-bottom: 3.3333333333rem;
  }
}
.home #p-top-content5--inner .products,
.home #p-top-content6--inner .products,
.home #p-top-content7--inner .products,
.home #p-top-content8--inner .products {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}
@media screen and (max-width: 900px) {
  .home #p-top-content5--inner .products,
  .home #p-top-content6--inner .products,
  .home #p-top-content7--inner .products,
  .home #p-top-content8--inner .products {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.home #p-top-content5--inner .p-top-recommend,
.home #p-top-content6--inner .p-top-recommend,
.home #p-top-content7--inner .p-top-recommend,
.home #p-top-content8--inner .p-top-recommend {
  width: 100%;
}
.home #p-top-content6--inner .products {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.home #p-top-content6--inner .products img {
  width: 7.4444444444rem;
  height: 4.5555555556rem;
  /*width: 234px;
  height: 144px;*/
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 350px) {
  .home #p-top-content6--inner .products img {
    width: calc(134px + 100 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .home #p-top-content6--inner .products img {
    width: 13rem;
  }
}
@media screen and (min-width: 350px) {
  .home #p-top-content6--inner .products img {
    height: calc(82px + 62 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .home #p-top-content6--inner .products img {
    height: 8rem;
  }
}
.home #p-top-content5--inner,
.home #p-top-content6--inner {
  padding-top: 0;
}
.home #p-top-content5--inner .woocommerce-price-suffix,
.home #p-top-content7--inner .woocommerce-price-suffix {
  font-size: 0.6111111111rem;
}
@media screen and (min-width: 350px) {
  .home #p-top-content5--inner .woocommerce-price-suffix,
  .home #p-top-content7--inner .woocommerce-price-suffix {
    font-size: calc(11px + 9 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .home #p-top-content5--inner .woocommerce-price-suffix,
  .home #p-top-content7--inner .woocommerce-price-suffix {
    font-size: 1.1111111111rem;
  }
}
@media only screen and (max-width: 767px) {
  .home #p-top-content6 {
    background-image: none;
  }
}
.home .section_info {
  margin: auto;
  font-weight: 100;
  line-height: 2.2rem;
  letter-spacing: 0.1358rem;
  margin-bottom: 1.1111111111rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 16.6666666667rem;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 350px) {
  .home .section_info {
    margin-bottom: calc(20px + 10 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .home .section_info {
    margin-bottom: 1.6666666667rem;
  }
}
@media screen and (min-width: 350px) {
  .home .section_info {
    width: calc(300px + 250 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .home .section_info {
    width: 30.5555555556rem;
  }
}
@media only screen and (max-width: 767px) {
  .home .section_info {
    line-height: 2rem;
    letter-spacing: normal;
  }
}
.home .info_txt {
  text-align: justify;
  line-height: 2.2rem;
  width: 453px;
}
@media only screen and (max-width: 767px) {
  .home .info_txt {
    width: 100%;
    max-width: 453px;
    margin: 40px auto;
    padding: 0 25px;
  }
}
.home .product-tags-list a {
  display: block;
}
.home .c-product__summary {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  padding-left: 50px;
  margin-top: 1rem;
}
.home .c-product__summary .c-product__name {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.home .c-product__summary .c-arrow {
  position: absolute;
  top: 15px;
  left: 20px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #7B7B7B;
  display: block;
  background-image: url(../images/ico/product_arrow.png);
  background-position: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.home .c-product__summary.on_hover {
  color: #E2BD44;
}
.home .c-product__summary.on_hover .c-arrow {
  background-color: #ffffff;
  background-image: url(../images/ico/on_product_arrow.png);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.home .product-tag-item.white_more_btn {
  width: 620px;
  height: 5.5555555556rem;
  margin-bottom: 0.5555555556rem;
  padding-left: 5px;
}
@media screen and (min-width: 350px) {
  .home .product-tag-item.white_more_btn {
    height: calc(100px + 60 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .home .product-tag-item.white_more_btn {
    height: 8.8888888889rem;
  }
}
@media screen and (min-width: 350px) {
  .home .product-tag-item.white_more_btn {
    margin-bottom: calc(10px + 17 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .home .product-tag-item.white_more_btn {
    margin-bottom: 1.5rem;
  }
}
@media screen and (max-width: 1380px) {
  .home .product-tag-item.white_more_btn {
    width: 45%;
  }
}
@media screen and (max-width: 1180px) {
  .home .product-tag-item.white_more_btn {
    width: 80%;
  }
}
@media only screen and (max-width: 767px) {
  .home .product-tag-item.white_more_btn {
    width: 85%;
  }
}
.home .product-tag-item.white_more_btn a {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  width: 620px;
  height: 5.5555555556rem;
  font-weight: 500;
}
@media screen and (min-width: 350px) {
  .home .product-tag-item.white_more_btn a {
    height: calc(100px + 60 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .home .product-tag-item.white_more_btn a {
    height: 8.8888888889rem;
  }
}
@media screen and (max-width: 1380px) {
  .home .product-tag-item.white_more_btn a {
    width: 100%;
  }
}
.home .product-tag-item.white_more_btn a .tag-name {
  padding-left: 1rem;
  padding-right: 2rem;
  line-height: 2rem;
  margin-top: -1rem;
  font-size: 0.6666666667rem;
}
@media screen and (min-width: 350px) {
  .home .product-tag-item.white_more_btn a .tag-name {
    font-size: calc(12px + 12 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .home .product-tag-item.white_more_btn a .tag-name {
    font-size: 1.3333333333rem;
  }
}
@media only screen and (max-width: 767px) {
  .home .product-tag-item.white_more_btn a .tag-name {
    line-height: normal;
  }
}
.home .product-tag-item.white_more_btn img {
  width: 7.4444444444rem;
}
@media screen and (min-width: 350px) {
  .home .product-tag-item.white_more_btn img {
    width: calc(134px + 100 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .home .product-tag-item.white_more_btn img {
    width: 13rem;
  }
}
.home #p-top-content7--inner .product_price {
  display: block;
  width: 100%;
}
.home .p-top-price-filter ul.d-flex {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.home .p-top-price-filter ul.d-flex .price_box {
  border: 1px solid #ffffff;
  text-align: center;
  line-height: 80px;
  margin: 0 7.5px 15px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.home .p-top-price-filter ul.d-flex a {
  width: 260px;
  height: 80px;
  display: block;
}
.home .p-top-price-filter ul.d-flex a:hover {
  background-color: #ffffff;
  color: #000000;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.home #p-top-content7--inner {
  padding-top: 0;
}
.home #p-top-content7--inner .c-product__summary {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 0;
}
.home #p-top-content7--inner .best-selling-products .c-product__summary {
  padding-left: 70px;
}
@media only screen and (max-width: 767px) {
  .home #p-top-content7--inner .best-selling-products .c-product__summary {
    padding-left: 60px;
  }
}
.home #p-top-content7--inner .best-selling-products .c-rank {
  position: relative;
  position: absolute;
  left: 0;
}
.home #p-top-content7--inner .best-selling-products .c-rank:before {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
}
@media screen and (min-width: 350px) {
  .home #p-top-content7--inner .best-selling-products .c-rank:before {
    width: calc(45px + 14 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .home #p-top-content7--inner .best-selling-products .c-rank:before {
    width: 3.2777777778rem;
  }
}
@media screen and (min-width: 350px) {
  .home #p-top-content7--inner .best-selling-products .c-rank:before {
    height: calc(45px + 14 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .home #p-top-content7--inner .best-selling-products .c-rank:before {
    height: 3.2777777778rem;
  }
}
.home #p-top-content7--inner .best-selling-products li:nth-child(1) .c-rank:before {
  content: "";
  background-image: url(../images/ico/rank1.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.home #p-top-content7--inner .best-selling-products li:nth-child(2) .c-rank:before {
  content: "";
  background-image: url(../images/ico/rank2.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.home #p-top-content7--inner .best-selling-products li:nth-child(3) .c-rank:before {
  content: "";
  background-image: url(../images/ico/rank3.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.home #p-top-content8 #p-top-content8--inner {
  padding-top: 0;
  padding-bottom: 0;
}
.home #p-top-content8 #p-top-content8--inner .p-top-price-filter ul {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1100px;
  margin: auto;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}
@media screen and (max-width: 1099px) {
  .home #p-top-content8 #p-top-content8--inner .p-top-price-filter ul {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
@media only screen and (max-width: 767px) {
  .home #p-top-content8 #p-top-content8--inner .p-top-price-filter ul {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.home #p-top-content8 #p-top-content8--inner .p-top-price-filter ul li {
  width: 260px;
  margin-top: 0.5555555556rem;
  margin-bottom: 0.5555555556rem;
  margin-right: 1.3888888889rem;
  margin-left: 1.3888888889rem;
  margin: 20px 10px;
}
.home #p-top-content8 #p-top-content8--inner .p-top-price-filter ul li a {
  display: block;
  width: 100%;
}
@media screen and (max-width: 1099px) {
  .home #p-top-content8 #p-top-content8--inner .p-top-price-filter ul li {
    width: 28%;
  }
}
@media only screen and (max-width: 767px) {
  .home #p-top-content8 #p-top-content8--inner .p-top-price-filter ul li {
    width: 100%;
  }
}
@media screen and (min-width: 350px) {
  .home #p-top-content8 #p-top-content8--inner .p-top-price-filter ul li {
    margin-top: calc(10px + 10 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .home #p-top-content8 #p-top-content8--inner .p-top-price-filter ul li {
    margin-top: 1.1111111111rem;
  }
}
@media screen and (min-width: 350px) {
  .home #p-top-content8 #p-top-content8--inner .p-top-price-filter ul li {
    margin-bottom: calc(10px + 10 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .home #p-top-content8 #p-top-content8--inner .p-top-price-filter ul li {
    margin-bottom: 1.1111111111rem;
  }
}
@media screen and (min-width: 350px) {
  .home #p-top-content8 #p-top-content8--inner .p-top-price-filter ul li {
    margin-right: calc(25px + -15 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .home #p-top-content8 #p-top-content8--inner .p-top-price-filter ul li {
    margin-right: 0.5555555556rem;
  }
}
@media screen and (min-width: 350px) {
  .home #p-top-content8 #p-top-content8--inner .p-top-price-filter ul li {
    margin-left: calc(25px + -15 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .home #p-top-content8 #p-top-content8--inner .p-top-price-filter ul li {
    margin-left: 0.5555555556rem;
  }
}
.home #p-top-content8 #p-top-content8--inner .p-top-price-filter ul li:last-child:after {
  content: "";
  display: block;
  width: 260px;
}

/*-- archive --*/
/* --------------------------------
p-archive
----------------------------------- */
.archive .woocommerce-message {
  display: none;
}
.archive .products {
  margin-top: 0rem;
}
@media screen and (min-width: 350px) {
  .archive .products {
    margin-top: calc(0px + 40 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .archive .products {
    margin-top: 2.2222222222rem;
  }
}
.archive .price_txt {
  font-size: 1.3333333333rem;
}
@media screen and (min-width: 350px) {
  .archive .price_txt {
    font-size: calc(24px + 12 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .archive .price_txt {
    font-size: 2rem;
  }
}

.archive.product main {
  background-image: url(../images/bg/top_kiwami_bg.png);
  background-repeat: no-repeat;
  background-position: 110% bottom;
  background-size: 30%;
}
@media only screen and (max-width: 767px) {
  .archive.product main {
    background-image: none;
  }
}
.archive.product .p-archive-product {
  background-image: url(../images/bg/top_kiwami_bg.png);
  background-repeat: no-repeat;
  background-position: 110% bottom;
  background-size: 30%;
}
@media only screen and (max-width: 767px) {
  .archive.product .p-archive-product {
    background-image: none;
  }
}

main h2 {
  padding: 0 !important;
  font-size: 2.6666666667rem;
}
@media screen and (min-width: 350px) {
  main h2 {
    font-size: calc(48px + 17 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  main h2 {
    font-size: 3.6111111111rem;
  }
}
main h3 {
  padding: 0 !important;
  font-size: 1.2222222222rem;
}
@media screen and (min-width: 350px) {
  main h3 {
    font-size: calc(22px + 11 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  main h3 {
    font-size: 1.8333333333rem;
  }
}
main .c-title__txt {
  font-size: 1.5555555556rem;
}
@media screen and (min-width: 350px) {
  main .c-title__txt {
    font-size: calc(28px + 17 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  main .c-title__txt {
    font-size: 2.5rem;
  }
}
main .p-product-category-main-box > li > .p-category-info-container {
  margin: 25px;
}

/*.p-archive-product {
    background-image: url(../images/bg/top_kiwami_bg.png);
    background-repeat: no-repeat;
    background-size: 48%;
    background-position: 110% bottom;
}*/
.p-product-list-container .products .archive_btn {
  width: 300px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  position: relative;
  margin-top: 1rem;
}
.p-product-list-container .products .archive_btn a {
  display: block;
  width: 285px;
  height: 60px;
  background-color: #7B7B7B;
  position: absolute;
  right: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-product-list-container .products .archive_btn a:before {
  position: absolute;
  content: "";
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 1px;
  width: 30px;
  background-color: #ffffff;
  display: block;
  left: -15px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.p-product-list-container .products .archive_btn a:hover:before {
  left: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.p-product-list-container .products li {
  width: 300px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-product-list-container .products li .c-product__img {
  position: relative;
  width: 300px;
  height: 184px;
  margin-bottom: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0);
}
.p-product-list-container .products li .c-product__img .onsale,
.p-product-list-container .products li .c-product__img .custom-sale-label {
  position: absolute;
  left: 0;
  top: 0;
  color: #E8380D;
  font-weight: bold;
  padding: 0.25rem 1rem;
  background-color: rgba(255, 255, 255, 0.5);
}
.p-product-list-container .products li .c-product__img img {
  aspect-ratio: 300/184;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-product-list-container .products li .c-product__img:hover {
  border: 1px solid #ffffff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*-- category --*/
/* --------------------------------
p-category
----------------------------------- */
.archive .p-product-category-main h2 {
  font-size: 1rem;
}
@media screen and (min-width: 350px) {
  .archive .p-product-category-main h2 {
    font-size: calc(18px + 30 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .archive .p-product-category-main h2 {
    font-size: 2.6666666667rem;
  }
}
.archive .p-product-category-main .p-product-category-main__img {
  position: relative;
  overflow: hidden;
}
.archive .p-product-category-main .p-product-category-main__img .p-product-category-main__ttl {
  width: 15.2777777778rem;
  height: 4.4444444444rem;
  padding: 25px;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #000000;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 350px) {
  .archive .p-product-category-main .p-product-category-main__img .p-product-category-main__ttl {
    width: calc(275px + 525 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .archive .p-product-category-main .p-product-category-main__img .p-product-category-main__ttl {
    width: 44.4444444444rem;
  }
}
@media screen and (min-width: 350px) {
  .archive .p-product-category-main .p-product-category-main__img .p-product-category-main__ttl {
    height: calc(80px + 102 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .archive .p-product-category-main .p-product-category-main__img .p-product-category-main__ttl {
    height: 10.1111111111rem;
  }
}
.archive .p-product-category-main .p-product-category-main__img .c-breadcrumb {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media only screen and (max-width: 767px) {
  .archive .p-product-category-main .p-product-category-main__img .p-product-category-main__img--center {
    width: 800px;
    height: 50vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .archive .p-product-category-main .p-product-category-main__img .p-product-category-main__img--center img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.archive h3 {
  font-size: 1.1111111111rem;
  margin-bottom: 1rem;
}
@media screen and (min-width: 350px) {
  .archive h3 {
    font-size: calc(20px + 10 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .archive h3 {
    font-size: 1.6666666667rem;
  }
}
@media screen and (max-width: 1444px) {
  .archive h3 {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .archive h3 {
    margin-bottom: 0;
  }
}
.archive .p-product-category-main-box li {
  margin-bottom: 2.2222222222rem;
}
@media screen and (min-width: 350px) {
  .archive .p-product-category-main-box li {
    margin-bottom: calc(40px + 60 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .archive .p-product-category-main-box li {
    margin-bottom: 5.5555555556rem;
  }
}
.archive .p-product-category-main-box .d-flex {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.archive .p-product-category-main-box .d-flex .p-category-image--box {
  max-width: 800px;
}
@media only screen and (max-width: 767px) {
  .archive .p-product-category-main-box .d-flex .p-category-image--box {
    padding: 0 25px;
  }
}
.archive .p-product-category-main-box .d-flex .p-category-info-container {
  max-width: 700px;
}
@media screen and (max-width: 1469px) {
  .archive .p-product-category-main-box .d-flex .p-category-info-container {
    margin: auto;
  }
}
.archive .p-product-category-main-box .d-flex .p-category-info-container h3 {
  margin: 3rem auto 1.5rem;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 350px) {
  .archive .p-product-category-main-box .d-flex .p-category-info-container h3 {
    margin-bottom: calc(27px + 23 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .archive .p-product-category-main-box .d-flex .p-category-info-container h3 {
    margin-bottom: 2.7777777778rem;
  }
}
.archive .p-product-category-main-box .d-flex .p-category-info-container .p-category-image--info {
  max-width: 500px;
  margin: auto;
  font-size: 0.8888888889rem;
}
@media screen and (min-width: 350px) {
  .archive .p-product-category-main-box .d-flex .p-category-info-container .p-category-image--info {
    font-size: calc(16px + 4 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .archive .p-product-category-main-box .d-flex .p-category-info-container .p-category-image--info {
    font-size: 1.1111111111rem;
  }
}
@media only screen and (max-width: 767px) {
  .archive .p-product-category-main-box .d-flex .p-category-info-container .p-category-image--info {
    padding: 0 25px;
    margin-bottom: 30px;
  }
}
.archive .p-product-category-main-box li:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.archive .p-product-category-main-box li:nth-child(even) .p-category-image--box {
  position: relative;
  max-width: 1000px;
}
.archive .p-product-category-content {
  margin-top: 2.2222222222rem;
}
@media screen and (min-width: 350px) {
  .archive .p-product-category-content {
    margin-top: calc(40px + 60 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .archive .p-product-category-content {
    margin-top: 5.5555555556rem;
  }
}
.archive .card-container {
  padding: 0;
}

/*-- single --*/
/* --------------------------------
p-single
----------------------------------- */
/*-- 404 --*/
/* --------------------------------
entry-404
----------------------------------- */
/*-- 商品 --*/
/* --------------------------------
p-product
----------------------------------- */
.single main {
  background-image: url(../images/bg/top_kiwami_bg.png);
  background-repeat: no-repeat;
  background-position: -10% 38%;
  background-size: 40%;
  /* 通常価格に取り消し線が表示されるべき場合 */
  /* セール価格のスタイル */
  /* バリエーション商品の最小最大価格表示 */
  /* 期間指定されたセール価格 */
}
.single main .product_title {
  font-size: 1.2222222222rem;
}
@media screen and (min-width: 350px) {
  .single main .product_title {
    font-size: calc(22px + 12 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .single main .product_title {
    font-size: 1.8888888889rem;
  }
}
.single main .p-title-note {
  font-size: 1.2222222222rem;
}
@media screen and (min-width: 350px) {
  .single main .p-title-note {
    font-size: calc(22px + 8 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .single main .p-title-note {
    font-size: 1.6666666667rem;
  }
}
.single main .per_g_price {
  margin-bottom: 1rem;
}
@media only screen and (max-width: 767px) {
  .single main {
    background-image: none;
  }
}
.single main .wcpa_field_label,
.single main .product-assembly {
  font-size: 0.8888888889rem;
}
@media screen and (min-width: 350px) {
  .single main .wcpa_field_label,
  .single main .product-assembly {
    font-size: calc(16px + 2 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .single main .wcpa_field_label,
  .single main .product-assembly {
    font-size: 1rem;
  }
}
.single main .price .regular-price del {
  text-decoration: line-through;
  color: #7B7B7B !important; /* 色を適切に設定 */
  font-size: 0.8rem !important;
}
.single main .price .regular-price del bdi {
  font-size: 1.2rem !important;
}
.single main .price .sale-price {
  font-size: 1.2em;
  color: #E8380D !important;
}
.single main .price .regular-price span {
  font-weight: bold; /* 太字で表示 */
}
.single main .sale-period {
  font-size: 0.9em;
  color: #888;
}
.single main .onsale {
  display: none;
}

.woocommerce #content div.product div.images, .woocommerce div.product div.images, .woocommerce-page #content div.product div.images, .woocommerce-page div.product div.images {
  width: 100%;
  float: none;
}

@media only screen and (max-width: 767px) {
  .woocommerce div.product {
    padding-top: 16px;
  }
}
.woocommerce div.product .p-product-gallery {
  position: relative;
  z-index: 5;
}
.woocommerce div.product .p-product-gallery span.onsale {
  top: 10px;
  left: 10px;
  padding: 0;
}
.woocommerce div.product .p-product-detail {
  background-color: #fff;
  padding-top: 42px;
  padding-bottom: 42px;
  padding-right: 1.1111111111rem;
  padding-left: 1.1111111111rem;
  font-size: 0.8888888889rem;
  font-weight: normal;
}
@media screen and (min-width: 1199px) {
  .woocommerce div.product .p-product-detail {
    padding-right: calc(20px + 16 * (100vw - 1199px) / 200);
  }
}
@media screen and (min-width: 1399px) {
  .woocommerce div.product .p-product-detail {
    padding-right: 2rem;
  }
}
@media screen and (min-width: 1199px) {
  .woocommerce div.product .p-product-detail {
    padding-left: calc(20px + 16 * (100vw - 1199px) / 200);
  }
}
@media screen and (min-width: 1399px) {
  .woocommerce div.product .p-product-detail {
    padding-left: 2rem;
  }
}
.woocommerce div.product .p-product-detail .woocommerce-product-rating {
  margin-bottom: 8px;
  line-height: 1.5;
}
.woocommerce div.product .p-product-detail .woocommerce-product-rating .star-rating {
  height: 1.5em;
  line-height: 1.5;
  margin-top: 0;
}
.woocommerce div.product .p-product-detail .woocommerce-product-rating .star-rating:before {
  content: "SSSSS";
}
.woocommerce div.product .product_title {
  font-size: 1.3333333333rem;
  margin-bottom: 8px;
}
@media screen and (min-width: 1199px) {
  .woocommerce div.product .product_title {
    font-size: calc(24px + 9 * (100vw - 1199px) / 200);
  }
}
@media screen and (min-width: 1399px) {
  .woocommerce div.product .product_title {
    font-size: 1.8333333333rem;
  }
}
.woocommerce div.product .p-product-detail__price {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-left: 8px;
  padding-right: 8px;
  padding-bottom: 12px;
  padding-top: 40px;
  border-bottom: 1px dotted #7B7B7B;
  font-weight: 600;
}
.woocommerce div.product .p-product-detail__price .woocommerce-Price-amount.amount {
  font-size: 1.5rem;
  padding-right: 13px;
  line-height: 1.27;
}
@media screen and (min-width: 1199px) {
  .woocommerce div.product .p-product-detail__price .woocommerce-Price-amount.amount {
    font-size: calc(27px + 10 * (100vw - 1199px) / 200);
  }
}
@media screen and (min-width: 1399px) {
  .woocommerce div.product .p-product-detail__price .woocommerce-Price-amount.amount {
    font-size: 2.0555555556rem;
  }
}
.woocommerce div.product .p-product-detail__price .woocommerce-price-suffix {
  font-size: 0.7777777778rem;
  line-height: 1.27;
}
@media screen and (min-width: 1199px) {
  .woocommerce div.product .p-product-detail__price .woocommerce-price-suffix {
    font-size: calc(14px + 2 * (100vw - 1199px) / 200);
  }
}
@media screen and (min-width: 1399px) {
  .woocommerce div.product .p-product-detail__price .woocommerce-price-suffix {
    font-size: 0.8888888889rem;
  }
}
.woocommerce div.product .p-product-detail__price del {
  text-decoration: none;
}
.woocommerce div.product .p-product-detail__price del .woocommerce-Price-amount.amount {
  font-size: 0.9444444444rem;
  text-decoration: line-through;
  padding-right: 0;
}
@media screen and (min-width: 1199px) {
  .woocommerce div.product .p-product-detail__price del .woocommerce-Price-amount.amount {
    font-size: calc(17px + 10 * (100vw - 1199px) / 200);
  }
}
@media screen and (min-width: 1399px) {
  .woocommerce div.product .p-product-detail__price del .woocommerce-Price-amount.amount {
    font-size: 1.5rem;
  }
}
.woocommerce div.product .p-product-detail__price ins {
  text-decoration: none;
}
.woocommerce div.product .p-product-detail__cart {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  border-bottom: 1px dotted #7B7B7B;
  margin-bottom: 24px;
}
.woocommerce div.product .p-product-detail__cart form.cart {
  margin: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  align-items: center;
  padding-right: 0.8888888889rem;
  width: calc(100% - 70px);
}
@media screen and (min-width: 767px) {
  .woocommerce div.product .p-product-detail__cart form.cart {
    padding-right: calc(16px + 16 * (100vw - 767px) / 632);
  }
}
@media screen and (min-width: 1399px) {
  .woocommerce div.product .p-product-detail__cart form.cart {
    padding-right: 1.7777777778rem;
  }
}
@media only screen and (max-width: 499px) {
  .woocommerce div.product .p-product-detail__cart form.cart {
    width: calc(100% - 40px);
  }
}
.woocommerce div.product .p-product-detail__cart form.cart .quantity {
  margin-left: 5px;
  float: none;
  display: inline-block;
  margin-right: 0.8888888889rem;
}
@media screen and (min-width: 767px) {
  .woocommerce div.product .p-product-detail__cart form.cart .quantity {
    margin-right: calc(16px + 16 * (100vw - 767px) / 632);
  }
}
@media screen and (min-width: 1399px) {
  .woocommerce div.product .p-product-detail__cart form.cart .quantity {
    margin-right: 1.7777777778rem;
  }
}
.woocommerce div.product .p-product-detail__cart form.cart .quantity .qty {
  font-size: 0.8888888889rem;
}
@media screen and (min-width: 767px) {
  .woocommerce div.product .p-product-detail__cart form.cart .quantity .qty {
    font-size: calc(16px + 4 * (100vw - 767px) / 632);
  }
}
@media screen and (min-width: 1399px) {
  .woocommerce div.product .p-product-detail__cart form.cart .quantity .qty {
    font-size: 1.1111111111rem;
  }
}
.woocommerce div.product .p-product-detail__cart form.cart .button {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  float: none;
}
.woocommerce div.product .p-product-detail__cart .yith-wcwl-add-to-wishlist {
  margin-top: 0;
}
.woocommerce div.product .p-product-detail__cart .feedback {
  display: block;
  margin-top: 2em;
  font-size: 0.7777777778rem;
}
.woocommerce div.product .p-product-detail__cart a.add_to_wishlist.button.alt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-width: 1px;
  border-style: solid;
  opacity: 1;
  padding: 0;
  width: 54px;
  height: 54px;
}
@media only screen and (max-width: 499px) {
  .woocommerce div.product .p-product-detail__cart a.add_to_wishlist.button.alt {
    width: 40px;
    height: 40px;
  }
}
.woocommerce div.product .p-product-detail__cart a.add_to_wishlist.button.alt i {
  margin: 0;
  line-height: 1;
  font-size: 1.1111111111rem;
}
@media only screen and (max-width: 499px) {
  .woocommerce div.product .p-product-detail__cart a.add_to_wishlist.button.alt i {
    font-size: 0.8888888889rem;
  }
}
.woocommerce div.product .p-product-detail__cart p.out-of-stock {
  font-size: 1.3333333333rem;
  font-weight: 600;
  width: calc(100% - 70px);
  margin: 0;
}
@media only screen and (max-width: 499px) {
  .woocommerce div.product .p-product-detail__cart p.out-of-stock {
    width: calc(100% - 40px);
  }
}
.woocommerce div.product .p-product-detail__cart p.stock.available-on-backorder {
  font-size: 1em;
  font-weight: 600;
  margin-bottom: 1em;
}

.woocommerce-variation-description p {
  text-align: right;
  color: #E8380D;
}

.p-product--single {
  padding: 0 25px 0;
}

.product-tag--info,
.p-product-detail__description {
  font-size: 0.8888888889rem;
}
@media screen and (min-width: 350px) {
  .product-tag--info,
  .p-product-detail__description {
    font-size: calc(16px + 4 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .product-tag--info,
  .p-product-detail__description {
    font-size: 1.1111111111rem;
  }
}

.p-product-detail__tags {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  padding-bottom: 24px;
}
.p-product-detail__tags > a {
  display: inline-block;
  padding: 2px 14px;
  margin-right: 8px;
  margin-bottom: 8px;
  font-weight: 600;
}

.p-product-detail__sku {
  padding-top: 12px;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt {
  opacity: 1;
  font-size: 0.7777777778rem;
  border-radius: 0;
  width: 100%;
  max-width: 270px;
  padding: 21px 6px;
  background-color: #000000;
}

.p-product-spec {
  margin-top: 3rem;
  line-height: 1.333;
  font-size: 0.7777777778rem;
}
@media screen and (min-width: 991px) {
  .p-product-spec {
    font-size: calc(14px + 4 * (100vw - 991px) / 408);
  }
}
@media screen and (min-width: 1399px) {
  .p-product-spec {
    font-size: 1rem;
  }
}
.p-product-spec dl > div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px dashed #7B7B7B;
}
.p-product-spec dl > div dt, .p-product-spec dl > div dd {
  padding-top: 0.5555555556rem;
  padding-bottom: 0.5555555556rem;
}
@media screen and (min-width: 991px) {
  .p-product-spec dl > div dt, .p-product-spec dl > div dd {
    padding-top: calc(10px + 10 * (100vw - 991px) / 408);
  }
}
@media screen and (min-width: 1399px) {
  .p-product-spec dl > div dt, .p-product-spec dl > div dd {
    padding-top: 1.1111111111rem;
  }
}
@media screen and (min-width: 991px) {
  .p-product-spec dl > div dt, .p-product-spec dl > div dd {
    padding-bottom: calc(10px + 10 * (100vw - 991px) / 408);
  }
}
@media screen and (min-width: 1399px) {
  .p-product-spec dl > div dt, .p-product-spec dl > div dd {
    padding-bottom: 1.1111111111rem;
  }
}
.p-product-spec dl > div dt {
  width: 29%;
}
@media only screen and (max-width: 499px) {
  .p-product-spec dl > div dt {
    width: 112px;
  }
}
.p-product-spec dl > div dd {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 1em;
}

.p-product--single .l-inner.d-flex {
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}
.p-product--single .l-inner__left {
  max-width: 600px;
  position: relative;
  margin-bottom: 1rem;
}
@media screen and (max-width: 680px) {
  .p-product--single .l-inner__left {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
}
.p-product--single .l-inner__left .custom-sale-label {
  color: #E8380D;
}
.p-product--single .l-inner__left .woocommerce-product-gallery {
  position: relative;
}
@media screen and (max-width: 680px) {
  .p-product--single .l-inner__left .woocommerce-product-gallery .flex-control-thumbs {
    display: none;
  }
}
.p-product--single .l-inner__left .woocommerce-product-gallery__image {
  pointer-events: none;
}
.p-product--single .l-inner__left .flex-viewport {
  position: relative;
  max-height: 600px;
  margin-bottom: 30px;
}
.p-product--single .l-inner__left .flex-viewport img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 1rem;
}
.p-product--single .l-inner__left .flex-control-nav {
  max-width: 600px;
  display: grid;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  padding-left: 0;
  grid-template-columns: repeat(auto-fit, minmax(138px, 1fr));
  grid-row-gap: 15px;
  grid-column-gap: 15px;
}
.p-product--single .l-inner__left .flex-control-nav li {
  list-style: none;
  overflow: hidden;
  background-color: #ffffff;
}
.p-product--single .l-inner__left .flex-control-nav li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-product--single .l-inner__left .flex-control-nav::after {
  content: "";
  display: block;
  width: 30%;
}
.p-product--single .l-inner__left .flex-control-nav img {
  opacity: 0.5;
}
.p-product--single .l-inner__left .flex-control-nav .flex-active {
  opacity: 1;
}
.p-product--single .l-inner__left .flex-direction-nav {
  width: 100%;
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 10;
}
.p-product--single .l-inner__left .flex-direction-nav a {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  padding: 10px;
  position: relative;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  text-indent: -9999px;
  z-index: 20;
}
.p-product--single .l-inner__left .flex-nav-next {
  position: relative;
  right: -15px;
  z-index: 10;
}
.p-product--single .l-inner__left .flex-nav-next .flex-next {
  background-image: url(../images/ico/gray_right_ico.png);
}
.p-product--single .l-inner__left .flex-nav-prev {
  position: relative;
  left: -15px;
  z-index: 10;
}
.p-product--single .l-inner__left .flex-nav-prev .flex-prev {
  background-image: url(../images/ico/gray_left_ico.png);
}
.p-product--single .l-inner__left .product-tag {
  margin-top: 2.2222222222rem;
  margin-bottom: 2.2222222222rem;
}
@media screen and (min-width: 350px) {
  .p-product--single .l-inner__left .product-tag {
    margin-top: calc(40px + 40 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .p-product--single .l-inner__left .product-tag {
    margin-top: 4.4444444444rem;
  }
}
@media screen and (min-width: 350px) {
  .p-product--single .l-inner__left .product-tag {
    margin-bottom: calc(40px + 160 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .p-product--single .l-inner__left .product-tag {
    margin-bottom: 11.1111111111rem;
  }
}
.p-product--single .l-inner__left .product-tag .product-tag--img_box {
  text-align: center;
  margin-bottom: 30px;
}
.p-product--single .l-inner__left .p-product-detail__description .l-editor {
  margin-top: 2.2222222222rem;
}
@media screen and (min-width: 350px) {
  .p-product--single .l-inner__left .p-product-detail__description .l-editor {
    margin-top: calc(40px + 160 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .p-product--single .l-inner__left .p-product-detail__description .l-editor {
    margin-top: 11.1111111111rem;
  }
}
.p-product--single .l-inner__left .p-product-detail__description .l-editor .product-tag--img {
  text-align: center;
  margin-top: 1.6666666667rem;
  margin-bottom: 1.6666666667rem;
}
@media screen and (min-width: 350px) {
  .p-product--single .l-inner__left .p-product-detail__description .l-editor .product-tag--img {
    margin-top: calc(30px + 30 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .p-product--single .l-inner__left .p-product-detail__description .l-editor .product-tag--img {
    margin-top: 3.3333333333rem;
  }
}
@media screen and (min-width: 350px) {
  .p-product--single .l-inner__left .p-product-detail__description .l-editor .product-tag--img {
    margin-bottom: calc(30px + 30 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .p-product--single .l-inner__left .p-product-detail__description .l-editor .product-tag--img {
    margin-bottom: 3.3333333333rem;
  }
}
.p-product--single .l-inner__left .p-product-detail__description .l-editor .p-product-detail--img_box {
  margin-bottom: 30px;
}
.p-product--single .l-inner__left .p-product-detail__description .l-editor .p-product-detail--img_box img {
  display: block;
  width: 100%;
  margin: auto;
}
.p-product--single .l-inner__left .p-product-detail__description p {
  margin-bottom: 1rem;
}
.p-product--single .l-inner__left .p-product-gallery {
  position: relative;
}
.p-product--single .l-inner__left .p-product-gallery .custom-sale-label {
  position: absolute;
  left: 10px;
  top: 10px;
  background-color: red;
  color: #ffffff;
  font-size: 0.7777777778rem;
  z-index: 1;
}
@media screen and (min-width: 350px) {
  .p-product--single .l-inner__left .p-product-gallery .custom-sale-label {
    font-size: calc(14px + 3 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .p-product--single .l-inner__left .p-product-gallery .custom-sale-label {
    font-size: 0.9444444444rem;
  }
}
.p-product--single .l-inner__right {
  max-width: 600px;
}
.p-product--single .l-inner__right .p-product-gallery {
  position: relative;
}
.p-product--single .l-inner__right .p-product-gallery .custom-sale-label {
  position: absolute;
  left: 10px;
  top: 10px;
  background-color: red !important;
  color: #ffffff !important;
  font-size: 0.7777777778rem;
  z-index: 1;
}
@media screen and (min-width: 350px) {
  .p-product--single .l-inner__right .p-product-gallery .custom-sale-label {
    font-size: calc(14px + 3 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .p-product--single .l-inner__right .p-product-gallery .custom-sale-label {
    font-size: 0.9444444444rem;
  }
}
.p-product--single .l-inner__right .woocommerce-product-gallery {
  position: relative;
}
@media screen and (max-width: 680px) {
  .p-product--single .l-inner__right .woocommerce-product-gallery .flex-control-thumbs {
    display: none;
  }
}
.p-product--single .l-inner__right .woocommerce-product-gallery__image {
  pointer-events: none;
}
.p-product--single .l-inner__right .flex-viewport {
  position: relative;
  max-height: 600px;
  margin-bottom: 30px;
}
.p-product--single .l-inner__right .flex-viewport img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 1rem;
}
.p-product--single .l-inner__right .flex-control-nav {
  max-width: 600px;
  display: grid;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  padding-left: 0;
  grid-template-columns: repeat(auto-fit, minmax(138px, 1fr));
  grid-row-gap: 15px;
  grid-column-gap: 15px;
}
.p-product--single .l-inner__right .flex-control-nav li {
  list-style: none;
  overflow: hidden;
  background-color: #ffffff;
}
.p-product--single .l-inner__right .flex-control-nav li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-product--single .l-inner__right .flex-control-nav::after {
  content: "";
  display: block;
  width: 30%;
}
.p-product--single .l-inner__right .flex-control-nav img {
  opacity: 0.5;
}
.p-product--single .l-inner__right .flex-control-nav .flex-active {
  opacity: 1;
}
.p-product--single .l-inner__right .flex-direction-nav {
  width: 100%;
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 10;
}
.p-product--single .l-inner__right .flex-direction-nav a {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  padding: 10px;
  position: relative;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  text-indent: -9999px;
  z-index: 20;
}
.p-product--single .l-inner__right .flex-nav-next {
  position: relative;
  right: -15px;
  z-index: 10;
}
.p-product--single .l-inner__right .flex-nav-next .flex-next {
  background-image: url(../images/ico/gray_right_ico.png);
}
.p-product--single .l-inner__right .flex-nav-prev {
  position: relative;
  left: -15px;
  z-index: 10;
}
.p-product--single .l-inner__right .flex-nav-prev .flex-prev {
  background-image: url(../images/ico/gray_left_ico.png);
}
.p-product--single .l-inner__right .product-tag {
  margin-top: 2.2222222222rem;
  margin-bottom: 2.2222222222rem;
}
@media screen and (min-width: 350px) {
  .p-product--single .l-inner__right .product-tag {
    margin-top: calc(40px + 40 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .p-product--single .l-inner__right .product-tag {
    margin-top: 4.4444444444rem;
  }
}
@media screen and (min-width: 350px) {
  .p-product--single .l-inner__right .product-tag {
    margin-bottom: calc(40px + 160 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .p-product--single .l-inner__right .product-tag {
    margin-bottom: 11.1111111111rem;
  }
}
.p-product--single .l-inner__right .product-tag .product-tag--img_box {
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 680px) {
  .p-product--single .l-inner__right {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
}
.p-product--single .l-inner__right .p_ico,
.p-product--single .l-inner__right .f_ico {
  font-size: 0.7777777778rem;
}
@media screen and (min-width: 350px) {
  .p-product--single .l-inner__right .p_ico,
  .p-product--single .l-inner__right .f_ico {
    font-size: calc(14px + 3 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .p-product--single .l-inner__right .p_ico,
  .p-product--single .l-inner__right .f_ico {
    font-size: 0.9444444444rem;
  }
}
.p-product--single .l-inner__right .p-product-detail__features {
  background-color: #ffffff;
  color: #000000;
  margin-top: 40px;
  padding: 0.8333333333rem;
  font-family: "YuMincho", "Hiragino Mincho ProN", serif !important;
}
@media screen and (min-width: 350px) {
  .p-product--single .l-inner__right .p-product-detail__features {
    padding: calc(15px + 5 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .p-product--single .l-inner__right .p-product-detail__features {
    padding: 1.1111111111rem;
  }
}
.p-product--single .l-inner__right .woocommerce-Price-amount {
  font-size: 1.2222222222rem;
}
@media screen and (min-width: 350px) {
  .p-product--single .l-inner__right .woocommerce-Price-amount {
    font-size: calc(22px + 14 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .p-product--single .l-inner__right .woocommerce-Price-amount {
    font-size: 2rem;
  }
}
.p-product--single .l-inner__right .woocommerce-variation-add-to-cart {
  position: relative;
}
.p-product--single .l-inner__right .single_variation_wrap {
  margin-top: 1rem;
}
.p-product--single .l-inner__right .variations {
  margin-top: 2rem;
  width: 100%;
}
.p-product--single .l-inner__right .variations tr {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-product--single .l-inner__right .variations tr .value {
  position: relative;
}
.p-product--single .l-inner__right .variations tr .value #pa_contents {
  width: 400px;
  height: 35.25px;
  border-radius: 5px;
  position: absolute;
  right: 0;
  margin-bottom: 1rem;
}
@media screen and (max-width: 1099px) {
  .p-product--single .l-inner__right .variations tr .value #pa_contents {
    position: absolute;
    right: 0;
    width: 200px !important;
  }
}
.p-product--single .l-inner__right .variations tr .value .reset_variations {
  position: relative;
  top: -30px;
}
.p-product--single .l-inner__right .quantity {
  display: inline-block;
  position: absolute;
  right: 0;
  width: 400px;
}
.p-product--single .l-inner__right .quantity .qty {
  width: 60px !important;
  padding: 0.25rem 0 0.25rem 0.25rem;
  text-align: center;
}
@media screen and (max-width: 1099px) {
  .p-product--single .l-inner__right .quantity .qty {
    position: absolute;
    right: 0;
  }
}
.p-product--single .l-inner__right .quantity .input-text {
  width: 100%;
  border-radius: 5px;
}
.p-product--single .l-inner__right .wcpa_row.wcpa_row_index_0 .wcpa_field_label,
.p-product--single .l-inner__right .wcpa_row.wcpa_row_index_1 .wcpa_field_label {
  max-width: 80px;
}
.p-product--single .l-inner__right .wcpa_row.wcpa_row_index_0 .wcpa_field_wrap,
.p-product--single .l-inner__right .wcpa_row.wcpa_row_index_1 .wcpa_field_wrap {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-product--single .l-inner__right .wcpa_row.wcpa_row_index_0 select,
.p-product--single .l-inner__right .wcpa_row.wcpa_row_index_1 select {
  width: 400px;
  height: 35.25px;
  line-height: 35.25px;
  border-radius: 5px;
  padding: 0 !important;
  color: #000000;
}
@media screen and (max-width: 1099px) {
  .p-product--single .l-inner__right .wcpa_row.wcpa_row_index_0 select,
  .p-product--single .l-inner__right .wcpa_row.wcpa_row_index_1 select {
    width: 200px !important;
  }
}
.p-product--single .l-inner__right .wcpa_row.wcpa_row_index_0 select .wcpa_wrap .wcpa_row.wcpa_row_index_1 .wcpa_field_label,
.p-product--single .l-inner__right .wcpa_row.wcpa_row_index_1 select .wcpa_wrap .wcpa_row.wcpa_row_index_1 .wcpa_field_label {
  max-width: 200px !important;
}
.p-product--single .l-inner__right .wcpa_row.wcpa_row_index_0 .wcpa_wrap.wcpa_field_label,
.p-product--single .l-inner__right .wcpa_row.wcpa_row_index_1 .wcpa_wrap.wcpa_field_label {
  max-width: 200px !important;
}
.p-product--single .l-inner__right .wcpa_row.wcpa_row_index_0 input,
.p-product--single .l-inner__right .wcpa_row.wcpa_row_index_1 input {
  width: 400px;
  height: 35.25px;
  line-height: 35.25px;
  border-radius: 5px;
}
.p-product--single .l-inner__right .single_add_to_cart_button,
.p-product--single .l-inner__right .yith-wcwl-wishlistexistsbrowse,
.p-product--single .l-inner__right .yith-wcwl-wishlistaddedbrowse,
.p-product--single .l-inner__right .yith-wcwl-add-button a {
  width: 100%;
  color: #ffffff;
  border-radius: 7px;
  height: 3.3333333333rem;
  line-height: 1.6666666667rem;
  position: relative;
  font-family: "游ゴシック体", "YuGothic", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 900;
  margin: 1.5rem auto 0;
}
@media screen and (min-width: 350px) {
  .p-product--single .l-inner__right .single_add_to_cart_button,
  .p-product--single .l-inner__right .yith-wcwl-wishlistexistsbrowse,
  .p-product--single .l-inner__right .yith-wcwl-wishlistaddedbrowse,
  .p-product--single .l-inner__right .yith-wcwl-add-button a {
    height: calc(60px + 20 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .p-product--single .l-inner__right .single_add_to_cart_button,
  .p-product--single .l-inner__right .yith-wcwl-wishlistexistsbrowse,
  .p-product--single .l-inner__right .yith-wcwl-wishlistaddedbrowse,
  .p-product--single .l-inner__right .yith-wcwl-add-button a {
    height: 4.4444444444rem;
  }
}
@media screen and (min-width: 350px) {
  .p-product--single .l-inner__right .single_add_to_cart_button,
  .p-product--single .l-inner__right .yith-wcwl-wishlistexistsbrowse,
  .p-product--single .l-inner__right .yith-wcwl-wishlistaddedbrowse,
  .p-product--single .l-inner__right .yith-wcwl-add-button a {
    line-height: calc(30px + 50 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .p-product--single .l-inner__right .single_add_to_cart_button,
  .p-product--single .l-inner__right .yith-wcwl-wishlistexistsbrowse,
  .p-product--single .l-inner__right .yith-wcwl-wishlistaddedbrowse,
  .p-product--single .l-inner__right .yith-wcwl-add-button a {
    line-height: 4.4444444444rem;
  }
}
.p-product--single .l-inner__right .single_add_to_cart_button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #EF9630;
  padding: 1.5rem 0;
}
.p-product--single .l-inner__right .yith-wcwl-add-button a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  border-radius: 7px;
  color: #7B7B7B;
  background-color: #D1D0D0;
}
.p-product--single .l-inner__right .p-product-detail__wishlist {
  text-align: center;
}
.p-product--single .l-inner__right .yith-wcwl-wishlistexistsbrowse,
.p-product--single .l-inner__right .yith-wcwl-wishlistaddedbrowse {
  background-color: #ffffff;
  color: #000000;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-product--single .l-inner__right .yith-wcwl-wishlistexistsbrowse .feedback,
.p-product--single .l-inner__right .yith-wcwl-wishlistaddedbrowse .feedback {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #ffffff;
  border-radius: 7px;
  font-size: 0.6666666667rem;
}
@media screen and (min-width: 350px) {
  .p-product--single .l-inner__right .yith-wcwl-wishlistexistsbrowse .feedback,
  .p-product--single .l-inner__right .yith-wcwl-wishlistaddedbrowse .feedback {
    font-size: calc(12px + 6 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .p-product--single .l-inner__right .yith-wcwl-wishlistexistsbrowse .feedback,
  .p-product--single .l-inner__right .yith-wcwl-wishlistaddedbrowse .feedback {
    font-size: 1rem;
  }
}
.p-product--single .l-inner__right .yith-wcwl-wishlistexistsbrowse a,
.p-product--single .l-inner__right .yith-wcwl-wishlistaddedbrowse a {
  display: block;
  position: absolute;
  top: 25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-decoration: underline;
  font-size: 0.6666666667rem;
}
@media screen and (min-width: 350px) {
  .p-product--single .l-inner__right .yith-wcwl-wishlistexistsbrowse a,
  .p-product--single .l-inner__right .yith-wcwl-wishlistaddedbrowse a {
    font-size: calc(12px + 6 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .p-product--single .l-inner__right .yith-wcwl-wishlistexistsbrowse a,
  .p-product--single .l-inner__right .yith-wcwl-wishlistaddedbrowse a {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-product--single .l-inner__right .yith-wcwl-wishlistexistsbrowse a,
  .p-product--single .l-inner__right .yith-wcwl-wishlistaddedbrowse a {
    top: 30px;
  }
}
.p-product--single .l-inner__right .yith-wcwl-wishlistexistsbrowse .fa-heart,
.p-product--single .l-inner__right .yith-wcwl-wishlistaddedbrowse .fa-heart {
  color: #E8380D;
}
.p-product--single .l-inner__right .yith-wcwl-wishlistexistsbrowse {
  line-height: normal;
}
.p-product--single .l-inner__right .p-product-postage {
  background-color: #ffffff;
  font-weight: 900;
  margin-top: 1.5rem;
  padding: 0.8333333333rem;
  padding: 0.8333333333rem;
}
@media screen and (min-width: 350px) {
  .p-product--single .l-inner__right .p-product-postage {
    padding: calc(15px + 5 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .p-product--single .l-inner__right .p-product-postage {
    padding: 1.1111111111rem;
  }
}
.p-product--single .l-inner__right .p-product-postage .red_txt {
  margin-bottom: 0.25rem;
  font-size: 1.1111111111rem;
}
@media screen and (min-width: 350px) {
  .p-product--single .l-inner__right .p-product-postage .red_txt {
    font-size: calc(20px + 5 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .p-product--single .l-inner__right .p-product-postage .red_txt {
    font-size: 1.3888888889rem;
  }
}
@media screen and (min-width: 350px) {
  .p-product--single .l-inner__right .p-product-postage {
    padding: calc(15px + 5 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .p-product--single .l-inner__right .p-product-postage {
    padding: 1.1111111111rem;
  }
}
.p-product--single .l-inner__right .p-product-postage .postage_info,
.p-product--single .l-inner__right .p-product-postage .postage_info-2 {
  max-width: 400px;
  margin: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: start;
      -ms-flex-align: start;
          align-items: start;
  margin-bottom: 1.5rem;
  font-size: 0.7222222222rem;
}
@media screen and (min-width: 350px) {
  .p-product--single .l-inner__right .p-product-postage .postage_info,
  .p-product--single .l-inner__right .p-product-postage .postage_info-2 {
    font-size: calc(13px + 5 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .p-product--single .l-inner__right .p-product-postage .postage_info,
  .p-product--single .l-inner__right .p-product-postage .postage_info-2 {
    font-size: 1rem;
  }
}
.p-product--single .l-inner__right .p-product-spec {
  font-weight: 900;
  padding: 0.8333333333rem;
}
@media screen and (max-width: 679px) {
  .p-product--single .l-inner__right .p-product-spec {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 350px) {
  .p-product--single .l-inner__right .p-product-spec {
    padding: calc(15px + 10 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .p-product--single .l-inner__right .p-product-spec {
    padding: 1.3888888889rem;
  }
}
.p-product--single .l-inner__right .p-product-spec .c-details__summary {
  font-size: 1.1111111111rem;
}
@media screen and (min-width: 350px) {
  .p-product--single .l-inner__right .p-product-spec .c-details__summary {
    font-size: calc(20px + 5 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .p-product--single .l-inner__right .p-product-spec .c-details__summary {
    font-size: 1.3888888889rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-product--single .l-inner__right .p-product-spec .c-details__content dl dt, .p-product--single .l-inner__right .p-product-spec .c-details__content dl dd {
    display: block;
    width: 100%;
  }
  .p-product--single .l-inner__right .p-product-spec .c-details__content dl dt {
    padding-bottom: 0;
  }
}
.p-product--single .p-product-category-content h3 {
  margin-bottom: 1.6666666667rem;
}
@media screen and (min-width: 350px) {
  .p-product--single .p-product-category-content h3 {
    margin-bottom: calc(30px + 10 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .p-product--single .p-product-category-content h3 {
    margin-bottom: 2.2222222222rem;
  }
}
.p-product--single .c-product__price {
  display: none;
}
.p-product--single .c-title--page {
  padding-bottom: 0;
  margin-top: 2.2222222222rem;
}
@media screen and (min-width: 350px) {
  .p-product--single .c-title--page {
    margin-top: calc(40px + 40 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .p-product--single .c-title--page {
    margin-top: 4.4444444444rem;
  }
}
.p-product--single .c-title--page .page_title {
  font-size: 1.2222222222rem;
}
@media screen and (min-width: 350px) {
  .p-product--single .c-title--page .page_title {
    font-size: calc(22px + 25 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .p-product--single .c-title--page .page_title {
    font-size: 2.6111111111rem;
  }
}
.p-product--single .c-title--page .c-title__txt {
  font-size: 1.1111111111rem;
}
@media screen and (min-width: 350px) {
  .p-product--single .c-title--page .c-title__txt {
    font-size: calc(20px + 2 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .p-product--single .c-title--page .c-title__txt {
    font-size: 1.2222222222rem;
  }
}

.woocommerce-product-galler {
  position: relative;
}

.p-product--single .p-product-bottom-box {
  margin-top: 64px;
}
.p-product--single .d-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  grid-column-gap: 1.6666666667rem;
}
@media screen and (min-width: 769px) {
  .p-product--single .d-grid {
    grid-column-gap: calc(30px + 70 * (100vw - 769px) / 1150);
  }
}
@media screen and (min-width: 1919px) {
  .p-product--single .d-grid {
    grid-column-gap: 5.5555555556rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-product--single .d-grid {
    padding: 20px 0;
  }
}

.wcpa_wrap {
  margin-top: 2rem;
  padding: 0 !important;
  /*
  .wcpa_row.wcpa_row_index_1 {
      .wcpa_field_label {
          width: 100% !important;
      }
  }
  */
}
.wcpa_wrap .wcpa_field_wrap,
.wcpa_wrap .wcpa_group_field {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.wcpa_wrap .wcpa_field_wrap label,
.wcpa_wrap .wcpa_group_field label {
  color: #ffffff !important;
}
@media only screen and (max-width: 767px) {
  .wcpa_wrap .wcpa_group_field {
    -webkit-box-pack: end;
    -webkit-justify-content: end;
        -ms-flex-pack: end;
            justify-content: end;
  }
}
.wcpa_wrap .wcpa_type_textarea {
  display: block !important;
}
.wcpa_wrap .wcpa_field_label {
  width: 200px !important;
}
@media only screen and (max-width: 767px) {
  .wcpa_wrap .wcpa_field_label {
    width: 100%;
  }
}

/*-- 但馬玄について --*/
/* --------------------------------
p-about_grand_tajimaguro
----------------------------------- */
.about_grand_tajimaguro .c-product__price {
  display: none;
}
.about_grand_tajimaguro #p-about-tajimaguro-content {
  background-image: url(../images/bg/about_tajimaguro_img1.png), url(../images/bg/top_kiwami_bg.png);
  background-size: 50%, 38%;
  background-repeat: no-repeat;
  background-position: -25% 0, 100% 0;
}
@media only screen and (max-width: 767px) {
  .about_grand_tajimaguro #p-about-tajimaguro-content {
    background-position: -25% 17%, 100% 17%;
  }
}
.about_grand_tajimaguro #page-header {
  text-align: center;
}
.about_grand_tajimaguro #page-header img {
  display: block;
  width: 14.7777777778rem;
  margin: auto;
}
@media screen and (min-width: 350px) {
  .about_grand_tajimaguro #page-header img {
    width: calc(266px + 97 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .about_grand_tajimaguro #page-header img {
    width: 20.1666666667rem;
  }
}
.about_grand_tajimaguro #page-header .c-title--page {
  margin-bottom: 1rem;
}
.about_grand_tajimaguro #page-header .subtitle {
  font-size: 1.1111111111rem;
  display: block;
  margin-bottom: 40px;
}
@media screen and (min-width: 350px) {
  .about_grand_tajimaguro #page-header .subtitle {
    font-size: calc(20px + 15 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .about_grand_tajimaguro #page-header .subtitle {
    font-size: 1.9444444444rem;
  }
}
.about_grand_tajimaguro .p-product-category-main-box {
  position: relative;
}
.about_grand_tajimaguro .p-product-category-main-box .p-category-image--info {
  max-width: 518px;
  text-align: justify;
  font-size: 0.8888888889rem;
}
@media screen and (min-width: 350px) {
  .about_grand_tajimaguro .p-product-category-main-box .p-category-image--info {
    font-size: calc(16px + 4 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .about_grand_tajimaguro .p-product-category-main-box .p-category-image--info {
    font-size: 1.1111111111rem;
  }
}
.about_grand_tajimaguro .p-product-category-main-box .d-flex.p-category-content--1,
.about_grand_tajimaguro .p-product-category-main-box .d-flex.p-category-content--2,
.about_grand_tajimaguro .p-product-category-main-box .d-flex.p-category-content--3 {
  background-repeat: no-repeat;
}
.about_grand_tajimaguro .p-product-category-main-box .d-flex.p-category-content--1 .p-category-info-container,
.about_grand_tajimaguro .p-product-category-main-box .d-flex.p-category-content--2 .p-category-info-container,
.about_grand_tajimaguro .p-product-category-main-box .d-flex.p-category-content--3 .p-category-info-container {
  max-width: 700px !important;
}
.about_grand_tajimaguro .p-product-category-main-box .d-flex.p-category-content--1 .p-category-info-container h3,
.about_grand_tajimaguro .p-product-category-main-box .d-flex.p-category-content--2 .p-category-info-container h3,
.about_grand_tajimaguro .p-product-category-main-box .d-flex.p-category-content--3 .p-category-info-container h3 {
  margin: 3rem auto 1.5rem;
}
.about_grand_tajimaguro .p-product-category-main-box .d-flex.p-category-content--1 img,
.about_grand_tajimaguro .p-product-category-main-box .d-flex.p-category-content--2 img,
.about_grand_tajimaguro .p-product-category-main-box .d-flex.p-category-content--3 img {
  width: 19.4444444444rem;
}
@media screen and (min-width: 350px) {
  .about_grand_tajimaguro .p-product-category-main-box .d-flex.p-category-content--1 img,
  .about_grand_tajimaguro .p-product-category-main-box .d-flex.p-category-content--2 img,
  .about_grand_tajimaguro .p-product-category-main-box .d-flex.p-category-content--3 img {
    width: calc(350px + 637 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .about_grand_tajimaguro .p-product-category-main-box .d-flex.p-category-content--1 img,
  .about_grand_tajimaguro .p-product-category-main-box .d-flex.p-category-content--2 img,
  .about_grand_tajimaguro .p-product-category-main-box .d-flex.p-category-content--3 img {
    width: 54.8333333333rem;
  }
}
.about_grand_tajimaguro .p-product-category-main-box .d-flex.p-category-content--1 {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}
@media screen and (max-width: 1330px) {
  .about_grand_tajimaguro .p-product-category-main-box .d-flex.p-category-content--1 {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-flex-wrap: wrap !important;
        -ms-flex-wrap: wrap !important;
            flex-wrap: wrap !important;
  }
}
.about_grand_tajimaguro .p-product-category-main-box .d-flex.p-category-content--2 {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  padding-bottom: 5%;
  background-image: url(../images/bg/left_cloud.png);
  background-size: 50%;
  background-position: -30% top;
  padding-top: 1.6666666667rem;
  padding-top: 280px;
}
@media screen and (max-width: 1330px) {
  .about_grand_tajimaguro .p-product-category-main-box .d-flex.p-category-content--2 {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-flex-wrap: wrap !important;
        -ms-flex-wrap: wrap !important;
            flex-wrap: wrap !important;
  }
  .about_grand_tajimaguro .p-product-category-main-box .d-flex.p-category-content--2 .p-category-image--box {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  .about_grand_tajimaguro .p-product-category-main-box .d-flex.p-category-content--2 .p-category-info-container {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media only screen and (max-width: 767px) {
  .about_grand_tajimaguro .p-product-category-main-box .d-flex.p-category-content--2 {
    background-image: none;
  }
}
@media screen and (min-width: 350px) {
  .about_grand_tajimaguro .p-product-category-main-box .d-flex.p-category-content--2 {
    padding-top: calc(30px + 220 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .about_grand_tajimaguro .p-product-category-main-box .d-flex.p-category-content--2 {
    padding-top: 13.8888888889rem;
  }
}
.about_grand_tajimaguro .p-product-category-main-box .d-flex.p-category-content--2 .p-category-info-container {
  padding-left: 0rem;
  padding-right: 0rem;
  padding-bottom: 1.3888888889rem;
}
.about_grand_tajimaguro .p-product-category-main-box .d-flex.p-category-content--2 .p-category-info-container .page_title_ico {
  margin-top: 1rem;
}
@media screen and (min-width: 350px) {
  .about_grand_tajimaguro .p-product-category-main-box .d-flex.p-category-content--2 .p-category-info-container {
    padding-left: calc(0px + 50 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .about_grand_tajimaguro .p-product-category-main-box .d-flex.p-category-content--2 .p-category-info-container {
    padding-left: 2.7777777778rem;
  }
}
@media screen and (min-width: 350px) {
  .about_grand_tajimaguro .p-product-category-main-box .d-flex.p-category-content--2 .p-category-info-container {
    padding-right: calc(0px + 50 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .about_grand_tajimaguro .p-product-category-main-box .d-flex.p-category-content--2 .p-category-info-container {
    padding-right: 2.7777777778rem;
  }
}
@media screen and (min-width: 350px) {
  .about_grand_tajimaguro .p-product-category-main-box .d-flex.p-category-content--2 .p-category-info-container {
    padding-bottom: calc(25px + 25 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .about_grand_tajimaguro .p-product-category-main-box .d-flex.p-category-content--2 .p-category-info-container {
    padding-bottom: 2.7777777778rem;
  }
}
.about_grand_tajimaguro .p-product-category-main-box .d-flex.p-category-content--3 {
  position: absolute;
  bottom: -1.6666666667rem;
  /*bottom: 60px;*/
  width: 100%;
}
@media screen and (min-width: 1331px) {
  .about_grand_tajimaguro .p-product-category-main-box .d-flex.p-category-content--3 {
    bottom: calc(-30px + 90 * (100vw - 1331px) / 588);
  }
}
@media screen and (min-width: 1919px) {
  .about_grand_tajimaguro .p-product-category-main-box .d-flex.p-category-content--3 {
    bottom: 3.3333333333rem;
  }
}
@media screen and (max-width: 1330px) {
  .about_grand_tajimaguro .p-product-category-main-box .d-flex.p-category-content--3 {
    position: relative;
  }
}
.about_grand_tajimaguro .p-product-category-main-box .d-flex.p-category-content--3 .p-category-info-container {
  background-color: #000000;
  margin: auto;
  padding-left: 1.3888888889rem;
  padding-right: 1.3888888889rem;
}
.about_grand_tajimaguro .p-product-category-main-box .d-flex.p-category-content--3 .p-category-info-container .page_title_ico {
  margin-top: 3rem;
}
@media screen and (min-width: 350px) {
  .about_grand_tajimaguro .p-product-category-main-box .d-flex.p-category-content--3 .p-category-info-container {
    padding-left: calc(25px + 25 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .about_grand_tajimaguro .p-product-category-main-box .d-flex.p-category-content--3 .p-category-info-container {
    padding-left: 2.7777777778rem;
  }
}
@media screen and (min-width: 350px) {
  .about_grand_tajimaguro .p-product-category-main-box .d-flex.p-category-content--3 .p-category-info-container {
    padding-right: calc(25px + 25 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .about_grand_tajimaguro .p-product-category-main-box .d-flex.p-category-content--3 .p-category-info-container {
    padding-right: 2.7777777778rem;
  }
}
.about_grand_tajimaguro .p-product-category-main-box li .p-category-image--box {
  text-align: right;
}
.about_grand_tajimaguro .p-product-category-main-box li:nth-child(even) .p-category-image--box {
  text-align: left;
}
.about_grand_tajimaguro #p-about-tajimaguro-analysis {
  background-image: url(../images/bg/right_cloud.png);
  background-repeat: no-repeat;
  background-position: 140% top;
  background-size: 50%;
  padding-top: 2.7777777778rem;
  padding-bottom: 2.7777777778rem;
  padding-left: 25px;
  padding-right: 25px;
}
@media screen and (min-width: 350px) {
  .about_grand_tajimaguro #p-about-tajimaguro-analysis {
    padding-top: calc(50px + 150 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .about_grand_tajimaguro #p-about-tajimaguro-analysis {
    padding-top: 11.1111111111rem;
  }
}
@media screen and (min-width: 350px) {
  .about_grand_tajimaguro #p-about-tajimaguro-analysis {
    padding-bottom: calc(50px + 50 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .about_grand_tajimaguro #p-about-tajimaguro-analysis {
    padding-bottom: 5.5555555556rem;
  }
}
@media only screen and (max-width: 767px) {
  .about_grand_tajimaguro #p-about-tajimaguro-analysis {
    background-image: none;
  }
}
.about_grand_tajimaguro #p-about-tajimaguro-analysis .p-category-info-container {
  margin-top: 1.6666666667rem;
  max-width: 600px;
  margin: auto;
  text-align: justify;
  font-size: 0.8888888889rem;
}
@media screen and (min-width: 350px) {
  .about_grand_tajimaguro #p-about-tajimaguro-analysis .p-category-info-container {
    margin-top: calc(30px + 20 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .about_grand_tajimaguro #p-about-tajimaguro-analysis .p-category-info-container {
    margin-top: 2.7777777778rem;
  }
}
@media screen and (min-width: 350px) {
  .about_grand_tajimaguro #p-about-tajimaguro-analysis .p-category-info-container {
    font-size: calc(16px + 4 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .about_grand_tajimaguro #p-about-tajimaguro-analysis .p-category-info-container {
    font-size: 1.1111111111rem;
  }
}
.about_grand_tajimaguro #p-about-tajimaguro-analysis .p-category-info-container .text_center {
  margin: 1.8rem auto;
  font-size: 1.1111111111rem;
}
@media screen and (min-width: 350px) {
  .about_grand_tajimaguro #p-about-tajimaguro-analysis .p-category-info-container .text_center {
    font-size: calc(20px + 4 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .about_grand_tajimaguro #p-about-tajimaguro-analysis .p-category-info-container .text_center {
    font-size: 1.3333333333rem;
  }
}
.about_grand_tajimaguro #p-about-tajimaguro-analysis .page_title_ico {
  margin-bottom: 1.5rem;
}
.about_grand_tajimaguro #p-about-tajimaguro-analysis #p-about-tajimaguro-analysis-container {
  max-width: 820px;
  margin: auto;
}
.about_grand_tajimaguro #p-about-tajimaguro-analysis #p-about-tajimaguro-analysis-container ul li {
  border-bottom: 1px solid #7B7B7B;
  font-weight: 900;
  padding-top: 0.5555555556rem;
  padding-bottom: 0.5555555556rem;
  padding-left: 1.1111111111rem;
  padding-right: 1.1111111111rem;
}
@media screen and (min-width: 350px) {
  .about_grand_tajimaguro #p-about-tajimaguro-analysis #p-about-tajimaguro-analysis-container ul li {
    padding-top: calc(10px + 10 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .about_grand_tajimaguro #p-about-tajimaguro-analysis #p-about-tajimaguro-analysis-container ul li {
    padding-top: 1.1111111111rem;
  }
}
@media screen and (min-width: 350px) {
  .about_grand_tajimaguro #p-about-tajimaguro-analysis #p-about-tajimaguro-analysis-container ul li {
    padding-bottom: calc(10px + 10 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .about_grand_tajimaguro #p-about-tajimaguro-analysis #p-about-tajimaguro-analysis-container ul li {
    padding-bottom: 1.1111111111rem;
  }
}
@media screen and (min-width: 350px) {
  .about_grand_tajimaguro #p-about-tajimaguro-analysis #p-about-tajimaguro-analysis-container ul li {
    padding-left: calc(20px + 30 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .about_grand_tajimaguro #p-about-tajimaguro-analysis #p-about-tajimaguro-analysis-container ul li {
    padding-left: 2.7777777778rem;
  }
}
@media screen and (min-width: 350px) {
  .about_grand_tajimaguro #p-about-tajimaguro-analysis #p-about-tajimaguro-analysis-container ul li {
    padding-right: calc(20px + 30 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .about_grand_tajimaguro #p-about-tajimaguro-analysis #p-about-tajimaguro-analysis-container ul li {
    padding-right: 2.7777777778rem;
  }
}
.about_grand_tajimaguro #p-about-tajimaguro-analysis #p-about-tajimaguro-analysis-container ul li .red_txt {
  margin-left: 1.5rem;
}
.about_grand_tajimaguro #p-about-tajimaguro-analysis #p-about-tajimaguro-analysis-container ul li span {
  padding-right: 1rem;
}
.about_grand_tajimaguro #p-about-tajimaguro-analysis #p-about-tajimaguro-analysis-container ul:last-child {
  border-bottom: none;
}
.about_grand_tajimaguro #p-about-tajimaguro-secret {
  background-repeat: no-repeat;
  padding-bottom: 5%;
  background-image: url(../images/bg/left_cloud.png);
  background-size: 50%;
  background-position: -45% bottom;
}
.about_grand_tajimaguro #p-about-tajimaguro-secret img {
  width: 19.4444444444rem;
}
@media screen and (min-width: 350px) {
  .about_grand_tajimaguro #p-about-tajimaguro-secret img {
    width: calc(350px + 155 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .about_grand_tajimaguro #p-about-tajimaguro-secret img {
    width: 28.0555555556rem;
  }
}
@media only screen and (max-width: 767px) {
  .about_grand_tajimaguro #p-about-tajimaguro-secret {
    padding: 0 0 100px;
  }
  .about_grand_tajimaguro #p-about-tajimaguro-secret img {
    margin-bottom: 25px;
  }
}
.about_grand_tajimaguro #p-about-tajimaguro-secret .p-category-info-container {
  max-width: 632px !important;
  margin: -60px auto 0;
  padding-top: 1.6666666667rem;
  position: relative;
  padding-left: 1.3888888889rem;
  padding-right: 1.3888888889rem;
}
@media screen and (min-width: 350px) {
  .about_grand_tajimaguro #p-about-tajimaguro-secret .p-category-info-container {
    padding-top: calc(30px + 10 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .about_grand_tajimaguro #p-about-tajimaguro-secret .p-category-info-container {
    padding-top: 2.2222222222rem;
  }
}
.about_grand_tajimaguro #p-about-tajimaguro-secret .p-category-info-container h3 {
  margin: 3rem auto 1.5rem;
}
.about_grand_tajimaguro #p-about-tajimaguro-secret .p-category-info-container .page_title_ico {
  margin-top: 1rem;
}
.about_grand_tajimaguro #p-about-tajimaguro-secret .p-category-info-container .large_txt {
  text-align: center;
}
@media screen and (min-width: 350px) {
  .about_grand_tajimaguro #p-about-tajimaguro-secret .p-category-info-container {
    padding-left: calc(25px + 25 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .about_grand_tajimaguro #p-about-tajimaguro-secret .p-category-info-container {
    padding-left: 2.7777777778rem;
  }
}
@media screen and (min-width: 350px) {
  .about_grand_tajimaguro #p-about-tajimaguro-secret .p-category-info-container {
    padding-right: calc(25px + 25 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .about_grand_tajimaguro #p-about-tajimaguro-secret .p-category-info-container {
    padding-right: 2.7777777778rem;
  }
}
.about_grand_tajimaguro #p-about-tajimaguro-secret ul {
  width: 1100px;
  max-width: 100%;
  margin: auto;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1099px) {
  .about_grand_tajimaguro #p-about-tajimaguro-secret ul {
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
  }
}
.about_grand_tajimaguro #p-about-agricultural-heritage {
  background-image: url(../images/bg/about_tajimaguro_bg.png);
  /*background-image: url(../images/bg/about_tajimaguro_bg.jpg);*/
  width: 100vw;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /*background-color:rgba(0,0,0,0.73);
  background-blend-mode:multiply;*/
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 2.2222222222rem;
  padding-bottom: 2.2222222222rem;
}
@media screen and (min-width: 350px) {
  .about_grand_tajimaguro #p-about-agricultural-heritage {
    padding-top: calc(40px + 40 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .about_grand_tajimaguro #p-about-agricultural-heritage {
    padding-top: 4.4444444444rem;
  }
}
@media screen and (min-width: 350px) {
  .about_grand_tajimaguro #p-about-agricultural-heritage {
    padding-bottom: calc(40px + 40 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .about_grand_tajimaguro #p-about-agricultural-heritage {
    padding-bottom: 4.4444444444rem;
  }
}
.about_grand_tajimaguro #p-about-agricultural-heritage .p-category-image--info {
  max-width: 750px;
  margin: auto;
  line-height: 1.8rem;
}
.about_grand_tajimaguro #p-about-agricultural-heritage .p-category-image--info .page_title_ico {
  padding-top: 2rem !important;
  background-image: url(../images/ico/page_title_ico.png);
  background-repeat: no-repeat;
  background-position: center 0;
  max-width: 510px;
}
.about_grand_tajimaguro #p-about-agricultural-heritage .p-category-image--info h3 {
  position: relative;
  line-height: 2.4rem;
}
.about_grand_tajimaguro #p-about-agricultural-heritage .p-category-image--info h3:before {
  content: "";
  display: block;
  background-image: url(../images/ico/award_badge.png);
  position: absolute;
  top: 0;
  left: -10%;
  width: 4.8vw;
  height: 6.1vw;
  background-size: contain;
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 767px) {
  .about_grand_tajimaguro #p-about-agricultural-heritage .p-category-image--info h3:before {
    top: 25%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 9.1vw !important;
    height: 11.5vw !important;
    left: -5%;
  }
}
.about_grand_tajimaguro #p-about-agricultural-heritage .p-category-image--info .p-about-agricultural-heritage--inner {
  margin-top: 1rem;
}
.about_grand_tajimaguro #p-about-agricultural-heritage .p-category-image--info .first_info {
  display: block;
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1.1111111111rem;
  font-weight: 900;
}
@media screen and (min-width: 350px) {
  .about_grand_tajimaguro #p-about-agricultural-heritage .p-category-image--info .first_info {
    font-size: calc(20px + 4 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .about_grand_tajimaguro #p-about-agricultural-heritage .p-category-image--info .first_info {
    font-size: 1.3333333333rem;
  }
}
@media only screen and (max-width: 767px) {
  .about_grand_tajimaguro #p-about-agricultural-heritage .p-category-image--info {
    padding: 0 25px;
  }
}
.about_grand_tajimaguro #p-about-tajimaguro-award {
  margin-top: 1.6666666667rem;
  margin-bottom: 1.6666666667rem;
}
@media screen and (min-width: 350px) {
  .about_grand_tajimaguro #p-about-tajimaguro-award {
    margin-top: calc(30px + 30 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .about_grand_tajimaguro #p-about-tajimaguro-award {
    margin-top: 3.3333333333rem;
  }
}
@media screen and (min-width: 350px) {
  .about_grand_tajimaguro #p-about-tajimaguro-award {
    margin-bottom: calc(30px + 50 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .about_grand_tajimaguro #p-about-tajimaguro-award {
    margin-bottom: 4.4444444444rem;
  }
}
.about_grand_tajimaguro #p-about-tajimaguro-award .p-category-info-container {
  max-width: 700px;
  padding-left: 0rem;
  padding-right: 0rem;
  margin-bottom: 30px;
}
@media screen and (min-width: 350px) {
  .about_grand_tajimaguro #p-about-tajimaguro-award .p-category-info-container {
    padding-left: calc(0px + 80 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .about_grand_tajimaguro #p-about-tajimaguro-award .p-category-info-container {
    padding-left: 4.4444444444rem;
  }
}
@media screen and (min-width: 350px) {
  .about_grand_tajimaguro #p-about-tajimaguro-award .p-category-info-container {
    padding-right: calc(0px + 80 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .about_grand_tajimaguro #p-about-tajimaguro-award .p-category-info-container {
    padding-right: 4.4444444444rem;
  }
}
.about_grand_tajimaguro #p-about-tajimaguro-award .p-category-info-container li {
  margin-top: 1rem;
}
.about_grand_tajimaguro #p-about-tajimaguro-products-container {
  background-image: url(../images/bg/top_kiwami_bg.png);
  background-repeat: no-repeat;
  background-position: 110% bottom;
  background-size: 48%;
  padding-top: 3.3333333333rem;
}
@media screen and (min-width: 350px) {
  .about_grand_tajimaguro #p-about-tajimaguro-products-container {
    padding-top: calc(60px + 40 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .about_grand_tajimaguro #p-about-tajimaguro-products-container {
    padding-top: 5.5555555556rem;
  }
}
.about_grand_tajimaguro #p-about-tajimaguro-products-container .products {
  margin-top: 1.6666666667rem;
}
@media screen and (min-width: 350px) {
  .about_grand_tajimaguro #p-about-tajimaguro-products-container .products {
    margin-top: calc(30px + 50 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .about_grand_tajimaguro #p-about-tajimaguro-products-container .products {
    margin-top: 4.4444444444rem;
  }
}
.about_grand_tajimaguro .large_txt {
  margin-top: 1.5rem;
  font-size: 1.2222222222rem;
}
@media screen and (min-width: 350px) {
  .about_grand_tajimaguro .large_txt {
    font-size: calc(22px + 7 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .about_grand_tajimaguro .large_txt {
    font-size: 1.6111111111rem;
  }
}

/*-- カート --*/
/* --------------------------------
p-cart
----------------------------------- */
/*カート内*/
.cart main {
  background-image: none;
}
.cart main .product-name {
  max-width: 500px;
}

.woocommerce-cart-form__cart-item .product-thumbnail {
  max-width: 100px;
}
.woocommerce-cart-form__cart-item a {
  color: #4581DC;
  text-decoration: underline;
}

.woocommerce-table__line-item.order_item a {
  color: #4581DC;
  text-decoration: underline;
}

.woocommerce-order h2,
.cart_totals h2,
.woocommerce-order-details h2,
.woocommerce-column h2 {
  font-size: 1.1111111111rem;
  color: #EF9630;
  font-weight: 900;
}
@media screen and (min-width: 350px) {
  .woocommerce-order h2,
  .cart_totals h2,
  .woocommerce-order-details h2,
  .woocommerce-column h2 {
    font-size: calc(20px + 10 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .woocommerce-order h2,
  .cart_totals h2,
  .woocommerce-order-details h2,
  .woocommerce-column h2 {
    font-size: 1.6666666667rem;
  }
}

.shipping-calculator-button {
  color: #4581DC;
  text-decoration: underline;
}

.wc-proceed-to-checkout a,
#place_order a {
  background-color: #EF9630 !important;
  text-align: center;
}

.wc-proceed-to-checkout {
  text-align: center;
}

#place_order {
  background-color: #EF9630 !important;
}

.woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals {
  width: 55%;
}
@media only screen and (max-width: 767px) {
  .woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals {
    width: 100%;
  }
}

.product-add-to-cart .product_type_variable {
  background-color: #000000 !important;
}

.checkout .p-header.m_fixed {
  position: relative !important;
}
.checkout main {
  margin-top: 30px !important;
}

/*-- マイページ --*/
/* --------------------------------
mypage
----------------------------------- */
@media only screen and (max-width: 991px) {
  .woocommerce-account .woocommerce-MyAccount-content, .woocommerce-account .woocommerce-MyAccount-navigation {
    float: none;
    width: 100%;
  }
}

.woocommerce form .show-password-input, .woocommerce-page form .show-password-input {
  top: 0;
}

.woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register {
  margin: 0 0 2em 0;
  border-color: #EF9630;
  border-radius: 0;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button {
  background-color: #7B7B7B;
  color: #fff;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button:hover {
  opacity: 0.5;
  background-color: #7B7B7B;
  color: #fff;
}

#customer_login {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  #customer_login {
    display: block;
  }
}
#customer_login:before, #customer_login:after {
  content: none;
}
#customer_login > div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
#customer_login > div form {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.woocommerce-ResetPassword.lost_reset_password, .woocommerce-MyAccount-content {
  border: 1px solid #EF9630;
  padding: 20px;
}

.woocommerce-MyAccount-content {
  width: 60%;
}

.woocommerce-MyAccount-navigation {
  width: 30%;
}
.woocommerce-MyAccount-navigation > ul {
  list-style: none;
  margin-left: 0;
}
@media only screen and (max-width: 991px) {
  .woocommerce-MyAccount-navigation > ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media only screen and (max-width: 991px) {
  .woocommerce-MyAccount-navigation > ul > li {
    width: calc((100% - 2px) / 3);
    border-top: 1px solid #fff !important;
  }
}
@media only screen and (max-width: 767px) {
  .woocommerce-MyAccount-navigation > ul > li {
    width: calc((100% - 1px) / 2);
  }
}
.woocommerce-MyAccount-navigation > ul > li + li {
  border-top: 1px solid #fff;
  background-color: #EF9630;
}
.woocommerce-MyAccount-navigation > ul > li > a {
  display: block;
  color: #fff !important;
  text-decoration: none;
  padding: 10px;
}
@media only screen and (max-width: 991px) {
  .woocommerce-MyAccount-navigation > ul > li > a {
    text-align: center;
  }
}

.woocommerce-MyAccount-navigation-link {
  background-color: #EF9630;
}

.woocommerce-Addresses.addresses .woocommerce-Address {
  padding: 20px;
  border: 1px solid #7B7B7B;
}
@media only screen and (max-width: 1199px) {
  .woocommerce-Addresses.addresses .woocommerce-Address {
    width: 100%;
  }
  .woocommerce-Addresses.addresses .woocommerce-Address + .woocommerce-Address {
    margin-top: 20px;
  }
}

.woocommerce table.wishlist_table {
  font-size: 0.6666666667rem;
}
.woocommerce table.wishlist_table tr th, .woocommerce table.wishlist_table tr td {
  padding: 5px;
}
.woocommerce table.wishlist_table tr th.product-price, .woocommerce table.wishlist_table tr th.product-stock-status, .woocommerce table.wishlist_table tr td.product-price, .woocommerce table.wishlist_table tr td.product-stock-status {
  white-space: nowrap;
}
.woocommerce table.wishlist_table tr th.product-remove, .woocommerce table.wishlist_table tr td.product-remove {
  width: auto;
}
.woocommerce table.wishlist_table tr th.product-add-to-cart a.button, .woocommerce table.wishlist_table tr td.product-add-to-cart a.button {
  padding: 6px 2px !important;
  white-space: nowrap;
  font-size: 0.5555555556rem !important;
  margin: 0 !important;
  background-color: #000000;
}

.wishlist_table.images_grid li .item-details table.item-details-table td, .wishlist_table.mobile li .item-details table.item-details-table td, .wishlist_table.mobile li table.additional-info td, .wishlist_table.modern_grid li .item-details table.item-details-table td {
  font-size: 1em;
}

.wishlist_table.mobile li .item-wrapper .item-details .product-name h3 {
  font-size: 0.8888888889rem;
}

.wishlist_table.mobile li .item-details table.item-details-table td.label {
  width: 50px;
}

.wishlist_table tr th.product-thumbnail {
  width: 11.6%;
}

.mypage .woocommerce-column--shipping-address, .mypage .woocommerce-column--billing-address {
  padding-top: 1em;
}
.mypage .woocommerce {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 1100px;
}

.yith-wcwl-add-to-wishlist-button--custom-button {
  width: 100%;
}

.yith-wcwl-add-to-wishlist-button {
  -webkit-box-pack: center !important;
  -webkit-justify-content: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}

.yith-add-to-wishlist-button-block.yith-add-to-wishlist-button-block--single,
a.yith-wcwl-add-to-wishlist-button-anchor-wrapper {
  width: 100% !important;
  font-weight: 900;
}

.yith-add-to-wishlist-button-block {
  margin: 20px auto;
}
.yith-add-to-wishlist-button-block button {
  height: 80px;
  height: 3.3333333333rem;
}
@media screen and (min-width: 350px) {
  .yith-add-to-wishlist-button-block button {
    height: calc(60px + 20 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .yith-add-to-wishlist-button-block button {
    height: 4.4444444444rem;
  }
}

/* --------------------------------
utility
----------------------------------- */
.u-ib {
  display: inline-block;
}

.u-br-pc {
  display: block;
}
@media only screen and (max-width: 767px) {
  .u-br-pc {
    display: none;
  }
}

.u-br-sp {
  display: none;
}
@media only screen and (max-width: 767px) {
  .u-br-sp {
    display: block;
  }
}

.u-pc-hidden {
  display: none;
}
@media only screen and (max-width: 767px) {
  .u-pc-hidden {
    display: block;
  }
}

@media only screen and (max-width: 767px) {
  .u-sp-hidden {
    display: none !important;
  }
}

@media only screen and (max-width: 767px) {
  .sp-sub-menu.no_hover {
    pointer-events: auto !important;
    cursor: pointer;
  }
  .sp-sub-menu.no_hover a {
    pointer-events: auto !important;
    cursor: pointer;
  }
}

.u-vertical {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
@media only screen and (max-width: 767px) {
  .u-vertical {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
  }
}

.u-row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.woocommerce-breadcrumb {
  width: 1400px;
  max-width: 100%;
  margin: 0 auto 5rem;
  padding: 0.5rem 0 1rem 0.25rem !important;
  font-size: 0.6111111111rem;
}
@media screen and (max-width: 1400px) {
  .woocommerce-breadcrumb {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .woocommerce-breadcrumb {
    margin-bottom: 2rem;
  }
}
@media screen and (min-width: 350px) {
  .woocommerce-breadcrumb {
    font-size: calc(11px + 5 * (100vw - 350px) / 1569);
  }
}
@media screen and (min-width: 1919px) {
  .woocommerce-breadcrumb {
    font-size: 0.8888888889rem;
  }
}/*# sourceMappingURL=style.css.map */