@charset "UTF-8";
/* ==================================================
 CSS変数
================================================== */
:root {
  /* ▼ サイズ 375~1920*/
  --size-0-30: clamp(0px, -7.282px + 1.94vw, 30px);
  --size-0-60: clamp(0px, -14.563px + 3.88vw, 60px);
  --size-5-10: clamp(5px, 3.786px + .32vw, 10px);
  --size-10-20: clamp(10px, 7.573px + .65vw, 20px);
  --size-15-19: clamp(15px, 14.029px + .26vw, 19px);
  --size-15-30: clamp(15px, 11.359px + .97vw, 30px);
  --size-15-45: clamp(15px, 7.718px + 1.94vw, 45px);
  --size-16-21: clamp(16px, 14.786px + .32vw, 21px);
  --size-18-24: clamp(18px, 16.544px + .39vw, 24px);
  --size-20-28: clamp(20px, 18.058px + .52vw, 28px);
  --size-20-40: clamp(20px, 15.146px + 1.29vw, 40px);
  --size-20-45: clamp(20px, 13.932px + 1.62vw, 45px);
  --size-22-35: clamp(22px, 18.845px + .84vw, 35px);
  --size-24-30: clamp(24px, 22.544px + .39vw, 30px);
  --size-30-60: clamp(30px, 22.718px + 1.94vw, 60px);
  --size-40-60: clamp(40px, 35.146px + 1.29vw, 60px);
  --size-45-80: clamp(45px, 36.505px + 2.27vw, 80px);
  --size-45-90: clamp(45px, 34.078px + 2.91vw, 90px);
  --size-60-120: clamp(60px, 45.437px + 3.88vw, 120px);
  --size-150-240: clamp(150px, 128.155px + 5.83vw, 240px);
  /* ▼ サイズ 375~768*/
  --size-34-50_2: clamp(34px, 18.733px + 4.07vw, 50px);
  /* ▼ カラー */
  --tp: transparent;
  --brown: #70481e;
  --beige: #f4f1ea;
  --beige2: #d8c898;
  --beige3: #d6c5b9;
  --red: #c00;
  --blue: #0a44bc;
  --orange: #f60;
  /* ▼ トランジション */
  --ts-02: all .2s ease;
  --ts-03: all .3s ease;
  --ts-04: all .4s ease;
  --ts-06: all .6s ease;
}

/* ==================================================
 TABLE OF CONTENTS
  - レスポンシブ表示制御
  - ブロック
  - コンテンツ幅
  - 余白
  - 新規スタイル追加や既存のcss上書き
================================================== */
/* レスポンシブ表示制御 */
@media (min-width: 601px) {
  .sp-less {
    display: none !important;
  }
}
@media (min-width: 769px) {
  .tab-less {
    display: none !important;
  }
}
@media (min-width: 1025px) {
  .note-less {
    display: none !important;
  }
}
@media (min-width: 1281px) {
  .pc-less {
    display: none !important;
  }
}
@media (min-width: 1921px) {
  .fhd-less {
    display: none !important;
  }
}
@media (max-width: 600px) {
  .sp-more {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .tab-more {
    display: none !important;
  }
}
@media (max-width: 1024px) {
  .note-more {
    display: none !important;
  }
}
@media (max-width: 1280px) {
  .pc-more {
    display: none !important;
  }
}
@media (max-width: 1920px) {
  .fhd-more {
    display: none !important;
  }
}
/* コンテンツ幅 */
.w-90p, .w-90p_mxw-1680, .w-90p_mxw-1350, .w-90p_mxw-1200, .w-90p_mxw-1080, .w-90p_mxw-900, .w-90p_mxw-660 {
  width: 90%;
  margin-inline: auto;
}

.w-90p_mxw-660 {
  max-width: 660px;
}

.w-90p_mxw-900 {
  max-width: 900px;
}

.w-90p_mxw-1080 {
  max-width: 1080px;
}

.w-90p_mxw-1200 {
  max-width: 1200px;
}

.w-90p_mxw-1350 {
  max-width: 1350px;
}

.w-90p_mxw-1680 {
  max-width: 1680px;
}

/* 余白 */
.m-60-0 {
  margin: var(--size-30-60) 0;
}

.m-90-0 {
  margin: var(--size-45-90) 0;
}

.mt--60 {
  margin-top: calc(var(--size-30-60) * -1);
}

.mt-10 {
  margin-top: var(--size-5-10);
}

.mt-20 {
  margin-top: var(--size-10-20);
}

.mt-30 {
  margin-top: var(--size-15-30);
}

.mt-45 {
  margin-top: var(--size-20-45);
}

.mt-60 {
  margin-top: var(--size-30-60);
}

.mt-90 {
  margin-top: var(--size-45-90);
}

.mt-120 {
  margin-top: var(--size-60-120);
}

.mb-20 {
  margin-bottom: var(--size-10-20);
}

.mb-30 {
  margin-bottom: var(--size-15-30);
}

.mb-45 {
  margin-bottom: var(--size-20-45);
}

.mb-60 {
  margin-bottom: var(--size-30-60);
}

.mb-90 {
  margin-bottom: var(--size-45-90);
}

.mb-1e {
  margin-bottom: 1em;
}

.mb-2e {
  margin-bottom: 2em;
}

.ml-120 {
  margin-left: var(--size-60-120);
}

.p-60 {
  padding: var(--size-30-60);
}

.p-60-0 {
  padding: var(--size-30-60) 0;
}

.p-90-0 {
  padding: var(--size-45-90) 0;
}

.p-120-0 {
  padding: var(--size-60-120) 0;
}

.pt-30 {
  padding-top: var(--size-15-30);
}

.pt-60 {
  padding-top: var(--size-30-60);
}

.pt-90 {
  padding-top: var(--size-45-90);
}

.pt-120 {
  padding-top: var(--size-60-120);
}

.pb-60 {
  padding-bottom: var(--size-30-60);
}

.pb-90 {
  padding-bottom: var(--size-45-90);
}

.pb-120 {
  padding-bottom: var(--size-60-120);
}

/* 新規スタイル追加や既存のcss上書き */
img {
  max-width: 100%;
  height: auto;
}

a:link,
a:visited {
  color: var(--red);
}

@media (min-width: 769px) {
  .sp {
    display: none;
  }
}

@media (max-width: 768px) {
  h2:has(.sp-ttl-img) {
    overflow: hidden;
  }
  h2:has(.sp-ttl-img) .sp-ttl-img {
    max-width: none;
    height: var(--size-34-50_2);
  }
}

@media (max-width: 768px) {
  .pc {
    display: none;
  }
}

.flex {
  display: flex;
}
.flex > * {
  float: none !important;
}

.fw-w {
  flex-wrap: wrap;
}

.grid {
  display: grid;
}
.grid > * {
  float: none !important;
}
.grid:has(#item_box) {
  gap: var(--size-45-80) var(--size-20-40);
}

.grid3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 600px) {
  .grid3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.w400,
.w420,
.w440,
.w480,
.w520,
.w720,
.w960 {
  float: none;
  width: 90%;
}
@media (max-width: 768px) {
  .w400,
  .w420,
  .w440,
  .w480,
  .w520,
  .w720,
  .w960 {
    width: 100%;
  }
}

.w400 {
  max-width: 400px;
}

.w420 {
  max-width: 420px;
}

.w440 {
  max-width: 440px;
}

.w480 {
  max-width: 480px;
}

.w520 {
  max-width: 520px;
}

.w720 {
  max-width: 720px;
}

.w960 {
  max-width: 960px;
}

#container {
  width: 90%;
  max-width: 960px;
}
@media (max-width: 768px) {
  #container {
    padding-top: 20px;
  }
}

@media (max-width: 768px) {
  #header_wrap {
    position: relative;
    width: 100%;
    height: 60px;
    min-height: auto;
    background: none;
  }
}

#header {
  position: relative;
  width: 100%;
  max-width: 960px;
}
@media (max-width: 768px) {
  #header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    width: 100%;
    height: 60px;
    background: var(--beige3);
    box-shadow: 0 0 10px rgba(112, 72, 30, 0.3);
  }
}

#logo_area {
  position: absolute;
  top: 170px;
  left: 50%;
  float: none;
  padding: 0;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  #logo_area {
    position: relative;
    top: auto;
    left: auto;
    box-sizing: border-box;
    float: none;
    width: auto;
    height: 100%;
    padding: 5px 5%;
    background: #fff;
    transform: none;
  }
  #logo_area p {
    width: auto !important;
    height: 100% !important;
  }
  #logo_area img {
    width: auto;
    height: 100%;
  }
}

#sp-menu,
#open-btn {
  display: none;
}
@media (max-width: 768px) {
  #sp-menu,
  #open-btn {
    display: block;
  }
}

#sp-menu {
  height: 100%;
  margin-left: auto;
}
#sp-menu ul {
  display: flex;
  height: 100%;
}
#sp-menu li {
  width: 60px;
  border-left: 1px solid rgba(255, 255, 255, 0.75);
}
#sp-menu a {
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 56px;
}
#sp-menu .all-items a {
  background-image: url(https://gigaplus.makeshop.jp/doinaka/img/common/sp-menu-all-items.png);
}
#sp-menu .cart {
  margin-bottom: 0;
}
#sp-menu .cart a {
  background-image: url(https://gigaplus.makeshop.jp/doinaka/img/common/sp-menu-cart.png);
}
#sp-menu .mypage a {
  background-image: url(https://gigaplus.makeshop.jp/doinaka/img/common/sp-menu-mypage.png);
}
#sp-menu em {
  visibility: hidden;
}

#open-btn {
  position: relative;
  width: 60px;
  height: 100%;
  background: var(--brown);
  border: none;
}
#open-btn::before, #open-btn::after {
  position: absolute;
  left: 50%;
  width: 34px;
  height: 2px;
  content: "";
  background: #fff;
  transition: var(--ts-04);
  transform: translate(-50%, -50%);
}
#open-btn::before {
  top: calc(50% - 7px);
}
#open-btn::after {
  bottom: calc(50% - 7px);
}
#open-btn.active::before, #open-btn.active::after {
  left: calc(50% - 5px);
}
#open-btn.active::before {
  top: calc(50% + 11px);
  transform: rotate(45deg) translate(-50%, -50%);
}
#open-btn.active::after {
  bottom: calc(50% + 11px);
  transform: rotate(-45deg) translate(-50%, -50%);
}

#main_menu {
  position: absolute;
  top: 0;
  left: 50%;
  float: none;
  width: 100%;
  max-width: 960px;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  #main_menu {
    position: fixed;
    top: 60px;
    right: -100vw;
    left: auto;
    width: 100%;
    max-width: 420px;
    height: calc(100vh - 60px);
    background: rgb(232.8378378378, 223.6486486486, 217.1621621622);
    transition: var(--ts-04);
    transform: none;
  }
  #main_menu.active {
    right: 0;
  }
}
#main_menu ul {
  display: flex;
  justify-content: space-around;
  width: 100%;
}
@media (max-width: 768px) {
  #main_menu ul {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  #main_menu ul li a {
    width: auto !important;
    height: auto !important;
    padding: 15px 15px 15px 80px;
    font-size: 15px;
    text-align: left;
    color: var(--brown);
    background-position: center left 15px;
    background-size: auto 70%;
    border-bottom: 1px solid var(--beige3);
  }
  #main_menu ul li a em {
    visibility: visible;
  }
}
@media (max-width: 768px) {
  #main_menu ul #mm01 a {
    background-image: url(https://gigaplus.makeshop.jp/doinaka/img/common/sp-main-menu01.png);
  }
}
@media (max-width: 768px) {
  #main_menu ul #mm02 a {
    background-image: url(https://gigaplus.makeshop.jp/doinaka/img/common/sp-main-menu02.png);
  }
}
@media (max-width: 768px) {
  #main_menu ul #mm04 a {
    background-image: url(https://gigaplus.makeshop.jp/doinaka/img/common/sp-main-menu03.png);
  }
}
@media (max-width: 768px) {
  #main_menu ul #mm06 a {
    background-image: url(https://gigaplus.makeshop.jp/doinaka/img/common/sp-main-menu04.png);
  }
}
@media (max-width: 768px) {
  #main_menu ul #mm07 a {
    background-image: url(https://gigaplus.makeshop.jp/doinaka/img/common/sp-main-menu05.png);
  }
}
@media (max-width: 768px) {
  #main_menu ul #mm08 a {
    background-image: url(https://gigaplus.makeshop.jp/doinaka/img/common/sp-main-menu06.png);
  }
}
@media (max-width: 768px) {
  #main_menu ul #mm09 a {
    background-image: url(https://gigaplus.makeshop.jp/doinaka/img/common/sp-main-menu07.png);
  }
}
#main_menu ul #mm10 a {
  width: 75px;
  height: 80px;
  background-image: url(https://gigaplus.makeshop.jp/doinaka/img/common/btn_fax.png);
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  #main_menu ul #mm10 a {
    background-image: url(https://gigaplus.makeshop.jp/doinaka/img/common/sp-main-menu08.png);
  }
}
#main_menu ul .other a {
  position: relative;
}
#main_menu ul .other a::before {
  position: absolute;
  top: calc(50% - 1px);
  left: 30px;
  width: 20px;
  height: 2px;
  content: "";
  background: rgba(112, 72, 30, 0.5);
}
#main_menu li {
  float: none !important;
}
#main_menu a {
  margin: 0 !important;
}

#topcolumn,
#bottomcolumn,
#footerbottomcolumn {
  width: 100%;
  max-width: 960px;
  margin: 0 auto !important;
}

#item-list + .pb20 img {
  height: 3px;
}

#item_box {
  position: relative;
  width: auto;
  min-height: auto;
  margin-bottom: 0;
  padding: 0;
}

#item_image {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}
#item_image > a {
  display: block;
  line-height: 0;
}
#item_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#item_name {
  width: 100%;
  background-repeat: repeat-x;
}
#item_name h3 a {
  display: block;
  float: none;
  width: 100%;
  font-weight: 700;
  line-height: 1.5;
}

#news_area {
  margin: var(--size-30-60) 0;
}
#news_area li a {
  display: flex;
  padding: 10px 0;
  font-size: 14px;
  border-bottom: 1px dotted #000;
}
@media (max-width: 600px) {
  #news_area li a {
    flex-direction: column;
  }
}
#news_area li time {
  width: 180px;
  line-height: 150%;
}
#news_area li h3 {
  flex: 1;
}
#news_area .review-post a::before {
  display: none;
}

.page_title,
.table01 {
  box-sizing: border-box;
  width: 100%;
}

@media (max-width: 1024px) {
  .page_title {
    height: 40px;
  }
}
@media (max-width: 600px) {
  .page_title {
    font-size: 22px;
  }
}

#pagetop {
  float: none;
}

#footer_wrap {
  background-image: url(https://gigaplus.makeshop.jp/doinaka/img/common/footer_bg.png);
}
#footer_wrap .notice h5,
#footer_wrap .notice h6 {
  font-weight: 700;
}

#footer {
  width: 100%;
  max-width: 960px;
  padding-left: 0;
}
@media (max-width: 1024px) {
  #footer {
    width: 90%;
  }
}
#footer .footer-guide {
  gap: 20px;
}
@media (max-width: 600px) {
  #footer .footer-guide {
    display: flex;
    flex-direction: column;
  }
}
#footer .notice {
  width: auto;
  margin-bottom: 30px;
  padding-right: 0;
}
@media (max-width: 600px) {
  #footer .notice {
    margin-bottom: 0;
  }
}

#pagetop {
  width: 100%;
}

.footer-info {
  gap: 30px;
  margin: var(--size-0-30) 0 var(--size-15-45);
}
@media (max-width: 1024px) {
  .footer-info {
    flex-direction: column;
    align-items: center;
  }
}

.footer-cal {
  display: flex;
  gap: 15px;
}
@media (max-width: 600px) {
  .footer-cal {
    width: 100%;
  }
}
.footer-cal .calendar-wrap {
  padding: 10px 10px 0;
  background: var(--beige);
}
@media (max-width: 1024px) {
  .footer-cal .calendar-wrap {
    margin-bottom: 0;
  }
}
@media (max-width: 600px) {
  .footer-cal .calendar-wrap {
    box-sizing: border-box;
    width: 50%;
    margin: 10px 0 0;
    padding: 0;
  }
}
.footer-cal .makeshop-calendar1,
.footer-cal .makeshop-calendar2 {
  box-sizing: border-box;
  border-collapse: collapse;
}
.footer-cal .calendar-title {
  display: flex;
  justify-content: center;
  padding: 10px 0;
  font-weight: 700;
  color: #fff;
  background: var(--brown);
}
.footer-cal th,
.footer-cal td {
  text-align: center;
}
.footer-cal th {
  font-weight: 700;
  background: rgba(112, 72, 30, 0.1);
}
@media (max-width: 600px) {
  .footer-cal th {
    padding: 0 0 2px 0 !important;
  }
}
@media (max-width: 1024px) {
  .footer-cal td {
    padding: 0;
  }
}
.footer-cal .saturday {
  color: var(--blue);
}
.footer-cal .sunday {
  color: var(--red);
}
.footer-cal .today {
  font-weight: 700;
  color: rgb(155.9507042254, 131.7253521127, 59.0492957746);
  border: 3px solid rgb(194.9894366197, 170.3697183099, 96.5105633803);
}
.footer-cal .calendar-description {
  display: flex;
  gap: 20px;
  justify-content: center;
  padding: 10px 0;
  font-weight: 700;
}
.footer-cal .calendar-description li {
  display: flex;
  align-items: center;
}
.footer-cal .calendar-description span {
  box-sizing: border-box;
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 5px;
}
.footer-cal .calendar-description .calendar-description-today {
  border: 3px solid rgb(194.9894366197, 170.3697183099, 96.5105633803);
}

.footer-banner {
  flex: 1;
}
@media (max-width: 1024px) {
  .footer-banner {
    display: flex;
    gap: 15px;
    align-items: center;
  }
}
.footer-banner img {
  height: auto;
}

.footer-banner-qr {
  margin-top: 10px;
  text-align: right;
}
@media (max-width: 1024px) {
  .footer-banner-qr {
    margin-top: 0;
  }
}
@media (max-width: 600px) {
  .footer-banner-qr {
    display: none;
  }
}

.copy-right-wrap {
  width: 100%;
  background: var(--brown);
}
.copy-right-wrap #copy-right {
  box-sizing: border-box;
  width: 100%;
  margin-inline: auto;
  padding: 10px 10px 10px 0;
  text-align: center;
  color: #fff;
}
@media (max-width: 600px) {
  .copy-right-wrap #copy-right {
    font-size: 11px;
  }
}

.breadcrumb {
  margin-bottom: var(--size-20-45);
}

#category_title {
  box-sizing: border-box;
  float: none;
  width: 100%;
}

#item_price,
#item_button {
  float: none;
  width: 100%;
  margin-top: 0;
}
#item_price a,
#item_button a {
  display: block;
}

#item_button {
  height: auto;
  padding-top: 9px;
  background-size: auto 100%;
}

.pager-sort-wrap {
  display: flex;
  justify-content: space-between;
  margin: 10px 0 0;
}
@media (max-width: 768px) {
  .pager-sort-wrap {
    flex-direction: column;
  }
}
.pager-sort-wrap * {
  font-size: 14px;
}
.pager-sort-wrap .pager {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 5px;
}
.pager-sort-wrap .pager a,
.pager-sort-wrap .pager span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 3px;
}
.pager-sort-wrap .pager a:hover {
  color: #fff;
  background: var(--brown);
}
.pager-sort-wrap .pager .current {
  border-radius: 100vmax;
}
.pager-sort-wrap .list-head-sort {
  display: flex;
  gap: 15px;
  margin-top: 3px;
}
@media (max-width: 600px) {
  .pager-sort-wrap .list-head-sort {
    flex-wrap: wrap;
    gap: 0 20px;
  }
  .pager-sort-wrap .list-head-sort * {
    font-size: 13px;
    letter-spacing: 0;
  }
  .pager-sort-wrap .list-head-sort dt {
    width: 100%;
  }
}
.pager-sort-wrap + .pb20 img {
  height: 3px;
}

@media (max-width: 768px) {
  .pager-wrap {
    display: flex !important;
  }
}

.item-icon {
  position: absolute;
  top: 0;
  right: auto;
  left: 0;
  z-index: 1;
  padding: 0;
  font-size: 12px;
}

.item-icon p {
  padding: 3px 9px;
}

.item-icon .item-soldout {
  color: #fff;
  background: #333;
}

.item-icon .item-sale {
  color: #fff;
  background: var(--red);
}

.price {
  margin-bottom: 0;
}

.original-price {
  text-decoration: line-through;
}

.item-sale-price {
  color: var(--red);
}

.detailpage-column .iteminfo-ttl {
  margin: var(--size-15-30) 0;
  font-size: var(--size-22-35);
}
.detailpage-column .iteminfo-txt {
  font-size: var(--size-15-19);
}

ul.status_icon {
  display: flex;
  margin-bottom: 0;
}
ul.status_icon li {
  float: none;
  width: auto;
  margin-right: 10px;
}

#item_comment {
  float: none;
  width: 100%;
  background-repeat: repeat-x;
}
@media (max-width: 768px) {
  #item_comment {
    padding-bottom: 0;
  }
}
#item_comment p {
  height: auto;
  line-height: 1.5;
}
@media (max-width: 768px) {
  #item_comment p {
    display: none;
  }
}

#item_price {
  margin-top: 10px;
}

.sale-discount-rate {
  font-size: 13px;
  color: var(--red);
}

#item-detail {
  display: flex;
  gap: 30px;
  align-items: start;
  padding-top: 0;
}
@media (max-width: 1024px) {
  #item-detail {
    flex-direction: column;
    gap: 0;
    align-items: center;
  }
}
#item-detail > * {
  float: none;
  width: 50%;
}
@media (max-width: 1024px) {
  #item-detail > * {
    width: 100%;
  }
}
#item-detail .item-image {
  float: none;
}
#item-detail div.item-image {
  position: sticky;
  top: 30px;
}
@media (max-width: 1024px) {
  #item-detail div.item-image {
    position: static;
    max-width: 390px;
  }
}
#item-detail div.item-image .slick-slide {
  aspect-ratio: 1/1;
}
#item-detail div.item-image .slick-slide img {
  height: 100%;
  object-fit: cover;
}
#item-detail .slick-prev,
#item-detail .slick-next {
  top: 50%;
}
#item-detail .choice-btn {
  margin-bottom: var(--size-20-40);
}
#item-detail .choice-btn .slick-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 5px;
  justify-content: start;
}
#item-detail .choice-btn li {
  float: none;
  width: auto !important;
  margin-bottom: 0;
}
#item-detail .main-image {
  float: none;
  width: 100%;
  margin-bottom: 0;
}
#item-detail .item-detail {
  padding-left: 0;
}
#item-detail .item-title {
  margin-bottom: 15px;
  padding-bottom: 8px;
  font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
  font-size: 24px;
  background-image: url(https://gigaplus.makeshop.jp/doinaka/img/common/detail_line02_new.png);
  background-repeat: repeat-x;
  background-position: left bottom;
}
#item-detail .item-title .item-icon-list {
  display: flex;
  gap: 10px;
}
#item-detail .item-title .item-detail-icon {
  position: relative;
  display: flex;
  gap: 5px;
}
#item-detail .item-title .item-detail-icon p {
  padding: 2px 10px;
  font-family: "Noto Sans JP", sans-serif;
}
#item-detail .item-title .item-detail-icon .item-detail-sale {
  color: #fff;
  background: var(--red);
}
#item-detail .item-title .item-detail-icon .item-detail-soldout {
  color: #fff;
  background: #333;
}
#item-detail .item-title .item-category-name {
  display: none;
}
#item-detail .item-title h2 {
  font-size: var(--size-18-24);
  line-height: 1.5;
}

#detail_item {
  float: none;
  width: 100%;
  background-image: none;
}
#detail_item .copy_01 {
  background-repeat: no-repeat;
  background-size: 100% auto;
}
#detail_item img {
  width: 100%;
}

.item-price-wrap {
  margin-bottom: 10px !important;
}
.item-price-wrap .item-price span:not(.item-tax) {
  color: var(--red);
}

.item-yen {
  font-size: 15px;
}
@media (max-width: 768px) {
  .item-yen {
    font-size: 14px;
  }
}

.item-quantity {
  margin-bottom: 0 !important;
}

.item-quantity input {
  width: 80px !important;
}

.add-cart {
  margin: 0 !important;
}

.add-cart-blc {
  padding: 25px;
  background: url(https://gigaplus.makeshop.jp/doinaka/img/common/cart_box_bg.png) repeat;
}
@media (max-width: 1024px) {
  .add-cart-blc {
    margin-bottom: 30px;
  }
}
.add-cart-blc .item-quantity,
.add-cart-blc p {
  font-size: 16px;
  color: #ffc;
}
.add-cart-blc .makeshop-option-label {
  display: inline-block;
}
.add-cart-blc .makeshop-option-select {
  width: auto;
}

.add-cart .add-cart-btn,
.add-cart .restock-btn {
  width: auto;
  margin-top: 20px;
  padding: 10px 45px;
  font-size: 18px;
  border-radius: 6px;
}
.add-cart .add-cart-btn:hover,
.add-cart .restock-btn:hover {
  text-decoration: none;
  color: #fff;
}
.add-cart .add-cart-btn {
  background: var(--red) !important;
}

.favorite-off {
  color: #e6e6e6 !important;
}
.favorite-off:hover {
  text-decoration: none !important;
}

.item-info-list {
  margin-bottom: -15px;
}
.item-info-list.border-top::before {
  margin-bottom: 15px;
}
.item-info-list li {
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .item-info-list li dt {
    width: 45%;
  }
}

.item-contact a {
  padding: 10px 0 !important;
  background: #fff;
  border-color: var(--brown) !important;
  border-radius: 5px !important;
}
.item-contact a:hover {
  text-decoration: none;
}
.item-contact a::before {
  color: var(--red) !important;
}

.item-review-detail h3,
.checked-contents h3 {
  margin-bottom: 15px;
  padding-bottom: 8px;
  font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
  font-size: 24px !important;
  font-weight: 700;
  background-image: url(https://gigaplus.makeshop.jp/doinaka/img/common/detail_line02_new.png);
  background-repeat: repeat-x;
  background-position: left bottom;
}

.item-review-detail {
  margin-bottom: var(--size-0-60);
}

.review-post a {
  padding: 10px 0 !important;
  background: #fff;
  border-color: var(--brown) !important;
  border-radius: 5px !important;
}
.review-post a:hover {
  text-decoration: none;
}

.checked-contents {
  width: 100%;
  margin-top: var(--size-40-60);
}
.checked-contents .checked-item-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 30px;
  margin-top: 30px;
}
@media (max-width: 1024px) {
  .checked-contents .checked-item-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .checked-contents .checked-item-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 45px 20px;
  }
}
.checked-contents .checked-item-list li {
  width: 100%;
  margin: 0;
}
.checked-contents .checked-item-list .item-list-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  margin-bottom: 10px;
  line-height: 0;
}
.checked-contents .checked-item-list .item-list-image > a {
  display: block;
}
.checked-contents .checked-item-list .item-list-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.checked-contents .checked-item-list .item-name a {
  font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
  font-size: 15px;
  font-weight: 700;
  color: #333;
}
.checked-contents .checked-item-list .original-price {
  margin-bottom: 0;
}
.checked-contents .checked-item-list .item-sale-price {
  font-weight: 700;
  color: var(--red);
}
.checked-contents .checked-item-list .sale-discount-rate {
  display: block;
}
.checked-contents .checked-item-list .add-list-cart {
  text-decoration: none;
  color: #fff;
  background: var(--red);
}

#topcolumn .w960 {
  width: 100%;
}
#topcolumn #item_comment {
  padding-bottom: 0;
}
#topcolumn ul.status_icon {
  margin-bottom: 0;
}

.listpage-column .pager-wrap {
  display: block;
  margin-top: 0;
}
.listpage-column h1 {
  font-weight: 700;
}
.listpage-column #item_box:has(.item-soldout) #item_image img {
  filter: grayscale(100%);
  opacity: 0.75;
}

.review_header .flex {
  gap: 30px;
}
.review_header .review-item-image {
  width: 240px;
  aspect-ratio: 1/1;
}
.review_header .review-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.review_header .review-item-info {
  flex: 1;
}
.review_header .review-item-info h2 a {
  font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
  font-size: 24px;
  font-weight: 700;
  color: #333;
}
.review_header .reviewStar {
  margin-top: 10px;
}

.reviewStar {
  display: flex;
  align-items: center;
}
.reviewStar .reviewRate {
  display: flex;
}
.reviewStar .reviewRate .reviewRateStar {
  position: relative;
  width: 20px;
  height: 20px;
  font-size: 0 !important;
  color: #ffa41d;
}
.reviewStar .reviewRate .reviewRateStar:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-family: "Font Awesome 5 Free";
  font-size: 15px;
  line-height: 20px;
  text-align: center;
}
.reviewStar .reviewRate .reviewRateStar.starOn:before {
  font-weight: 900;
  content: "\f005";
}
.reviewStar .reviewRate .reviewRateStar.starOff:before {
  font-weight: 400;
  content: "\f005";
}
.reviewStar .reviewRate .reviewRateStar.starHalf:before {
  font-weight: 900;
  content: "\f5c0";
}
.reviewStar.largeStar .reviewRate .reviewRateStar {
  width: var(--size-24-30);
  height: var(--size-24-30);
}
.reviewStar.largeStar .reviewRate .reviewRateStar:before {
  font-size: var(--size-18-24);
  line-height: var(--size-24-30);
}
.reviewStar.mediumStar .reviewRate .reviewRateStar {
  width: var(--size-20-28);
  height: var(--size-20-28);
}
.reviewStar.mediumStar .reviewRate .reviewRateStar:before {
  font-size: var(--size-16-21);
  line-height: var(--size-20-28);
}
.reviewStar.smallStar .reviewRate .reviewRateStar {
  width: 16px;
  height: 16px;
}
.reviewStar.smallStar .reviewRate .reviewRateStar:before {
  font-size: 12px;
  line-height: 16px;
}
.reviewStar.noReview .reviewRate .reviewRateStar {
  color: #ccc;
}
.reviewStar.noReview p {
  color: #777;
}
.reviewStar p {
  margin: 0;
  margin-bottom: 0 !important;
  padding: 0;
  line-height: 1;
}
.reviewStar p:first-of-type {
  padding-left: 5px;
}
.reviewStar a {
  display: flex;
  align-items: center;
}
.reviewStar a:hover {
  text-decoration: none !important;
}
.reviewStar a.noReview .reviewRate .reviewRateStar {
  color: #ccc;
}
.reviewStar a.noReview p {
  color: #777;
}

.review-form-wrap {
  width: 100%;
  max-width: 600px;
  margin-top: 60px;
}

.review_post dl {
  margin-bottom: 0;
  padding: 15px;
  border-bottom: 1px solid rgba(112, 72, 30, 0.2);
}
.review_post dl:first-of-type {
  border-top: 1px solid rgba(112, 72, 30, 0.2);
}
.review_post dd {
  flex: 1;
}
.review_post textarea {
  box-sizing: border-box;
  width: 100%;
  padding: 6px;
}
.review_post .review-post a {
  width: auto;
  padding: 10px 20px !important;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: var(--red);
  border-color: var(--red) !important;
}

.reviewList {
  margin-top: 30px;
}
.reviewList li {
  margin: 0;
  padding: var(--size-10-20) !important;
  border-bottom: 1px solid rgba(112, 72, 30, 0.2);
}
@media (max-width: 600px) {
  .reviewList li {
    flex-direction: column;
  }
}
.reviewList li:before, .reviewList li:after {
  display: none;
}
.reviewList li .user {
  width: var(--size-150-240);
}
@media (max-width: 600px) {
  .reviewList li .user {
    width: 100%;
  }
}
.reviewList li .user p.username {
  margin: 1em 0 0.5em 0;
  font-size: 12px;
}
.reviewList li .user p.username span {
  font-size: 15px;
}
.reviewList li .user p.username i {
  padding: 0 5px 0 0;
  font-size: 15px;
  color: #777;
}
.reviewList li .comment {
  flex: 1;
}
.reviewList li .comment p.date {
  margin: 0 0 1em 0;
  font-size: 12px;
  color: #777;
}

.review-listpage-column .pager-wrap,
.newslistpage-column .pager-wrap {
  align-items: center;
  justify-content: start;
}
.review-listpage-column .pager-wrap .pager,
.newslistpage-column .pager-wrap .pager {
  margin-top: 0;
}

.newslistpage-column .news-list li {
  padding: 0;
  border-bottom: none;
}
.newslistpage-column .news-list li a {
  display: flex;
  padding: 15px 0;
  font-size: 14px;
  border-bottom: 1px dotted #000;
}
@media (max-width: 600px) {
  .newslistpage-column .news-list li a {
    flex-direction: column;
  }
}
.newslistpage-column .news-list li time {
  width: 180px;
  line-height: 150%;
}
.newslistpage-column .news-list li h3 {
  flex: 1;
}
.newslistpage-column .pager-wrap {
  margin-top: 15px;
}

.cartpage-column .cart-section-title {
  margin-bottom: 30px;
  font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 768px) {
  .cartpage-column .cart-section-title {
    margin-bottom: 20px;
  }
}
.cartpage-column table th {
  border-bottom: 1px solid rgba(112, 72, 30, 0.2);
}
.cartpage-column table td {
  border-right: 1px solid rgba(112, 72, 30, 0.2);
  border-bottom: 1px solid rgba(112, 72, 30, 0.2);
}
@media (max-width: 1024px) {
  .cartpage-column table td {
    padding: 10px;
  }
}
@media (max-width: 768px) {
  .cartpage-column table td {
    padding: 10px 0 0;
    border: none;
  }
}
@media (max-width: 1024px) {
  .cartpage-column table td.item-cart-price {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .cartpage-column table td.item-cart-price {
    padding: 0 0 10px 0;
    border-bottom: 1px solid rgba(112, 72, 30, 0.2);
  }
}
.cartpage-column .cart-list-table tbody tr {
  border-bottom: none;
}
@media (max-width: 768px) {
  .cartpage-column .cart-list-table tbody tr {
    display: block;
    margin-bottom: 10px;
    padding: 10px;
    background: #fff;
    border: 1px solid rgba(112, 72, 30, 0.2);
  }
}
.cartpage-column .cart-list-table th {
  text-align: center;
  background: rgba(112, 72, 30, 0.15);
}
.cartpage-column .cart-list-table th:first-child {
  width: 450px;
}
.cartpage-column .cart-list-table th:nth-child(3) {
  width: 180px;
}
.cartpage-column .cart-list-table tbody td:first-child {
  align-items: start;
}
@media (max-width: 768px) {
  .cartpage-column .cart-list-table tbody td:first-child {
    margin: 0;
  }
}
.cartpage-column .cart-total {
  background: rgba(112, 72, 30, 0.15);
}
.cartpage-column .cart-list-image {
  height: 80px;
}
.cartpage-column .cart-list-image a {
  display: block;
  width: 100%;
  height: 100%;
}
.cartpage-column .cart-list-image img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1024px) {
  .cartpage-column .item-cart-title {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .cartpage-column .item-cart-title {
    font-size: 13px;
  }
}
.cartpage-column .item-cart-title a {
  font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
}
@media (max-width: 768px) {
  .cartpage-column .item-cart-quantity {
    padding: 0;
  }
}
.cartpage-column .item-cart-quantity .flex {
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .cartpage-column .item-cart-quantity .flex {
    justify-content: end;
    padding-top: 10px;
  }
}
.cartpage-column .item-cart-quantity input {
  width: 60px;
}
.cartpage-column .item-cart-quantity .item-cart-delete {
  width: 100%;
  margin-top: 15px;
  text-align: center;
}
@media (max-width: 768px) {
  .cartpage-column .item-cart-quantity .item-cart-delete {
    width: auto;
    margin: 0 0 0 15px;
  }
}
.cartpage-column .item-cart-quantity .item-cart-delete a {
  color: var(--brown);
  border-color: rgba(112, 72, 30, 0.5);
  border-radius: 100vmax;
}
@media (max-width: 1024px) {
  .cartpage-column .item-cart-subtotal {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .cartpage-column .item-cart-subtotal {
    margin-bottom: 0 !important;
    padding: 0;
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .cartpage-column .cart-total-title,
  .cartpage-column .cart-total-price-wrap {
    display: block !important;
  }
}
@media (max-width: 768px) {
  .cartpage-column .cart-total-price-wrap {
    padding-top: 0;
  }
}
@media (max-width: 1024px) {
  .cartpage-column .cart-total-title {
    font-size: 16px;
  }
}
.cartpage-column .cart-total-price {
  color: var(--red);
}
@media (max-width: 1024px) {
  .cartpage-column .cart-total-price {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .cartpage-column .cart-total-price {
    font-size: 24px;
  }
}
.cartpage-column .cart-total-point {
  letter-spacing: 0;
}

@media (max-width: 768px) {
  .cart-button-wrap {
    margin-top: 0;
  }
}
.cart-button-wrap .cart-button a {
  background: var(--red);
}
.cart-button-wrap .cart-button a:hover {
  text-decoration: none;
}

.makeshop-modal-window .remodal-confirm {
  background: var(--red) !important;
  transition: var(--ts-02);
}
.makeshop-modal-window .remodal-confirm:hover {
  opacity: 0.7;
}

.modal-cart-btn li a:hover {
  text-decoration: none;
  color: #fff;
}

.modal-order {
  background: var(--red) !important;
}

.newsdetailpage-column #newsHeader {
  margin-bottom: 25px;
  padding-bottom: 25px;
  background-image: url(https://gigaplus.makeshop.jp/doinaka/img/common/detail_line02_new.png);
  background-repeat: repeat-x;
  background-position: left bottom;
}
.newsdetailpage-column #newsHeader h2 {
  font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
  font-size: var(--size-18-24);
  font-weight: 700;
}
.newsdetailpage-column #newsHeader .date {
  color: var(--red);
}

.guidepage-column .w960 {
  width: 100%;
}
.guidepage-column h3,
.guidepage-column h4,
.guidepage-column h5,
.guidepage-column h6 {
  font-weight: 700;
}
@media (max-width: 1024px) {
  .guidepage-column #oumi_rice {
    top: -150px;
    left: 65%;
    width: 35%;
    height: auto;
  }
}
@media (max-width: 768px) {
  .guidepage-column #oumi_rice {
    top: -90px;
  }
}
@media (max-width: 600px) {
  .guidepage-column #oumi_rice {
    top: -100px;
    width: 120px;
  }
}
@media (max-width: 1024px) {
  .guidepage-column .intro {
    width: 65%;
  }
}
@media (max-width: 768px) {
  .guidepage-column .intro {
    margin-top: -30px;
    padding-top: 0;
  }
}
@media (max-width: 600px) {
  .guidepage-column .intro {
    width: 100%;
  }
}
.guidepage-column .flow {
  display: flex;
  gap: var(--size-15-45);
}
@media (max-width: 1024px) {
  .guidepage-column .flow {
    flex-direction: column;
    align-items: center;
  }
}
.guidepage-column .flow > .pt40 {
  flex: 1;
}
@media (max-width: 600px) {
  .guidepage-column .flow > .pt40 {
    padding-top: 20px;
  }
}
@media (max-width: 768px) {
  .guidepage-column .flow .lead_copy {
    padding: 20px 0;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .guidepage-column .flow .lead_copy {
    font-size: 18px;
  }
}
.guidepage-column #postage {
  float: none;
}
@media (max-width: 1024px) {
  .guidepage-column #postage {
    width: 90%;
    max-width: 600px;
    margin-top: 0;
  }
}
.guidepage-column .step {
  display: flex;
  flex-wrap: wrap;
}
.guidepage-column .step dt,
.guidepage-column .step dd {
  box-sizing: border-box;
  float: none;
}
.guidepage-column .step dt {
  width: 80px;
}
@media (max-width: 600px) {
  .guidepage-column .step dt {
    width: 50px;
  }
}
.guidepage-column .step dd {
  width: calc(100% - 80px);
}
@media (max-width: 600px) {
  .guidepage-column .step dd {
    width: calc(100% - 50px);
  }
}
@media (max-width: 1024px) {
  .guidepage-column .step dd h4 {
    font-size: 18px;
  }
}
@media (max-width: 600px) {
  .guidepage-column .step dd h4 {
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0;
  }
}

.companypage-column h2 {
  font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
  font-weight: 700;
}
.companypage-column .table01 th,
.companypage-column .table01 td {
  padding-bottom: 15px;
}
@media (max-width: 600px) {
  .companypage-column .table01 th,
  .companypage-column .table01 td {
    padding: 8px;
  }
}
.companypage-column .table01 th {
  width: 20%;
}
@media (max-width: 600px) {
  .companypage-column .table01 th {
    width: 80px;
  }
}
.companypage-column .gmap {
  margin: 30px 0;
  line-height: 0;
  border: 1px solid #a59853;
}
.companypage-column .gmap iframe {
  width: 100% !important;
  height: 450px;
}
@media (max-width: 1024px) {
  .companypage-column .gmap iframe {
    height: 300px;
  }
}

@media (max-width: 600px) {
  .contractpage-column .page_title {
    padding-top: 8px;
    font-size: 16px;
  }
}
