@charset "UTF-8";
img {
  max-width: 100%;
  display: block;
}

.pc_only {
  display: block;
}
@media (max-width: 768px) {
  .pc_only {
    display: none;
  }
}

.sp_only {
  display: none;
}
@media (max-width: 768px) {
  .sp_only {
    display: block;
  }
}

@media (max-width: 768px) {
  .base_cont_wrap {
    width: 95%;
    margin: 0 auto;
  }
}

.titlePtn001 {
  font-size: 16px;
  font-weight: normal;
  font-family: "Noto Sans JP", sans-serif;
  /*border-bottom: 2px solid #000;*/
  padding: 10px 0 10px 33px;
  position: relative;
}
@media (max-width: 768px) {
  .titlePtn001 {
    font-size: calc(16px - 4px + 1.06vw);
    padding: 10px 0 10px 32px;
    border-width: 1px;
    font-weight: bold;
  }
}
.titlePtn001::before {
  content: "";
  background-image: url(https://basefile.akamaized.net/adsmsl-official-ec/67d1375789454/icon_arrow_right.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 24px;
  height: 28px;
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .titlePtn001::before {
    width: 18px;
    height: 18px;
    left: 7px;
  }
}

.titlePtn002 {
  background-color: #000;
  color: #fff;
  padding: 10px 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  text-align: center;
  font-weight: 400;
}
@media (max-width: 768px) {
  .titlePtn002 {
    font-size: calc(12px - 4px + 1.06vw);
  }
}

.btnPtn001 {
  display: flex;
  /* テキストと矢印を横並びに */
  align-items: center;
  /* 中央揃え */
  justify-content: space-between;
  /* 矢印を右端に */
  border: 1px solid #000;
  border-radius: 11px;
  padding: 22px 17px;
  text-decoration: none;
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 17px;
  color: black;
  position: relative;
}
@media (max-width: 768px) {
  .btnPtn001 {
    font-size: calc(10px - 4px + 1.06vw);
    border-radius: 6px;
    padding: 11px 7px;
  }
}
.btnPtn001::after {
  content: "";
  display: inline-block;
  width: 40px;
  /* 矢印の横線の長さ */
  height: 1px;
  /* 線の太さ */
  background-color: black;
  position: absolute;
  right: 22px;
  /* ボタンの端に少し余裕を持たせる */
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .btnPtn001::after {
    width: 15px;
    height: 1px;
    right: 10px;
  }
}
.btnPtn001::before {
  content: "";
  display: inline-block;
  width: 10px;
  /* 矢印の斜め部分 */
  height: 1px;
  background-color: black;
  position: absolute;
  right: 20px;
  /* `::after` の右端に合わせる */
  top: calc(50% - 3px);
  transform: rotate(45deg);
}
@media (max-width: 768px) {
  .btnPtn001::before {
    width: 7px;
    right: 8px;
  }
}

@media (max-width: 768px) {
  #mainContent {
    min-height: 50vh;
  }
}

#defoultKvContent {
  max-width: 948px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 768px) {
  #defoultKvContent .top_kv_img img {
    object-position: -10%;
    object-fit: cover;
    width: 100%;
    height: 60px;
  }
}
#defoultKvContent .top_kv_text {
  position: absolute;
  left: 3%;
  top: 50%;
  transform: translateY(-50%);
}
#defoultKvContent .top_kv_text h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  text-align: center;
  font-weight: bold;
}
@media (max-width: 768px) {
  #defoultKvContent .top_kv_text h2 {
    font-size: calc(22px - 4px + 1.06vw);
  }
}

.mainHeaderNav {
  background: white;
  padding: 15px;
}
.mainHeaderNav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
.mainHeaderNav ul li {
  margin: 0 10px;
}

#hamburger-menu {
  display: none;
}

@media (max-width: 768px) {
  #hamburger-menu {
    display: block;
    width: 40px;
    height: 30px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    z-index: 100;
    cursor: pointer;
  }
  #hamburger-menu span {
    display: block;
    width: 100%;
    height: 4px;
    margin: 5px 0;
    background: #333;
    transition: 0.4s;
  }
  #hamburger-menu.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  #hamburger-menu.open span:nth-child(2) {
    opacity: 0;
  }
  #hamburger-menu.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .mainHeaderNav {
    display: none;
    padding: 0;
    box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.1);
  }
  .mainHeaderNav.active {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
  }
  .mainHeaderNav ul {
    flex-direction: column;
    width: 100%;
    background: white;
  }
  .mainHeaderNav ul li {
    padding: 15px;
    border-bottom: 1px solid #ddd;
    background: white;
  }
  .mainHeaderNav ul li:last-child {
    border-bottom: none;
  }
  .mainHeaderNav ul li a {
    display: block;
    text-decoration: none;
  }
  .mainHeaderNav #category-menu {
    position: relative;
  }
  .mainHeaderNav #category-menu span.mainHeaderNavColor {
    display: block;
    position: relative;
    padding-right: 20px;
    cursor: pointer;
  }
  .mainHeaderNav #category-menu span.mainHeaderNavColor::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    transition: transform 0.3s ease;
  }
  .mainHeaderNav #category-menu span.mainHeaderNavColor.active::after {
    transform: translateY(-50%) rotate(-135deg);
  }
  .mainHeaderNav #category-menu .category-list {
    display: none;
    background: white;
    margin-top: 10px;
  }
  .mainHeaderNav #category-menu .category-list.active {
    display: block;
  }
  .mainHeaderNav #category-menu .category-list #appsItemCategoryTag {
    position: static;
    box-shadow: none;
    padding: 0;
    margin: 0;
    list-style: none;
  }
  .mainHeaderNav #category-menu .category-list #appsItemCategoryTag .appsItemCategoryTag_child {
    padding: 10px 0;
    margin: 0;
    border-bottom: 1px solid #eee;
    background: white;
  }
  .mainHeaderNav #category-menu .category-list #appsItemCategoryTag .appsItemCategoryTag_child:last-child {
    border-bottom: none;
  }
  .mainHeaderNav #category-menu .category-list #appsItemCategoryTag .appsItemCategoryTag_child > a {
    padding-left: 15px;
    display: block;
    position: relative;
  }
  .mainHeaderNav #category-menu .category-list #appsItemCategoryTag .appsItemCategoryTag_child .appsItemCategoryTag_lowerchild {
    display: none;
    margin: 10px 0 0;
    padding-left: 30px;
    list-style: none;
  }
  .mainHeaderNav #category-menu .category-list #appsItemCategoryTag .appsItemCategoryTag_child .appsItemCategoryTag_lowerchild.active {
    display: block;
  }
  .mainHeaderNav #category-menu .category-list #appsItemCategoryTag .appsItemCategoryTag_child .appsItemCategoryTag_lowerchild li {
    padding: 8px 0;
    border: none;
    background: white;
  }
  .mainHeaderNav #category-menu .category-list #appsItemCategoryTag .appsItemCategoryTag_child .appsItemCategoryTag_lowerchild li a {
    font-size: 0.9em;
  }
  .mainHeaderNav #category-menu .category-list #appsItemCategoryTag .appsItemCategoryTag_child.has-child > a {
    position: relative;
  }
  .mainHeaderNav #category-menu .category-list #appsItemCategoryTag .appsItemCategoryTag_child.has-child > a::after {
    content: "";
    width: 6px;
    height: 6px;
    border-right: 2px solid #666;
    border-bottom: 2px solid #666;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    transition: transform 0.3s ease;
  }
  .mainHeaderNav #category-menu .category-list #appsItemCategoryTag .appsItemCategoryTag_child.has-child > a.active::after {
    transform: translateY(-50%) rotate(-135deg);
  }
}
.breadcrumb {
  max-width: 948px;
  margin: 0 auto 30px;
  padding: 10px 0 10px 15px;
  font-size: 16px;
  font-family: "Myriad Pro", "Myriad", Arial, sans-serif;
  display: flex;
  list-style: none;
}
@media (max-width: 768px) {
  .breadcrumb {
    font-size: calc(13px - 4px + 1.06vw);
  }
}
.breadcrumb li:not(:last-child)::after {
  content: ">";
  margin: 0 1px;
  color: #000;
}
.breadcrumb li a {
  text-decoration: none;
  color: #000;
  transition: color 0.3s ease;
}
.breadcrumb li a:hover {
  color: #0000005b;
}
.breadcrumb li:last-child {
  color: #000;
}

.topHeader {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 15px 9px;
}
@media (max-width: 768px) {
  .topHeader {
    align-items: center;
  }
}
.topHeader .logo {
  max-width: 158px;
}
@media (max-width: 768px) {
  .topHeader .logo {
    width: 17%;
  }
}
.topHeader .buttonsHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
@media (max-width: 768px) {
  .topHeader .buttonsHeader {
    padding-right: 70px;
  }
}
.topHeader .buttonsHeader .buttonCard #baseMenu ul {
  position: relative;
}
.topHeader .buttonsHeader .buttonCard #baseMenu ul .base {
  position: absolute;
  top: 0;
  left: -48px;
  width: 60px;
  height: 60px;
}
@media (max-width: 768px) {
  .topHeader .buttonsHeader .buttonCard #baseMenu ul .base {
    top: -2px;
    left: -46px;
    width: 55px;
    height: 55px;
  }
}
.topHeader .buttonsHeader .buttonCard #baseMenu ul .cart {
  position: relative;
}
.topHeader .buttonsHeader .buttonCard #baseMenu ul .cart a {
  padding-right: 57px;
  max-width: 100px;
  border-radius: 5px;
  border: 1px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .topHeader .buttonsHeader .buttonCard #baseMenu ul .cart a {
    padding: 0;
    border: none;
  }
}
.topHeader .buttonsHeader .buttonCard #baseMenu ul .cart a::before {
  content: "カート";
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  word-break: keep-all;
  text-transform: none;
  font-weight: bold;
  line-height: 1.4;
  display: block;
  position: absolute;
  top: 50%;
  left: 38px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
@media (max-width: 768px) {
  .topHeader .buttonsHeader .buttonCard #baseMenu ul .cart a::before {
    display: none;
  }
}
.topHeader .buttonsHeader .buttonCard #baseMenu ul .cart a::after {
  content: "";
  font-size: 24px;
  font-family: "Material Icons";
  font-family: "Material Symbols Outlined";
  position: absolute;
  top: -1px;
  left: 7px;
  font-size: 23px;
}
@media (max-width: 768px) {
  .topHeader .buttonsHeader .buttonCard #baseMenu ul .cart a::after {
    top: -8px;
    left: 0px;
    font-size: 30px;
  }
}
.topHeader .buttonsHeader .buttonCard #baseMenu ul .cart a img {
  visibility: hidden;
}
.topHeader .buttonsHeader .buttonContact a {
  background-color: #000;
  color: #fff;
  max-width: 100px;
  border-radius: 5px;
  text-decoration: none;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  padding: 5px 8px;
}
.cart {
  position: relative;
}

.cart-badge {
  display: block !important;
}

.cart-qty {
  position: absolute;
  top: -7px;
  right: -6px;
  padding: 0 1px;
  min-width: 14px;
  background: #fa5171;
  border-radius: 50%;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
}

#kvContent {
  max-width: 948px;
  margin: 0 auto 40px;
}
#kvContent .top_kv_img {
  width: 100%;
}
#recomendCatContent {
  max-width: 948px;
  margin: 0 auto 40px;
}
@media (max-width: 768px) {
  #recomendCatContent {
    margin: 0px auto 70px;
  }
}
#recomendCatContent .recomend_category_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  #recomendCatContent .recomend_category_list {
    gap: 25px;
    margin-top: 30px;
  }
}
#recomendCatContent .recomend_category_list .recomend_category_item {
  width: calc(33.33333% - 50px);
}
@media (max-width: 768px) {
  #recomendCatContent .recomend_category_list .recomend_category_item {
    width: calc(50% - 25px);
  }
}
#recomendCatContent .recomend_category_list .recomend_category_item a {
  text-decoration: none;
}
#recomendCatContent .recomend_category_list .recomend_category_item a h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 500;
}
@media (max-width: 768px) {
  #recomendCatContent .recomend_category_list .recomend_category_item a h2 {
    font-size: calc(14px - 4px + 1.06vw);
  }
}

#btnLinksContent {
  max-width: 948px;
  margin: 0 auto 120px;
}
@media (max-width: 768px) {
  #btnLinksContent {
    margin: 0 auto 40px;
  }
}
#btnLinksContent .btnLinksContent_items {
  display: flex;
  gap: 71px;
  justify-content: center;
  max-width: 97%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  #btnLinksContent .btnLinksContent_items {
    gap: 10px;
  }
}
#btnLinksContent .btnLinksContent_items .btnLinksContent_item {
  width: calc(33.33333% - 20px);
}
@media (max-width: 768px) {
  #btnLinksContent .btnLinksContent_items .btnLinksContent_item {
    width: calc(33.33333% - 10px);
  }
}

#blogContent {
  max-width: 948px;
  margin: 0 auto;
}
#blogContent .blogContent_wrap {
  display: flex;
  gap: 40px;
}
@media (max-width: 768px) {
  #blogContent .blogContent_wrap {
    flex-direction: column;
    gap: 22px;
  }
}
#blogContent .blogContent_wrap .blogContent_title {
  width: 12%;
  display: flex;
  justify-content: center;
  padding-top: 3px;
}
@media (max-width: 768px) {
  #blogContent .blogContent_wrap .blogContent_title {
    width: 100%;
  }
}
#blogContent .blogContent_wrap a {
  text-decoration: none;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 27px;
  font-weight: 500;
}
@media (max-width: 768px) {
  #blogContent .blogContent_wrap a {
    font-size: calc(22px - 4px + 1.06vw);
  }
}
#blogContent #blogContentItems {
  flex: 1;
  display: flex;
  flex-direction: column;
}
#blogContent #blogContentItems .blog_item {
  border-bottom: 1px solid #000;
  padding: 3px 0 3px 7px;
}
@media (max-width: 768px) {
  #blogContent #blogContentItems .blog_item {
    padding: 6px 0 6px 7px;
  }
}
#blogContent #blogContentItems .blog_item:first-child {
  border-top: 1px solid #000;
}
#blogContent #blogContentItems .blog_item a {
  display: block;
  text-decoration: none;
}
#blogContent #blogContentItems .blog_item a .blog_item_date {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  color: #000;
  margin-bottom: 10px;
  font-weight: 500;
}
@media (max-width: 768px) {
  #blogContent #blogContentItems .blog_item a .blog_item_date {
    font-size: calc(12px - 4px + 1.06vw);
    margin-bottom: 2px;
  }
}
#blogContent #blogContentItems .blog_item a .blog_item_title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #000;
  margin-bottom: 10px;
  font-weight: 500;
}
@media (max-width: 768px) {
  #blogContent #blogContentItems .blog_item a .blog_item_title {
    font-size: calc(14px - 4px + 1.06vw);
    margin-bottom: 0;
  }
}

#about #defoultKvContent .top_kv_text h2 {
  font-size: 37px;
  font-weight: 900;
}
@media (max-width: 768px) {
  #about #defoultKvContent .top_kv_text h2 {
    font-size: calc(22px - 4px + 1.06vw);
  }
}
#about .mainContent {
  max-width: 948px;
  margin: 0 auto;
  padding: 0 10px;
}
@media (max-width: 768px) {
  #about .mainContent {
    padding: 0;
  }
}
#about .mainContent section.overview {
  padding-bottom: 70px;
}
#about .mainContent section.overview .overview__title {
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  #about .mainContent section.overview .overview__title {
    font-size: calc(14px - 4px + 1.06vw);
    margin-bottom: 50px;
    line-height: 1.8;
  }
}
#about .mainContent section.overview .overview_table {
  margin-bottom: 25px;
}
#about .mainContent section.overview .overview_table .overview_table__row {
  display: flex;
  justify-content: space-between;
  /*border-bottom: 1px solid #000;*/
  padding: 15px 10px;
  font-size: 18px;
  display: flex;
}
@media (max-width: 768px) {
  #about .mainContent section.overview .overview_table .overview_table__row {
    padding: 8px 0px;
    font-size: calc(14px - 4px + 1.06vw);
  }
}
#about .mainContent section.overview .overview_table .overview_table__row:last-child {
  border-bottom: none;
}
#about .mainContent section.overview .overview_table .overview_table__row .overview_table__title {
  width: 23%;
}
@media (max-width: 768px) {
  #about .mainContent section.overview .overview_table .overview_table__row .overview_table__title {
    width: 20%;
  }
}
#about .mainContent section.overview .overview_table .overview_table__row .overview_table__content {
  flex: 1;
}
#about .mainContent section.overview .overview_link {
  max-width: 430px;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  #about .mainContent section.overview .overview_link {
    width: 73%;
    max-width: 360px;
    margin-bottom: 35px;
  }
}
#about .mainContent section.faq {
  padding-bottom: 15px;
}
#about .mainContent section.faq .titlePtn001 {
  font-size: 35px;
  font-weight: 900;
  margin-bottom: 7px;
}
@media (max-width: 768px) {
  #about .mainContent section.faq .titlePtn001 {
    font-size: calc(20px - 4px + 1.06vw);
  }
}
#about .mainContent section.faq .faq__content .faq__content__item {
  border-bottom: 1px solid transparent;
  border-image: repeating-linear-gradient(to right, #000 0, #000 5px, transparent 5px, transparent 10px) 0 0 1 0 repeat;
  padding: 15px 10px 55px;
}
@media (max-width: 768px) {
  #about .mainContent section.faq .faq__content .faq__content__item {
    padding: 15px 10px 30px;
  }
}
#about .mainContent section.faq .faq__content .faq__content__item:last-child {
  border-bottom: none;
}
#about .mainContent section.faq .faq__content .faq__content__item .faq__content__item__title {
  font-size: 16px;
  font-weight: normal;
  position: relative;
  padding: 23px 23px 23px 54px;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  #about .mainContent section.faq .faq__content .faq__content__item .faq__content__item__title {
    font-size: calc(14px - 4px + 1.06vw);
    padding: 7px 10px 5px 25px;
  }
}
#about .mainContent section.faq .faq__content .faq__content__item .faq__content__item__title::before {
  content: "Q";
  font-size: 34px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 768px) {
  #about .mainContent section.faq .faq__content .faq__content__item .faq__content__item__title::before {
    font-size: calc(20px - 4px + 1.06vw);
  }
}
#about .mainContent section.faq .faq__content .faq__content__item .faq__content__item__answer {
  font-size: 16px;
  font-weight: normal;
  padding-left: 100px;
  position: relative;
}
@media (max-width: 768px) {
  #about .mainContent section.faq .faq__content .faq__content__item .faq__content__item__answer {
    font-size: calc(14px - 4px + 1.06vw);
    padding-left: 45px;
  }
}
#about .mainContent section.faq .faq__content .faq__content__item .faq__content__item__answer::before {
  content: "A";
  font-size: 34px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  position: absolute;
  top: -20px;
  left: 49px;
}
@media (max-width: 768px) {
  #about .mainContent section.faq .faq__content .faq__content__item .faq__content__item__answer::before {
    font-size: calc(20px - 4px + 1.06vw);
    top: -4px;
    left: 25px;
  }
}
#about .mainContent section.faq .faq__content .faq__content__item .faq__content__item__answer ul {
  padding-left: 18px;
}
#about .mainContent section.faq .faq__content .faq__content__item .faq__content__item__answer ul li {
  list-style: disc;
}
#shopDetailPage #termsCheckboxWrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
#shopDetailPage #termsCheckboxWrap #termsCheckbox {
  width: 17px;
  height: 17px;
}
#shopDetailPage #termsCheckboxWrap .termsCheckbox {
  margin: 0;
}

#mainHeader {
  position: relative;
  z-index: 1000;
  background: white;
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  #mainHeader.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
}

@media (max-width: 768px) {
  body.header-fixed {
    padding-top: 60px;
  }
}

@media (max-width: 768px) {
  .inquirySection {
    width: 95% !important;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  #privacy {
    width: 95% !important;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  #privacy p {
    font-size: calc(12px - 4px + 1.06vw);
  }
}
@media (max-width: 768px) {
  #privacy dd {
    font-size: calc(12px - 4px + 1.06vw);
  }
}
@media (max-width: 768px) {
  #privacy li {
    font-size: calc(12px - 4px + 1.06vw);
  }
}

@media (max-width: 768px) {
  #law {
    width: 95% !important;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  #law h2 {
    font-size: calc(22px - 4px + 1.06vw);
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
  #law p {
    font-size: calc(12px - 4px + 1.06vw);
  }
}

@media (max-width: 768px) {
  #lawOnlineShop {
    width: 95% !important;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  #lawOnlineShop h2 {
    font-size: calc(22px - 4px + 1.06vw);
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
  #lawOnlineShop p {
    font-size: calc(12px - 4px + 1.06vw);
  }
}

@media (max-width: 768px) {
  .blog_inner {
    width: 95% !important;
    margin: 0 auto;
  }
  .blog_inner iframe.youtube {
    max-width: 100%;
    aspect-ratio: 16/9;
    height: auto;
  }
}

/*# sourceMappingURL=style.css.map */
