:root {
  --color-black: #292929;
  --color-white: #fff;
  --color-red: #bb2d29;
  --color-bg-pink: #fff0f0;
  --color-border-gray: #ccc;
  --color-link-blue: #278dd6;
  /* theme colors */
  --color-maternity: #dc9696;
  --color-inner: #b88fb4;
  --color-baby: #dfc694;

  --color-lightMaternity: #ffe5e5;
  --color-lightInner: #fff0fc;
  --color-lightBaby: #ffe2d7;

  /* ===== フォントサイズの変数追加 ===== */
  --fz-lg: 2.46667rem;
  --fz-md: 2rem;
  --fz-sm: 1.33333rem;
  --fz-xs: 1.2rem;
  --fz-price: 2.53333rem;
  --fz-nav: 1.8rem;
  --fz-btn: 1.3rem;
  --fz-item-name: 1.6rem;
}

/* =========================================
   THEME COLORS
========================================= */
.themaColorBlack {
  background: var(--color-black);
  border: 1px solid var(--color-black);
}

.themaColorBlack:hover {
  background: var(--color-white);
  color: var(--color-black);
}

.themaColorBlack a {
  color: var(--color-white);
}

.themaColorBlack a:hover,
.themaColorBlack a:focus,
.themaColorBlack a:active {
  color: var(--color-black);
}

.themaColorMaternity a,
.themaColorInner a,
.themaColorBaby a {
  color: var(--color-white);
  transition: .5s;
}

.themaColorMaternity a:hover {
  background: var(--color-maternity);
}

.themaColorInner a:hover {
  background: var(--color-inner);
}

.themaColorBaby a:hover {
  background: var(--color-baby);
}

/* =========================================
   LAYOUT
========================================= */
section {
  contain-intrinsic-size: initial !important;
  content-visibility: initial !important;
}

.columnBox {
  box-sizing: border-box;
  margin: 0 auto;
  padding: 40px 0;
  position: relative;
  width: 100%;
}


.maternity {
  background: var(--color-lightMaternity);
}

.inner {
  background: var(--color-lightInner);
}

.baby {
  background: var(--color-lightBaby);
}


.columnBox__col {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 10px;
  position: relative;
  width: 100%;
}

/* =========================================
   WRAPPER / NAV
========================================= */
.wrapper {
  background: var(--color-red) url("../images/bg_texture.png") repeat;
  background-size: 120px;
  box-sizing: border-box;
  margin: 0 auto 50px;
  padding: 50px 0 0;
  position: relative;
}

.mainVisual img {
  max-width: 1300px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.navArea {
  padding: 0 0 24px 0;
}

.navAreaBody {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  max-width: 750px;
  width: 80%;
}

.navAreaBody__inner {
  margin: 5px;
  text-align: center;
  width: 33.3333%;
}

.navAreaBody__inner a {
  border-radius: 4px;
  color: #333;
  display: block;
  font-size: var(--fz-nav);
  font-weight: bold;
  line-height: 1.3;
  padding: 15px 10px;
  transition: .3s;
  background: var(--color-white);
  text-decoration: none;
}

/* =========================================
   HEADING
========================================= */
.titleBox__mainText,
.titleBox__subText {
  box-sizing: border-box;
  color: var(--color-white);
  display: block;
  font-weight: bold;
  line-height: 1.6;
  margin: 0 auto;
  position: relative;
  text-align: center;
  width: 90%;
}

.titleBox__mainText {
  font-size: var(--fz-lg);
  margin-top: 30px;
}

.titleBox__subText {
  font-size: var(--fz-md);
}

.titleBox__subText span {
  color: var(--color-white);
  display: block;
  font-size: var(--fz-sm);
  font-weight: bold;
}

.common-heading__title-text-en {
  margin-bottom: 0 !important;
}

.common-heading__title-text-jp,
.common-heading__title-text-en {
  color: var(--color-black);
  font-weight: bold !important;
  line-height: 1.6;
  margin: 5px auto 0;
  text-align: center;
}

.attArea .common-heading__title-text-jp,
.attArea .common-heading__title-text-en {
  color: var(--color-black);
}

/* =========================================
   CONTENTS AREA
========================================= */
.columnBox__col.contentsArea {
  justify-content: center;
  max-width: 1100px;
}

.columnBox__col.contentsArea .columnBox__colList {
  margin: 0 10px;
  max-width: 500px;
  text-align: center;
  width: calc((100% - 60px)/3);
}

.columnBox__col.contentsArea .columnBox__colList img {
  border: 1px solid var(--color-black);
}

.detailArea {
  margin: 0;
}

/* =========================================
   CART AREA
========================================= */
.cartArea {
  display: flex;
  flex-wrap: wrap;
}

.cartArea__inner {
  margin: 0 5px 0 0;
  width: calc(50% - 2.5px);
}

.cartArea__inner:nth-of-type(2n) {
  margin: 0;
}

.item-name {
  font-size: var(--fz-item-name);
  font-weight: bold;
  line-height: 1.7;
  margin: 5px 0;
  text-align: center;
}

.item-price {
  font-family: "Oswald", sans-serif;
  font-size: var(--fz-price);
  line-height: 1.6;
  width: 100%;
}

.item-price::after {
  content: "+（税）";
  font-size: var(--fz-sm);
  margin-left: 5px;
}

.innerItem {
  background: #000;
  color: var(--color-white);
  font-size: var(--fz-sm);
  margin: 0 auto;
  padding: 7px 5px;
  position: relative;
  top: 10px;
  width: 160px;
}

/* =========================================
   LIST BOX
========================================= */
.listBox {
  margin: 0;
  padding: 10px;
  position: relative;
}

.listBox__title {
  background: var(--color-red);
  color: var(--color-white);
  font-size: var(--fz-sm);
  padding: 7px 5px;
  position: absolute;
  top: -10px;
  width: 150px;
}

.listBox__body {
  background: #f6f6f6;
  font-size: var(--fz-xs);
  line-height: 1.6;
  list-style: none;
  margin: 0 5px 10px;
  padding: 10px;
  text-align: left;
}

.listBox__bodyInner {
  font-size: var(--fz-sm);
  line-height: 1.6;
  text-align: center;
}

.listBox a {
  text-decoration: underline;
}

/* =========================================
   TABLE
========================================= */
.columnBox__col.tableArea {
  padding: 3% 0;
}

.columnBox__col.tableArea .columnBox__colList {
  margin: 0 auto;
  max-width: 1100px;
  width: 100%;
}

.tableStyle {
  border-collapse: collapse;
  border-right: 1px solid var(--color-border-gray);
  border-top: 1px solid var(--color-border-gray);
  margin: 0 auto 30px;
  text-align: center;
  width: 95%;
}

.tableStyle .tableStyle__title-subInner,
.tableStyle .tableStyle__body-subInner,
.tableStyle .tableStyle__body-subInnerTd {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border-gray);
  border-left: 1px solid var(--color-border-gray);
  display: inline-block;
  font-size: var(--fz-sm);
  line-height: 1.7;
  padding: 10px 25px;
  text-align: center;
  width: 100%;
}

.tableStyle .tableStyle__title-subInner,
.tableStyle .tableStyle__body-subInner {
  background: #eee;
}

.tableStyle .tableStyle__title-subInner:nth-child(2) {
  background: var(--color-white);
  text-align: left;
}

.tableStyle__body-subInner {
  text-align: center;
}

.tableStyle .tableStyle__body-subInnerTd {
  text-align: left;
}

.tableStyle__title-inner .tableStyle__title-subInner:first-child {
  width: 100%;
}

.tableStyle__body-innerUlBox {
  padding: 0 10px;
}

.tableStyle__body-innerUlBoxli,
.tableStyle__body-innerUlBoxlitpb {
  margin: 10px 0;
}

.tableStyle__body-innerUlBoxli {
  list-style-type: disc;
}

.tableStyle__body-innerUlBoxli.red {
  color: #eb1313;
}

.tableStyle__body-innerUlBoxlitpb {
  list-style-type: decimal;
}

.tableStyle a:link,
.tableStyle a:visited {
  color: var(--color-link-blue);
  text-decoration: underline;
}

/* =========================================
   BUTTONS
========================================= */
.btnArea {
  margin: 2px auto;
  width: 100%;
}

.btnArea:hover {
  cursor: pointer;
}

.btnArea .item-cartBtn {
  background: initial;
  border: 0;
  font-size: var(--fz-btn);
  padding: 0;
  position: relative;
}

.item-cartBtn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 1;
}

.btnArea.-normal {
  margin: 5px auto;
}

.btnArea__inner {
  border-radius: 4px;
  box-sizing: border-box;
  margin: 0 auto;
  text-align: center;
  transition: .7s;
}

.btnArea__inner a,
.btnArea .orderCartBtn {
  display: block;
  font-size: var(--fz-btn);
  line-height: 1.6;
  padding: 12px 7px;
  text-decoration: none;
  transition: .7s;
}

.btnArea__inner a {
  padding: 18px 7px;
}

.btnArea .themaColorGold:hover .orderCartBtn,
.btnArea .themaColorRed:hover .orderCartBtn {
  color: var(--color-white);
}

.btnLarge {
  width: 90%;
}

@media only screen and (min-width: 768px) {
  .btnLarge {
    width: 385px;
  }
}

.btnMedium {
  width: 90%;
}

@media only screen and (min-width: 768px) {
  .btnMedium {
    max-width: 280px;
  }
}

.priceArea {
  display: none;
}

/* =========================================
   INFO AREA
========================================= */
.infoArea {
  margin: 0 auto;
  max-width: 560px;
  width: 100%;
  padding: 24px;
}

.infoArea .product-info-card__inner {
  background: var(--color-white);
  padding: 24px;
  border-radius: 4px;
  border: 0;
}