@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@400;700&family=Noto+Sans+JP:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Damion&family=Montserrat:ital,wght@1,400;1,800;1,900&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: 0;
  border: 0;
  word-wrap: break-word;
  word-break: normal;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input {
  -webkit-appearance: input;
}

article,
aside,
figure,
footer,
header,
main,
menu,
nav,
section {
  display: block;
}

audio,
canvas,
video {
  display: inline-block;
}

img {
  vertical-align: bottom;
}

input,
select,
textarea {
  vertical-align: middle;
  font-size: 100%;
}

ol,
ul {
  list-style-type: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong {
  font-size: 1.6rem;
  font-weight: normal;
  font-feature-settings: "palt";
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

a:visited {
  color: inherit;
}

html {
  line-height: 1.6;
}

body {
  color: #333;
}

a:link {
  color: #333;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

input[type=number] {
  border: 1px solid #333;
  border-radius: 5px;
  padding: 0.5rem 1rem;
  text-align: right;
}

input[type=text], input[type=password] {
  border: 1px solid #333;
  border-radius: 5px;
  padding: 0.5rem 1rem;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  opacity: 1;
}
@media screen and (min-width: 600px) {
  input[type=text] + input[type=text] {
    margin-left: 10px;
  }
}
h3 {
  line-height: 2;
  font-size: 2rem;
}
h3 + p, h3 + table {
  margin: 1rem 0 2rem 0;
}

.sz120 {
  width: 120px;
  max-width: 80%;
}

.sz60 {
  width: 60px;
  max-width: 80%;
}

.sz300 {
  width: 300px;
  max-width: 80%;
}

select {
  max-width: 100%;
  padding: 5px 10px;
  border: 1px solid #333;
  border-radius: 5px;
  font-size: 14px;
}

.nouse {
  display: none;
}

#search_area {
  background-color: #DFDFDF;
  margin-bottom: 3rem;
  padding: 5px 10px;
}
#search_area #search_form {
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 auto;
  justify-content: flex-end;
  gap: 10px;
  padding: 5px 0;
}
#search_area #search_form .txtsearch dd {
  display: flex;
  align-items: center;
}
#search_area #search_form .txtsearch dd input {
  height: 30px;
  font-size: 18px;
  border-radius: 0;
}
#search_area #search_form .txtsearch dd button {
  height: 30px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: black;
  color: #FFF;
}

.message_area {
  font-size: 16px;
}

textarea {
  max-width: 100%;
}

.calendar {
  margin-bottom: 20px;
}
.calendar #calendar_box {
  padding: 10px 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.calendar #calendar_box .info {
  width: 100%;
}
.calendar #calendar_box .info p {
  padding-left: 40px;
  line-height: 30px;
  position: relative;
  margin-bottom: 10px;
}
.calendar #calendar_box .info p.holiday::before {
  background-color: rgb(226, 245, 255);
}
.calendar #calendar_box .info p.juchu::before {
  background: rgb(225, 245, 118);
}
.calendar #calendar_box .info p.send::before {
  background: rgb(255, 217, 197);
}
.calendar #calendar_box .info p::before {
  display: block;
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  left: 0px;
}
.calendar #calendar_box table {
  width: 100%;
  height: 100%;
  margin: 0;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .calendar #calendar_box table {
    width: 100%;
  }
}
.calendar #calendar_box table tr {
  border: none !important;
}
.calendar #calendar_box table tr th {
  min-height: 30px;
  line-height: 30px;
  height: 30px !important;
  padding: 5px 0px !important;
  text-align: center;
  font-size: 11px !important;
  border-bottom: none;
}
.calendar #calendar_box table tr th.monthtxt {
  border-bottom: none;
  font-weight: bold;
  font-size: 14px !important;
}
.calendar #calendar_box table tr:nth-child(1) th {
  background: #b28850;
  color: #fff;
}
.calendar #calendar_box table tr:nth-child(2) th {
  border-bottom: 1px solid #333;
}
.calendar #calendar_box table tr:nth-child(2) th:nth-child(1) {
  background: #fff;
  color: #a40000;
}
.calendar #calendar_box table tr:nth-child(2) th:nth-child(7) {
  background: #FFF;
  color: #00a0e9;
}
.calendar #calendar_box table tr td {
  font-size: 11px !important;
  height: 30px !important;
  text-align: center;
  line-height: 30px;
  min-height: 30px;
  border-left: 1px solid #333;
  border-bottom: 1px solid #333;
  padding: 0 !important;
  font-weight: 700;
}
.calendar #calendar_box table tr td.other {
  filter: opacity(0.3);
}
.calendar #calendar_box table tr td:nth-child(7) {
  border-right: 1px solid #333;
}
.calendar #calendar_box table tr td.holiday {
  background: #a40000;
  color: #FFF;
}
.calendar #calendar_box table tr td:nth-child(1) {
  background: #a40000;
  color: #fff;
}
.calendar #calendar_box table tr td:nth-child(7) {
  background: #00a0e9;
  color: #FFF;
}
.calendar #calendar_box table tr td.other1 {
  background: #fff;
  color: #333;
}
.calendar #calendar_box table tr td.other2 {
  background: #fff;
  color: #333;
}
.calendar #calendar_box table tr td.other3 {
  background: #fff;
  color: #333;
}

body {
  list-style: 1.6;
}
@media screen and (max-width: 599px) {
  body {
    padding-top: 120px;
  }
}

/* 左メニューを出さないページを設定 */
@media screen and (min-width: 600px) {
  .LC_Page_Shopping #leftcolumn,
.LC_Page_Entry #leftcolumn,
.LC_Page_AbstractMypage #leftcolumn {
    display: none;
  }
  .LC_Page_Shopping #leftcolumn + #main_column,
.LC_Page_Entry #leftcolumn + #main_column,
.LC_Page_AbstractMypage #leftcolumn + #main_column {
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .frame_outer {
    overflow-x: hidden;
  }
}
img {
  max-width: 100%;
}

html {
  font-size: 10px;
  font-family: "Hiragino Sans", "ヒラギノ角ゴシック", "BIZ UDPゴシック", "Noto Sans JP", "M PLUS 1p", "メイリオ", sans-serif, "Font Awesome 5 Free";
}

.wrapper {
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  .wrapper {
    width: 100%;
    margin: 0 auto;
  }
}
body {
  position: relative;
}

header {
  max-width: 100%;
  background-color: #fff;
}
@media screen and (max-width: 599px) {
  header {
    position: fixed;
    top: 0;
    z-index: 100;
  }
}
header .header_line {
  background-color: #333;
  color: #fff;
  height: 40px;
}
header ul {
  line-height: 40px;
  display: flex;
  justify-content: flex-start;
}
@media screen and (max-width: 599px) {
  header ul {
    flex-wrap: wrap;
  }
}
header ul .title {
  font-size: 0.8rem;
  width: 50%;
}
@media screen and (max-width: 599px) {
  header ul .title {
    height: 20px;
    line-height: 20px;
    text-align: center;
    width: 100%;
  }
  header ul .telphone a[href^="tel:"] {
    pointer-events: auto;
  }
}
header ul .telphone {
  width: 25%;
  position: relative;
}
header ul a[href^="tel:"] {
  pointer-events: none;
  text-decoration: none;
  color: #fff;
}
header ul .telphone::before {
  line-height: 20px;
  float: left;
  font-weight: bold;
  content: "\f879";
  font-size: 20px;
  margin: 10px;
  width: 20px;
  height: 20px;
  display: block;
}
@media screen and (max-width: 599px) {
  header ul .telphone::before {
    margin: 0;
    margin-left: 30px;
    font-size: 15px;
    line-height: 20px;
  }
}
@media screen and (max-width: 599px) {
  header ul .telphone {
    height: 20px;
    width: 50%;
    line-height: 20px;
    padding-left: 10px;
  }
}
header ul .hour {
  width: 25%;
}
@media screen and (max-width: 599px) {
  header ul .hour {
    height: 20px;
    width: 50%;
    line-height: 20px;
    text-align: center;
  }
}

@media screen and (max-width: 599px) {
  nav#sp_nav ul > li a {
    display: flex;
    font-size: 10px;
    height: 100%;
    width: calc(100vw / 6);
    word-wrap: break-word;
    justify-content: center;
    padding: 0 5px;
    align-items: center;
  }
  nav#sp_nav ul#menu_paint_h > li a,
  nav#sp_nav ul#menu_tool_h > li a {
    width: 100%;
    justify-content: start;

  }
  nav#sp_nav ul > li a::before {
    content:none;
  }
  nav#sp_nav ul {
    margin-bottom: 0;
    width: 100vw;
  }
  nav#sp_nav ul > li {
    width: calc(100% / 6);
    height: 40px;
  }
  nav#sp_nav ul#menu_paint_h > li,
  nav#sp_nav ul#menu_tool_h > li {
    width: 45%;
  }
  nav ul > li:hover > ul#menu_paint_h {
    left: calc(-1*(100%));
  }
  nav ul > li:hover > ul#menu_tool_h {
    left: calc(-2*(100%));
  }
}
nav ul > ul {
  display: none;
}
nav ul {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
  margin-bottom: 3rem;
}
nav ul > li {
  z-index: 10;
  text-align: center;
  width: calc((100% - 7px) / 6);
  border-right: 1px dotted #ccc;
  height: 60px;
  position: relative;
}
nav ul > li:first-child {
  border-left: 1px dotted #ccc;
}
nav ul > li a {
  padding: 2.2rem 0;
  display: block;
  font-size: 1.6rem;
  position: relative;
}
nav ul > li a::before {
  content: attr(data-en);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(30, 167, 57, 0.3);
  font-size: 2.4rem;
  font-weight: bold;
  font-style: italic;
  font-family: "Montserrat", sans-serif;
  z-index: 1;
}
nav ul > li:hover > ul {
  display:flex;
  opacity: 1;
  top: 0;
  filter: drop-shadow(2px 2px 8px #888);
}
nav ul > li:hover > ul li {
  height: 45px;
}
nav ul > li:hover > ul li:hover {
  background-color: #EEE;
  transition-duration: 0.3s;
}
nav ul > li:hover > ul li a {
  display: flex;
  align-items: center;
  padding: 0px 20px;
}
nav ul > li:hover > ul li a img {
  margin-right: 20px;
}
nav ul > li ul {
  background-color: #fff;
  left: 0;
  position: relative;
  top: -100%;
  z-index: 1;
  opacity: 0;
  width: 500px;
  display: none;
  /* display: flex;
  flex-wrap: wrap;
  justify-content: space-between; */
}
nav ul > li ul li {
  height: 0;
  border: none !important;
  text-align: left;
  width: 45%;
}
nav ul > li ul li a {
  height: 45px;
  width: 100%;
  display: block;
}
div#pagetop {
  width: 100%;
  text-align: center;
}
div#footer {
  display: block;
}
#footer_wrap {
  color: #FFF;
  background: #333;
  margin-top: 3rem;
  text-align: center;
}
#footer_wrap #copyright {
  margin-top: 20px;
  color: #FFF;
  padding: 5px 5px 30px 5px;
}
#footer_wrap .footer_top {
  padding-top: 30px;
  display: flex;
  justify-content: space-around;
  width: 100%;
}
#footer_wrap .footer_top_left {
  width: 20%;
}
#footer_wrap .footer_top .footer_logo {
  background-color: white;
  padding: 20px;
  border-radius: 20px;
}
#footer_wrap .footer_open {
  letter-spacing: 5px;
  padding-top: 20px;
}
#footer_wrap .footer_top .footer_top_right {
  display: flex;
  justify-content: space-between;
  width: 40%;
  text-align: left;
}
#footer_wrap .footer_top .footer_top_right .left_col,
#footer_wrap .footer_top .footer_top_right .right_col{
  width: 35%;
}
#footer_wrap p.footer_navi_title {
  font-size: 13px;
  padding: 10px 3px 3px 10px;
  border-bottom: 1px solid #F2F2F2;
}
#footer_wrap ul.footer_navi {
  padding: 10px;
}
#footer_wrap .footer_navi li {
  padding: 10px;
}
#footer_wrap ul.footer_navi a:link{
  color: white;
}
@media (max-width: 599px) {
  #footer_wrap .footer_top {
    display: block;
  }
  #footer_wrap .footer_top .footer_top_right,
  #footer_wrap .footer_top .footer_top_left {
    width: 90%;
    margin: 0 auto;
  }
  #footer_wrap .footer_top .footer_top_right{
    padding-top: 30px;
  }
}
.header-item {
  height: 120px;
  display: flex;
  align-items: center;
}
@media (max-width: 599px) {
  .header-item {
    padding: 10px 20px;
    height: 80px;
  }
  .header-item img {
    height: 60px;
  }
}
.header-item > li:first-child {
  width: 200px;
}
@media (max-width: 599px) {
  .header-item > li:first-child {
    width: 40%;
  }
}
.header-item > li:last-child {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 599px) {
  .header-item > li:last-child {
    width: 60%;
  }
}
.header-item > li:last-child .pc_menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  align-items: center;
}
.header-item > li:last-child .pc_menu li {
  font-size: 16px;
  padding: 0 15px;
}
.header-item > li:last-child .sp_menu {
  display: none;
}
@media (max-width: 599px) {
  .header-item > li:last-child .pc_menu {
    display: none;
  }
  .header-item > li:last-child .sp_menu {
    width: 157px;
    gap: 8px;
    display: flex;
  }
  .header-item > li:last-child .sp_menu li {
    width: 25px;
    height: 25px;
    gap: 8px;
    border-radius: 999px;
    position: relative;
    font-size: 20px;
  }
  .header-item > li:last-child .sp_menu li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
  }
}

#btn_contact_us {
  text-align: center;
  font-size: 1.1rem;
  display: block;
  width: 250px;
  border-radius: 5px;
  height: 50px;
  line-height: 15px;
  padding: 10px;
  color: #fff;
  background-color: rgb(30, 167, 58);
  border-bottom: 5px solid rgb(50, 99, 50);
  position: relative;
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
}
#btn_contact_us:hover {
  margin-top: 3px;
  color: #fff;
  background: rgb(30, 167, 58);
  border-bottom: 2px solid rgb(50, 99, 50);
}
#btn_contact_us::before {
  font-size: 30px;
  line-height: 30px;
  content: "\f0e0";
  width: 40px;
  height: 40px;
  float: left;
  margin-right: 20px;
}

.nav_info {
  background-color: #f0f0f0;
  font-size: 14px;
}
@media (max-width: 599px) {
  .nav_info {
    display: none;
  }
}
.nav_info > div {
  display: flex;
  flex-wrap: nowrap;
}
.nav_info > div > div {
  height: 50px;
  width: 50%;
  align-items: center;
  display: flex;
}
.nav_info > div > div:first-child a {
  color: #333;
  display: block;
  margin-right: 20px;
}
.nav_info > div > div:first-child a::before {
  content: "▶";
}

main {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 599px) {
  main {
    position: relative;
    overflow-x: hidden;
  }
  main #leftcolumn,
main #main_column {
    width: 100%;
  }
}

#main_column {
  width: calc(100% - 230px - 40px);
  width: 100%;
}
@media (max-width: 599px) {
  #main_column {
    margin-top: 30px;
    margin-left: -100%;
    width: 100%;
    padding: 0 15px;
  }
}
@media screen and (min-width: 600px) {
  #leftcolumn + #main_column {
    width: calc(100% - 230px - 40px);
  }
}
@media screen and (max-width: 599px) {
  #leftcolumn div#leftcolumn {
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 1;
  }
}
#left_column > * {
  margin-bottom: 3rem;
}
@media screen and (max-width: 599px) {
  #left_column {
    width: 100%;
  }
}
#left_column .left_box p {
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
}
#left_column .left_box p + p {
  font-size: 1.2rem;
  border-bottom: 2px solid #333;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
@media screen and (min-width: 600px) {
  #left_column {
    width: 230px;
  }
}
@media screen and (max-width: 599px) {
  #left_column {
    overflow-y: scroll;
    padding: 0 15px;
    background-color: #fff;
    z-index: 99;
    position: relative;
    right: -100%;
    transition-duration: 0.5s;
  }
  #left_column.active {
    display: block;
    right: 0%;
    transition-duration: 0.5s;
  }
  #left_column.active + #main_column {
    transition-duration: 0.5s;
    filter: blur(10px);
  }
}

.l_menu li:first-child {
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  padding: 10px 0px;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
}
.l_menu li:nth-child(n+2) {
  width: 100%;
  height: 40px;
}
.l_menu li:nth-child(n+2) a {
  display: flex;
  align-items: center;
  font-size: 14px;
  border-bottom: 1px dashed #333;
}
.l_menu li:nth-child(n+2) a img {
  width: 30px;
  height: 30px;
  margin: 5px 10px 5px 5px;
}

#menu_calendar lI {
  height: auto;
}

.maker_list {
  display: none;
}
.maker_list > li {
  overflow-y: hidden;
}
.maker_list > li input {
  display: none;
}
.maker_list > li input ~ ul {
  padding: 0px 20px;
  background-color: #f4f4f4;
}
.maker_list > li input ~ ul li {
  font-size: 12px;
  height: 0px;
  transition-duration: 0.5s;
  line-height: 20px;
}
.maker_list > li input ~ ul li a {
  color: #333;
}
.maker_list > li input:checked ~ ul {
  padding: 10px 20px;
}
.maker_list > li input:checked ~ ul li {
  height: 30px;
  transition-duration: 0.5s;
}
.maker_list > li label {
  font-size: 16px;
  padding: 10px 20px;
  border: 1px solid #333;
  z-index: 10;
  display: block;
  background-color: #fff;
  position: relative;
}

#footer_area {
  background-color: #ccc;
  margin-top: 60px;
  height: 80px;
}

.left_box {
  height: 54px;
}

h2 {
  position: relative;
  padding: 10px;
  padding-left: 30px;
  border-radius: 50px;
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 27px;
  background-color: #f5f5f5;
  /* line-height: 54px;
  height: 54px; */
}
@media screen and (max-width: 599px) {
  h2 {
    font-size: 18px;
    padding: 5px;
    padding-left: 30px;
  }
}
h2 span {
  font-size: 0.7em;
  font-weight: normal;
  position: absolute;
  bottom: 6px;
  right: 0px;
}

article {
  margin-bottom: 90px;
}
@media screen and (max-width: 599px) {
  article {
    margin-bottom: 40px;
  }
}
article h3 {
  margin-bottom: 1px solid #333;
}
article.bn_list .bannerbox {
  display: flex;
  flex-wrap: wrap;
  width: 90%;
  margin: 0 auto;
  justify-content: space-between;
}
article.bn_list .bannerbox li {
  margin-bottom: 10px;
}
article.bn_list .bannerbox li a {
  display: block;
}
article.bn_list .bannerbox li a img {
  width: 100%;
  max-width: auto;
}
article.bn_list.one_column li {
  width: 100%;
}
article.bn_list.two_column li {
  width: calc(50% - 5px);
}

/*=============================
.btn-trigger
=============================*/
.btn-trigger {
  position: relative;
  width: 25px;
  height: 22px;
  cursor: pointer;
}

.btn-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #333;
  border-radius: 4px;
}

.btn-trigger,
.btn-trigger span {
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
}

.btn-trigger span:nth-of-type(1) {
  top: 2px;
}

.btn-trigger span:nth-of-type(2) {
  top: 12px;
}

.btn-trigger span:nth-of-type(3) {
  bottom: 1px;
}

/*=============================
#sphun
=============================*/
#sphun.active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
  transform: translateY(10px) rotate(-45deg);
}

#sphun.active span:nth-of-type(2) {
  left: 200%;
  opacity: 0;
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
  -webkit-animation: active-sphun-bar02 0.8s forwards;
  animation: active-sphun-bar02 0.8s forwards;
}

@-webkit-keyframes active-sphun-bar02 {
  100% {
    height: 0;
  }
}
@keyframes active-sphun-bar02 {
  100% {
    height: 0;
  }
}
#sphun.active span:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(45deg);
  transform: translateY(-10px) rotate(45deg);
}

#customervoice_area {
  display: none;
}
h2.item-name {
  background-color: transparent;
  border-bottom: 3px solid black;
  border-radius: 0;
  padding-left: 0px;
  margin-bottom: 0px;
}
.fa.fa-heart {
  padding-right:10px
}
.fa.fa-heart.mr-2 {
  font-weight: normal;
}
#detailarea {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-evenly;
  gap: 30px;
}
#detailarea #detailphotobloc {
  flex: 1 1 500px;
  max-width: 40%;
  margin-top: 30px;
}
#detailarea #detailrightbloc {
  flex: 1 1 430px;
  max-width: 35%;
  position: sticky;
  top: 20px;
  height: 100%;
}
#detailarea #detailrightbloc h2 {
  font-size: 2rem;
  line-height: 1.6;
  height: auto;
}
#detailarea .spc_tbl {
  width: 100%;
}
#detailarea .item_code dt,
#detailarea .point dt,
#detailarea .maker dt,
#detailarea .comment1 dt {
  background-color:whitesmoke;
  width: 50%;
  text-align:center;
}
#detailarea .item_code dd,
#detailarea .point dd,
#detailarea .maker dd,
#detailarea .comment1 dd {
  padding-right:30px;
  word-break:break-all;
}
#detailarea dl.item_code,
#detailarea dl.point,
#detailarea dl.maker,
#detailarea dl.comment1 {
  border-bottom:1px solid whitesmoke;
}
#detailrightbloc .cart_area.clearfix {
  margin-top: 40px;
}
#detailrightbloc tr td {
  width: 100%;
  height: 10px;
}
@media screen and (min-width: 600px) { 
  #detailarea #detailrightbloc .main_comment.main_comment_SP{
    display: none;
  }
}
@media screen and (max-width: 599px) {
  #detailarea {
    flex-direction: column;
  }
  #detailarea #detailphotobloc,
#detailarea #detailrightbloc {
    width: 100%;
  }
  #detailarea #detailphotobloc {
    max-width: 500px;
  }
  #detailarea #detailrightbloc {
    max-width: 430px;
  }
  #detailarea #detailphotobloc .main_comment.main_comment_PC{
    display: none;
  }
}

.slick-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.slick-dots li {
  display: block;
  aspect-ratio: 1;
  background-size: 100%;
  width: calc((100% - 90px) / 10);
  background-size: 100%;
}

.detail-CatchCopy {
  font-size: 1.6rem;
}

.slick-dots li {
  background-repeat: no-repeat;
  background-position: center;
  transition-duration: 0.5s;
}
.slick-dots li button {
  width: 100%;
  visibility: hidden;
}
.slick-dots li:not([class=slick-active]) {
  opacity: 0.5;
}
.slick-slide img {
  margin: 0 auto;
}

.detail .slick-dots {
  padding-top: 30px;
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  width: 80%;
  margin: 0 auto;
}
.detail .slick-list {
  background-color: whitesmoke;
  aspect-ratio: 1 / 1;
  border: 2px solid whitesmoke;
}
.detail .slick-list div{
  width: 100%;
  height: 100%;
}
.detail .slick-dots li {
  display: block;
  aspect-ratio: 1;
  background-size: 100%;
  width: 50px;
  height: 50px;
  overflow: hidden;
}
.detail .slick-dots li button {
  width: 100%;
  visibility: hidden;
}
.detail .slick-dots li:not([class=slick-active]) {
  opacity: 0.5;
}
.detail .slick-slide img {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  object-fit: contain;
}
.detail .slick-track {
  display: flex;
  align-items: center;
  height: 100%;
  background-color: #f5f5f5;
}
.detail .slick-prev, .slick-next {
  position: absolute;
  bottom: 10px;
  height: 30px;
  width: 30px;
}
.detail .slick-prev, .slick-next img{
  background-color: white;
}
.detail .slick-prev {
  left: 0px;
}
.detail .slick-next {
  right: 0px;
}
.detail .item_slider li + li {
  margin-top: 0;
}
.detail .item_slider li + li {
  margin-top: 0;
}
@media screen and (max-width: 599px) {
  .detail .slick-prev {
    left: 5px;
  }
  .detail .slick-next {
    right: 5px;
  }
}
.Top_Carousel {
  /* overflow: hidden;
  max-height: 550px; */
  opacity: 0;
}
.Top_Carousel a {
  text-align: center;
}
.Top_Carousel.active {
  display: none;
}
.Top_Carousel.slick-initialized {
  opacity: 1;
  transition-duration: 0.3s;
}
.main_comment{
  margin-top: 60px;
}
.main_comment table {
  font-size: 1.6rem;
}

.PickUp_Select {
  width: 95%;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  padding-bottom: 20px;
}
.PickUp_Select a {
  border-bottom: 1px solid black;
  padding-bottom: 10px;
  display: block;
  width: 50%;
  text-align: center;
  font-size: 2rem;
  line-height: 4rem;
  position: relative;
  margin: 15px;
}
.PickUp_Select a::after {
  display: block;
  content: "";
  height: 4px;
  position: absolute;
  background-color: black;
  bottom: 0;
  width: 0;
  transition-duration: 0.25s;
  transition-timing-function: linear;
}
.PickUp_Select a.active {
  transition-delay: 0.25s;
  transition-duration: 0.5s;
  transition-timing-function: linear;
  color: black;
  font-weight: bold;
}
.PickUp_Select a.active:after {
  transition-duration: 0.25s;
  transition-delay: 0.25s;
  width: 100%;
}
.PickUp_Select a:first-child::after {
  right: 0;
}
.PickUp_Select a:last-child::after {
  left: 0;
}
@media screen and (max-width: 599px) {
  .PickUp_Select {
    padding-bottom: 10px;
  }
  .PickUp_Select a {
    font-size: 1.6rem;
    line-height: 2rem;
    margin: 8px;
  }
  .PickUp_Select a::after {
    height: 2px;
  }
}
#Beginer_Recommend ul.beginer {
  padding-top: 40px;
  margin: 0 auto;
  width: 90%;
  display: flex;
  justify-content: space-between;
}
#Beginer_Recommend ul.beginer li {
  background-color: #f4f4f4;
  width: calc((100% - 20px) / 2);
}
#Beginer_Recommend ul.beginer li > p {
  height: 4rem;
  line-height: 4rem;
  font-size: 1.6rem;
  color: #fff;
  background: #333;
  width: 100%;
  text-align: center;
  position: relative;
}
#Beginer_Recommend ul.beginer li > p::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  bottom: -10px;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-top: 10px solid #333;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}
#Beginer_Recommend ul.beginer li ul {
  display: flex;
  padding: 12px;
  gap: 12px;
  flex-wrap: wrap;
}
#Beginer_Recommend ul.beginer li ul li {
  margin-bottom: 2rem;
  width: calc((100% - 12px) / 2);
}
#Beginer_Recommend ul.beginer li ul li span {
  background-color: #fff;
  text-align: center;
  display: block;
  width: 100%;
  margin-bottom: 1rem;
  max-width: 100%;
  max-height: 100%;
  display: block;
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: 1rem;
  overflow: hidden;
}
#Beginer_Recommend ul.beginer li ul li span img {
  max-height: 100%;
  max-width: 100%;
}
#Beginer_Recommend ul.beginer li ul li p {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-top: 1rem;
  font-size: 1.4rem;
}
@media screen and (max-width: 599px) {
  #Beginer_Recommend ul.beginer {
    padding-top: 0px;
    flex-direction: column;
  }
  #Beginer_Recommend ul.beginer li {
    width: 100%;
  }
}

.spc_tbl,
.spc_tbl td,
.spc_tbl th {
  border-collapse: collapse;
  border-top: solid 1px #ccc;
  border-bottom: solid 1px #ccc;
  text-align: left;
  font-size: 12px;
}

.spc_tbl td,
.spc_tbl th {
  padding: 6px 8px 4px;
  font-weight: normal;
}

.spc_tbl th {
  width: 20%;
  background-color: #efefef;
}

.spc_tbl caption {
  text-align: left;
  font-weight: bold;
}
h2 span.count {
  position: unset;
  font-size: 15px;
  font-weight: bold;
}

#page_navi_bottom .sort, #page_navi_bottom .change, #page_navi_bottom .zaiko {
  display: none;
}
.list_box {
  flex-wrap: wrap;
  display: flex;
  flex-direction: column;
}
.list_box form {
  position: relative;
  width: 100%;
  padding-bottom: 3rem;
}
.list_box form .listphoto {
  text-align: center;
}
.list_box form h3 {
  font-size: 1.4rem;
  line-height: 1.5;
}
.list_box form .price {
  color: #f00;
}
@media screen and (max-width: 599px) {
  .list_box form .list_area {
    display: flex;
    width: 100%;
  }
  .list_box form .list_area .listphoto {
    width: 100px;
    margin-right: 5px;
  }
  .list_box form .list_area .listphoto + div {
    width: calc(100% - 105px);
    text-align: right;
  }
  .list_box form .list_area .listphoto + div h3 {
    text-align: left;
  }
}
@media screen and (min-width: 600px) {
  .list_box {
    justify-content: space-around;
    flex-direction:unset;
  }
  .list_box form {
    width: calc((100% - 60px) / 4);
    padding-bottom: 3rem;
    margin: 40px 10px;
  }
  .list_box form .listphoto {
    text-align: center;
    aspect-ratio: 1 / 1;
    background-color: whitesmoke;
    margin-bottom: 10px;
  }
  .list_box form .listphoto a img {
    object-fit: contain;
    width: 100%;
    height: 100%;
  }
  .list_box form h3 {
    font-size: 1.4rem;
    line-height: 1.5;
  }
  .list_box form .price {
    color: #f00;
    font-weight: bold;
    font-size: 1.4rem;
    position: absolute;
    bottom: 0;
    right: 0;
    line-height: 3rem;
  }
}

.also {
  padding-top: 40px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media screen and (max-width: 599px) {
  .also {
    padding-top: 0px;
  }
}
.also li {
  width: 100%;
}
.also li.harf {
  width: calc((100% - 10px) / 2);
}
.also li img {
  max-width: auto;
  width: 100%;
}

.cs_itemTable tr {
  display: flex;
  flex-wrap: nowrap;
  min-height: 4rem;
  border: 1px solid #333;
}
.cs_itemTable tr + tr {
  border-top: none;
}
.cs_itemTable tr td {
  font-size: 1.4rem;
  padding: 1rem;
  display: flex;
}
.cs_itemTable tr td:first-child {
  width: 30%;
  background-color: #f4f4f4;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-right: 2rem;
}
.cs_itemTable tr td:first-child::after {
  background-color: #f4f4f4;
  display: block;
  width: 20px;
  height: 20px;
  content: "";
  position: absolute;
  transform: rotateZ(45deg);
  transform-origin: center center;
  right: -10px;
  top: calc(50% - 10px);
}
.cs_itemTable tr td:last-child {
  width: 100%;
  align-items: center;
}

.item_head {
  border-bottom: 3px solid #333333;
  margin-bottom: 1rem;
}
.item_head span {
  width: 14rem;
  height: 3rem;
  line-height: 3rem;
  color: #fff;
  background-color: #333;
  text-align: center;
  display: block;
  font-size: 1.4rem;
}

#detailrightbloc {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sale_price {
  font-size: 2rem;
  color: #cb0000;
}
.cartin .cartin_btn {
  margin-top: 60px;
}
.cartin .cartin_btn a {
  display: inline-block;
  color: #fff;
  background: #333;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 4rem;
  text-align: center;
  width: 100%;
}

.alignR {
  text-align: right;
}
.alignL {
  text-align: left;
}
.alignC {
  text-align: center;
}

/* テーブルデザイン */
.cart_table,
.deliv_table,
.cart_confirm_table,
.buylist_table {
  table-layout: fixed;
  width: 100%;
}

#mycontents_area table {
  table-layout: fixed;
  width: 100%;
}
#mycontents_area table.rightTable {
  margin: 0 0 0 auto;
  width: 400px;
  max-width: 100%;
}

#payment {
  width: 300px;
}

.price .item_code {
  font-size: 1.2rem;
  color: #333;
  text-align: right;
}
.price span.normal_price {
  color: gray;
  font-size: small;
  font-weight: normal;
}

.t_head {
  padding: 0.5rem 2rem;
  font-size: 12px;
  background-color: #333;
  color: #FFF;
  display: inline;
  margin-bottom: 0.5rem;
}

.deliv_table,
table#payment {
  font-size: 14px;
}
.deliv_table tr:has(td),
table#payment tr:has(td) {
  border: 1px solid #D8D8D8;
}
.deliv_table tr td,
table#payment tr td {
  padding: 5px;
}
.deliv_table tr:has(input[type=radio]:checked),
table#payment tr:has(input[type=radio]:checked) {
  background-color: #333;
  color: #FFF;
}

table#payment td {
  text-align: center;
}

.pagenumber_area {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
}
.pagenumber_area div {
  width: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pagenumber_area div:last-child {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin: 10px;
}
.pagenumber_area div:last-child > * {
  text-align: center;
  display: inline-block;
  width: min(32px, (100vw - 80px) / 9);
}

.guideList section + section {
  margin-top: 2rem;
}
.guideList section h3 {
  position: relative;
  border-bottom: 5px solid #ddd;
  padding: 5px 0;
  font-size: 20px;
  line-height: 1.5;
}
.guideList section h3:before {
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 20%;
  height: 5px;
  content: "";
  background: #27acd9;
}
.guideList section h3 + div {
  margin: 1.5rem 0 2.5rem;
}

a.allBtn {
  display: block;
  border: 2px solid #333;
  margin: 10px 20px;
  border-radius: 10px;
  padding: 10px;
  font-size: 20px;
  background: #FFF;
  box-shadow: 2px 2px 2px #333;
  text-align: center;
}
@media screen and (max-width: 599px) {
  a.allBtn {
    font-size: 12px;
    margin: 0px 20px 40px 20px;
  }
}
table.cart_price,
table.delivname {
  margin: 10px 0;
  text-align: right;
  width: 100%;
  font-size: 14px;
}

#calender_box table {
  width: 80%;
  margin: 2rem auto;
}
#calender_box table .monthtxt {
  background-color: #b28850;
  text-align: center;
  color: #FFF;
  font-size: 14px;
}
#calender_box table tr th {
  text-align: center;
  color: #333;
  border: 1px solid #ccc;
  background-color: #FFF;
}
#calender_box table tr:nth-child(2) th:first-child {
  color: #a40000;
}
#calender_box table tr:nth-child(2) th:last-child {
  color: #00a0e9;
}
#calender_box table tr:nth-child(n+2) td:first-child, #calender_box table tr:nth-child(n+2) td.holiday {
  background-color: #a40000;
  color: #FFF;
}
#calender_box table tr:nth-child(n+2) td:last-child {
  background-color: #00a0e9;
  color: #FFF;
}
#calender_box table tr:nth-child(n+2) td.other {
  opacity: 0.5;
}
#calender_box table tr td {
  text-align: center;
  border: 1px solid #ccc;
  color: #333;
  background-color: #FFF;
}

/* マイページ関連 */
/** ログインページ **/
p.login_memory{
  padding-top: 5px;
}
p.login_memory label {
  padding-left: 3px;
}
.loginBox {
  display: flex;
  width: 90%;
  margin: 0 auto;
  gap: 3rem;
  flex-wrap: wrap;
}
.loginBox .loginBox_child {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 600px) {
  .loginBox .loginBox_child {
    width: calc((100% - 3rem) / 2);
  }
}
.loginBox .loginBox_child .login_area {
  border: 1px solid #d8d8d8;
  padding: 2rem 12%;
}
.loginBox .loginBox_child .login_area + .login_area {
  margin-top: 2rem;
}
.loginBox .loginBox_child .login_area > * + * {
  margin-top: 3rem;
}
.loginBox .loginBox_child .login_area input[type=text],
.loginBox .loginBox_child .login_area input[type=password] {
  height: 4rem;
  padding: 1rem;
  border: 1px solid #707070;
  font-size: 16px;
  width: 100%;
  transition-duration: 0.3s;
}
.loginBox .loginBox_child .login_area input[type=text]:focus,
.loginBox .loginBox_child .login_area input[type=password]:focus {
  box-shadow: 0px 0px 1px 1px #1ea73a inset;
  border: 1px solid #1ea73a;
  transition-duration: 0.3s;
}

a.submit_btn,
input.submit_btn {
  height: 4.8rem;
  width: 100%;
  color: #fff;
  background-color: #333;
  font-size: 1.6rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}
a.submit_btn.canceled,
input.submit_btn.canceled {
  background-color: #fff;
  color: #333;
  border: 1px solid #333;
}

.btn_area {
  margin: 2rem;
  font-size: 16px;
}
.btn_area ul {
  display: flex;
  justify-content: space-around;
  width: 100%;
}
@media screen and (max-width: 599px) {
  .btn_area ul {
    flex-direction: column;
  }
  .btn_area ul li + li {
    margin-top: 10px;
  }
}
.btn_area ul li {
  text-align: center;
}
.btn_area ul li:first-child {
  width: 100%;
}
@media screen and (min-width: 600px) {
  .btn_area ul li:first-child:nth-last-child(2), .btn_area ul li:first-child:nth-last-child(2) ~ li {
    width: 45%;
  }
  .btn_area ul li:first-child:nth-last-child(3), .btn_area ul li:first-child:nth-last-child(3) ~ li {
    width: 30%;
  }
  .btn_area ul li:first-child:nth-last-child(4), .btn_area ul li:first-child:nth-last-child(4) ~ li {
    width: 22.5%;
  }
}
.btn_area ul li a.submit_btn,
.btn_area ul li input[type=submit] {
  border-radius: 2px;
  padding: 5px;
  border: 1px solid #222222;
  color: #333;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn_area ul li a {
  border:none;
  background-color: #FFF;
}
.btn_area ul li input[type=submit] {
  background-color: #222222;
  color: #FFF;
}

.kiyaku_text {
  font-family: "Hiragino Sans", "ヒラギノ角ゴシック", "BIZ UDPゴシック", "Noto Sans JP", "M PLUS 1p", "メイリオ", sans-serif, "Font Awesome 5 Free";
  white-space: pre-wrap;
  padding: 20px;
  overflow-y: scroll;
  margin-top: 50px;
  margin-bottom: 50px;
  width: 90%;
  height: 500px;
  border: 1px solid #cfcfcf;
  width: 100%;
}

#undercolumn_entry {
  width: 100%;
  font-size: 14px;
}
#undercolumn_entry table{
  width: 100%;
}
#undercolumn_entry tr {
  border-bottom: 1px solid #d8d8d8;
}
#undercolumn_entry tr:first-child {
  border-top: 1px solid #d8d8d8;
}
#undercolumn_entry tr th {
  width: 25%;
  background-color: #f4f4f4;
}
#undercolumn_entry tr td {
  width: 75%;
  padding: 10px 2.5%;
}
#undercolumn_entry tr td .mv10 {
  margin: 10px 0;
}
#undercolumn_entry tr td input[type=text],
#undercolumn_entry tr td input[type=password] {
  box-sizing: border-box;
  height: 40px;
  padding: 5px 10px;
  line-height: 28px;
  border: 1px solid #707070;
  background: #fff;
  transition-duration: 0.25s;
}
#undercolumn_entry tr td input[type=text]:focus,
#undercolumn_entry tr td input[type=password]:focus {
  box-shadow: 0px 0px 1px 2px #1ea73a inset;
  border-color: #1ea73a;
  transition-duration: 0.25s;
}
#undercolumn_entry tr td input[type=text] + input,
#undercolumn_entry tr td input[type=password] + input {
  margin-left: 2em;
}
#undercolumn_entry tr td input[type=text] + span,
#undercolumn_entry tr td input[type=password] + span {
  margin: 0 1em;
  display: inline-block;
}
@media screen and (max-width: 599px) {
  #undercolumn_entry tr td input[type=text] + span,
#undercolumn_entry tr td input[type=password] + span {
    margin: 0 0.4em;
  }
}
#undercolumn_entry tr td input[type=text].sz60,
#undercolumn_entry tr td input[type=password].sz60 {
  max-width: 60px;
  width: 100%;
}
#undercolumn_entry tr td input[type=text].sz120,
#undercolumn_entry tr td input[type=password].sz120 {
  max-width: 120px;
  width: 100%;
}
#undercolumn_entry tr td input[type=text].sz180,
#undercolumn_entry tr td input[type=password].sz180 {
  max-width: 180px;
  width: 100%;
}
#undercolumn_entry tr td input[type=text].sz240,
#undercolumn_entry tr td input[type=password].sz240 {
  max-width: 240px;
  width: 100%;
}
#undercolumn_entry tr td input[type=text].sz300,
#undercolumn_entry tr td input[type=password].sz300 {
  max-width: 300px;
  width: 100%;
}
#undercolumn_entry tr td input[type=text].sz360,
#undercolumn_entry tr td input[type=password].sz360 {
  max-width: 360px;
  width: 100%;
}
#undercolumn_entry tr td input[type=text].sz420,
#undercolumn_entry tr td input[type=password].sz420 {
  max-width: 420px;
  width: 100%;
}
#undercolumn_entry tr td input[type=text].sz480,
#undercolumn_entry tr td input[type=password].sz480 {
  max-width: 480px;
  width: 100%;
}
#undercolumn_entry tr td input[type=text].sz540,
#undercolumn_entry tr td input[type=password].sz540 {
  max-width: 540px;
  width: 100%;
}
#undercolumn_entry tr td input[type=text].sz600,
#undercolumn_entry tr td input[type=password].sz600 {
  max-width: 600px;
  width: 100%;
}
#undercolumn_entry tr td select {
  height: 40px;
  padding: 5px;
  line-height: 28px;
  border: 1px solid #707070;
  background: #fff;
  transition-duration: 0.25s;
}
#undercolumn_entry tr td select:focus {
  box-shadow: 0px 0px 1px 2px #1ea73a inset;
  border-color: #1ea73a;
  transition-duration: 0.25s;
}
#undercolumn_entry tr td .zipsearch {
  display: inline-block;
  height: 40px;
  border-radius: 20px;
  line-height: 40px;
  background-color: #333333;
  color: #fff;
  margin-left: 2em;
  padding: 0 20px;
}
@media screen and (max-width: 599px) {
  #undercolumn_entry {
    table-layout: fixed;
  }
  #undercolumn_entry tr th,
#undercolumn_entry tr td {
    width: 100%;
    display: block;
  }
  #undercolumn_entry tr th {
    line-height: 30px;
  }
  #undercolumn_entry tr td {
    text-align: left;
  }
}

#mypagecolumn {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#mypagecolumn h2 {
  width: 100%;
  display: inline-block;
}
#mypagecolumn #mynavi_area {
  width: 20%;
}
#mypagecolumn #mynavi_area .point_announce.clearfix {
  width: 100%;
  margin-bottom: 20px;
  font-size: larger;
}
#mypagecolumn #mynavi_area .point_announce.clearfix span.user_name,
#mypagecolumn #mynavi_area .point_announce.clearfix span.point.st {
  font-size: larger;
  font-weight: bold;
  line-height: 30px;
}
#mypagecolumn #mynavi_area .point_announce.clearfix span.point.st {
  color: red;
}
#mypagecolumn #mynavi_area ul {
  display: flex;
  flex-direction: column;
}
#mypagecolumn #mynavi_area ul li {
  border: 1px solid #333;
}
#mypagecolumn #mynavi_area ul li a,
#mypagecolumn #mynavi_area ul li button {
  margin: 2rem auto;
  display: block;
  font-size: 14px;
  white-space: nowrap;
  text-align: center;
}
#mypagecolumn #mynavi_area ul li button {
  width: 100%;
  height: 100%;
  text-align: center;
  background-color: transparent;
  margin: 2rem auto;
  cursor: pointer;
}
@media screen and (min-width: 600px) {
  #mypagecolumn #mynavi_area ul li + li {
    margin-top: 2rem;
  }
}
#mypagecolumn #mycontents_area {
  font-size: 1.4rem;
  width: 77.5%;
}
@media screen and (max-width: 599px) {
  #mypagecolumn #mynavi_area,
#mypagecolumn #mycontents_area {
    width: 100%;
  }
  #mypagecolumn #mynavi_area ul {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #mypagecolumn #mynavi_area ul li {
    padding: 5px;
    width: 32%;
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
}

table.delivery_table {
  margin-top: 2rem;
  table-layout: auto !important;
}
table.delivery_table tr {
  font-size: 1.4rem;
  border: 1px solid #a3a3a3;
}
table.delivery_table tr th {
  padding: 15px 0;
  background: #AAA;
  color: #FFF;
}
table.delivery_table tr td {
  padding: 15px 0;
}
table.delivery_table tr td.non_delivery {
  padding: 4rem 0;
  text-align: center;
}
table.delivery_table tr {
  width: 100%;
}
table.delivery_table tr td:first-child {
  width: 8%;
}
table.delivery_table tr td:nth-child(2) {
  padding-left: 20px;
  width: 20%;
}
table.delivery_table tr td:nth-child(3) {
  padding-left: 20px;
  width: auto;
}
table.delivery_table tr td:nth-child(4) {
  width: 5%;
}
table.delivery_table tr td:last-child {
  width: 5%;
}
@media screen and (min-width: 600px) {
  table.deliv_table tr {
    width: 100%;
  }
  table.deliv_table tr td:first-child {
    width: 40px;
  }
  table.deliv_table tr td:nth-child(2) {
    width: 20%;
  }
  table.deliv_table tr td:nth-child(3) {
    width: auto;
  }
  table.deliv_table tr td:nth-child(4) {
    width: 50px;
  }
  table.deliv_table tr td:last-child {
    width: 50px;
  }
}
@media screen and (max-width: 599px) {
  table.deliv_table tr {
    display: grid;
    grid-auto-columns: 1fr;
    grid-template-columns: 1fr 7fr 2fr;
    grid-template-rows: auto auto auto;
    gap: 0px 0px;
    grid-template-areas: "radio type ." "radio address edit" "radio address delete";
    align-content: start;
    width: 100%;
    height: 100%;
  }
  table.deliv_table tr:first-child {
    display: none;
  }
  table.deliv_table tr .product_parent {
    display: grid;
    grid-auto-columns: 1fr;
    grid-template-columns: 1fr 7fr 2fr;
    grid-template-rows: auto auto auto;
    gap: 0px 0px;
    grid-template-areas: "radio type ." "radio address edit" "radio address delete";
    align-content: start;
    width: 100%;
    height: 100%;
  }
  table.deliv_table tr .type {
    grid-area: type;
    font-size: 1.2rem;
  }
  table.deliv_table tr .radio {
    grid-area: radio;
    display: flex;
    align-items: center;
  }
  table.deliv_table tr .address {
    grid-area: address;
  }
  table.deliv_table tr .edit {
    grid-area: edit;
  }
  table.deliv_table tr .delete {
    grid-area: delete;
  }
}
table.favorite tr {
  display: block;
  padding: 20px;
  border: 1px solid lightgray;
  margin: 20px;
}
table.favorite tr td a {
  font-size: 1.2rem !important;
}
table.favorite tr td:first-child {
  width: 50px;
  padding: 0;
}
table.favorite tr td:nth-child(2) {
  width: 100px;
}
table.favorite tr td:nth-child(2) img {
  max-width: 100%;
  height: 100%;
  object-fit: contain;
}
table.favorite tr td:nth-child(3) {
  width: fit-content;
  padding-left: 20px;
}
@media screen and (min-width: 600px) {
  table.favorite tr td:nth-child(2) {
    width: 200px;
    height: 200px;
    background-color: whitesmoke;
  }
}
table.favorite tr td:last-child .item_name {
  font-size: 1.6rem;
}
table.favorite tr td:last-child .price {
  color: #cb0000;
  font-size: 1.6rem;
}
@media screen and (max-width: 599px) {
  table.favorite tr {
    padding: 10px;
  }
}
table.default_2column {
  table-layout: fixed;
  font-size: 14px;
}
table.default_2column tr {
  border-bottom: 1px solid #D8D8D8;
}
table.default_2column th {
  width: 30%;
  padding: 10px;
  text-align: center;
  background-color: #F4F4F4;
}
table.default_2column td {
  text-align: left;
  padding: 10px;
  width: auto;
}

.buylist_table {
  display: flex;
  max-width: 100%;
  font-size: 1.2rem;
  gap: 10px;
  flex-direction: column;
}
@media screen and (min-width: 600px) {
  .buylist_table {
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.buylist_table .buylist_table_childe {
  border-radius: 5px;
  border: 1px solid #333;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 600px) {
  .buylist_table .buylist_table_childe {
    width: calc((100% - 20px) / 2);
  }
}
.buylist_table .buylist_table_childe > div {
  width: 100%;
  text-align: left;
  padding: 0 2rem;
}
.buylist_table .buylist_table_childe > div + div {
  margin-top: 5px;
}
.buylist_table .buylist_table_childe > div:first-child {
  padding: 0.5rem 1rem;
  font-size: 1.2rem;
  width: auto;
  text-align: center;
  background-color: #333;
  color: #FFF;
}
.buylist_table .buylist_table_childe > div.jokyo {
  text-align: center;
  background-color: #AAA;
  color: #FFF;
  font-weight: bold;
  margin: 0.5rem 2rem;
}
.buylist_table .buylist_table_childe > div.detailbtn {
  text-align: center;
  margin-bottom: 2rem;
}
.buylist_table .buylist_table_childe > div.detailbtn a {
  display: block;
  padding: 0.5rem 1rem;
  border: 1px solid #333;
  border-radius: 5px;
}

.history_detail_table {
  display: flex;
  flex-direction: column;
}
.history_detail_table li {
  border: 1px solid #333;
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
}
.history_detail_table li > div {
  padding: 5px;
}
.history_detail_table li > div + div {
  margin-left: 15px;
}
.history_detail_table li > div.item_info {
  flex: 1 1 auto;
}
.history_detail_table li > div.item_info p {
  font-size: 12px;
}
.history_detail_table li > div.item_info a {
  font-weight: bold;
}
.history_detail_table li > div.value_info {
  text-align: right;
  align-items: bottom;
  width: 25%;
  max-width: 180px;
}
.history_detail_table li > div.review {
  display: flex;
  flex: 0 0 60px;
  justify-content: center;
  align-items: center;
}
.history_detail_table li > div.review a {
  display: block;
  border-radius: 5px;
  border: 1px solid #333;
  font-size: 10px;
  font-weight: bold;
  background-color: #888;
  color: #FFF;
  display: inline-block;
  padding: 5px;
}
@media screen and (max-width: 599px) {
  .history_detail_table li {
    flex-direction: column;
  }
  .history_detail_table li > div.value_info {
    display: flex;
    width: 100%;
    margin: 0;
    max-width: 100%;
    gap: 1rem;
    justify-content: space-between;
    font-size: 1.4rem;
  }
  .history_detail_table li > div.review {
    text-align: right;
    height: 35px;
    display: block;
    flex: none;
  }
  .history_detail_table li > div.review a {
    background-color: #888;
    color: #FFF;
    display: inline-block;
    padding: 5px;
  }
}

.male_list {
  width: 100%;
}
.male_list tr {
  border: 1px solid #333;
}
.male_list tr {
  display: flex;
  flex-wrap: wrap;
}
.male_list tr:first-child {
  display: none;
}
.male_list tr td {
  padding: 5px;
  width: 50%;
}
.male_list tr td:first-child {
  text-align: left;
  font-weight: bold;
  background: #333;
  border-bottom: 1px solid #333;
  border-right: 1px solid #333;
  color: #FFF;
}
.male_list tr td:nth-child(2) {
  border-bottom: 1px solid #333;
  text-align: right;
}
.male_list tr td:last-child {
  width: 100%;
}

.lbl_color {
  margin: 1rem 0 0.5rem;
  text-align: right;
  display: inline-block;
}

.alert {
  color: #cc0000;
  font-weight: bold;
  padding: 0.5rem 0;
}

.cartin_btn {
  text-align: right;
}

.cart_area table {
  width: 100%;
}

.cartin .cartin {
  text-align: center;
  margin-top: 3rem;
}

.cart_area > * + * {
  margin-top: 1rem;
}

.favorite_btn {
  text-align: right;
}

article .main_comment {
  margin-top: 1.5rem;
}

p.label {
  position: relative;
  padding: 0 65px;
  text-align: center;
  margin-bottom: 2rem;
}
p.label::before {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background: #000;
}
p.label span {
  position: relative;
  padding: 0 1em;
  background: #fff;
  font-size: 18px;
  font-weight: bold;
}

.relevance {
  margin-top: 2rem;
}
.relevance:not(:has(li)) {
  display: none;
}
.relevance ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.relevance ul li {
  flex: 0 1 calc(50% - 5px);
  border-radius: 5px;
  box-shadow: 2px 2px 2px #aaa;
}
.relevance ul li a {
  gap: 10px;
  display: flex;
  width: 100%;
  align-items: center;
}
.relevance ul li a span {
  width: 25%;
  display: flex;
  aspect-ratio: 1;
  justify-content: center;
  align-items: center;
}
.relevance ul li a span img {
  max-width: 100%;
  max-height: 100%;
}
.relevance ul li a p {
  padding: 0 5px;
}

.item_slider li {
  width: 100%;
  aspect-ratio: 1;
  text-align: center;
}
.item_slider li img {
  max-width: 100%;
  max-height: 100%;
}
.item_slider li + li {
  margin-top: 1rem;
}

.cart_table th {
  background-color: #ccc;
}

.cart_table {
  font-size: 1.4rem;
}
.cart_table th:nth-child(1) {
  width: 8rem;
}
.cart_table th:nth-child(2) {
  width: 12rem;
}
.cart_table th:nth-child(3) {
  width: auto;
}
.cart_table th:nth-child(4) {
  width: 12rem;
}
.cart_table th:nth-child(5) {
  width: 6rem;
}
.cart_table th:nth-child(6) {
  width: 12rem;
}

.cart_confirm_table th:nth-child(1) {
  width: 12rem;
}
.cart_confirm_table th:nth-child(2) {
  width: auto;
}
.cart_confirm_table th:nth-child(3) {
  width: 12rem;
}
.cart_confirm_table th:nth-child(4) {
  width: 6rem;
}
.cart_confirm_table th:nth-child(5) {
  width: 12rem;
}

.deliv_table th:nth-child(1), .deliv_table th:nth-child(4), .deliv_table th:nth-child(5) {
  width: 8rem;
}
.deliv_table th:nth-child(2) {
  width: 14rem;
}
.deliv_table th:nth-child(3) {
  width: auto;
}

#payment th:nth-child(1) {
  width: 80px;
}

.buylist_table {
  font-size: 14px;
  text-align: center;
}
.buylist_table tr {
  border: 1px solid #eee;
  padding: 1rem 0;
  height: 3.5rem;
}
.buylist_table th:nth-child(1) {
  width: 18rem;
}
.buylist_table th:nth-child(2) {
  width: 8rem;
}
.buylist_table th:nth-child(3) {
  width: 12rem;
}
.buylist_table th:nth-child(4) {
  width: auto;
}
.buylist_table th:last-child {
  width: 8rem;
}

.pay_area02,
.point_area {
  font-size: 1.4rem;
}
.pay_area02 h3,
.point_area h3 {
  margin-top: 1rem;
  font-size: 1.6rem;
  font-weight: bold;
  border-bottom: 2px solid #333;
}
.pay_area02 textarea,
.pay_area02 input[type=text],
.pay_area02 select,
.point_area textarea,
.point_area input[type=text],
.point_area select {
  border: 1px solid #333;
  border-radius: 5px;
  padding: 5px;
}
dl.relative_cat {
  height: 50px;
  align-items: center;
  display: flex;
  font-size: 15px;
}
#detailrightbloc {
  font-size: 1.4rem;
}
#detailrightbloc dl {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
}
#detailrightbloc dl dt {
  width: 30%;
}
#detailrightbloc dl dd {
  flex: 1 1 100%;
  text-align: right;
}
#detailrightbloc dl dd.price {
  text-align: left;
  font-weight: bold;
  margin-bottom: 30px;
  font-size: 20px;
}
#detailrightbloc dl.sale_price {
  font-size: 1.8rem;
}

#detailrightbloc select {
  border: 1px solid #333;
  border-radius: 5px;
  padding: 5px;
  min-width: 8rem;
}
#detailrightbloc .input-group-inline {
  font-size: 1.4rem;
}
#detailrightbloc .input-group-inline label {
  margin-right: 1rem;
}

@media screen and (max-width: 599px) {
  .cartitem_grid {
    border: 1px solid #d8d8d8;
    padding: 20px 0px;
    display: grid;
    grid-template-columns: 100px 1fr 1fr 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 0px 0px;
    grid-auto-flow: row;
    grid-template-areas: "cart_image cart_name cart_name cart_name" "cart_image cart_sizecolor cart_sizecolor cart_sizecolor" "cart_value cart_value cart_totalvalue cart_totalvalue" "cart_itemnum cart_itemnum cart_itemnum cart_itemnum";
  }
}
@media screen and (min-width: 600px) {
  .cartitem_grid {
    border: 1px solid #d8d8d8;
    padding: 30px 20px;
    display: grid;
    grid-template-columns: 200px 1fr 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 0px 0px;
    grid-auto-flow: row;
    grid-template-areas: "cart_image cart_name cart_name cart_name" "cart_image cart_sizecolor cart_sizecolor cart_sizecolor" "cart_image cart_value cart_totalvalue cart_itemnum";
  }
}

/* .cart_area > .input-group-inline:has(:not(option[selected=selected])) {
  display: none;
} */

.cart_image {
  grid-area: cart_image;
  margin-right: 33px;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .cart_image {
    aspect-ratio: 1;
  }
  .cart_image img {
    max-height: 100%;
  }
}
@media screen and (max-width: 599px) {
  .cart_image {
    padding: 0 15px;
    margin-right: 0%;
  }
}

.cart_name {
  grid-area: cart_name;
}

.cart_sizecolor {
  grid-area: cart_sizecolor;
  font-size: 1.2rem;
}

.cart_value {
  grid-area: cart_value;
  align-items: center;
  display: flex;
}

.cart_totalvalue {
  grid-area: cart_totalvalue;
  align-items: center;
  display: flex;
}

@media screen and (max-width: 599px) {
  .cart_value, .cart_totalvalue {
    justify-content: flex-end;
    padding: 5px 10px;
  }
}
.cart_itemnum {
  grid-area: cart_itemnum;
  display: flex;
  align-items: center;
}
.cart_itemnum > a:first-child {
  border: 1px solid #333;
  border-radius: 5px;
  padding: 5px;
}
.cart_itemnum .count_updown {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: center;
}
.cart_itemnum .count_updown a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cart_itemnum > * {
  width: 33%;
}
@media screen and (max-width: 599px) {
  .cart_itemnum {
    justify-content: flex-end;
    gap: 20px;
    padding: 10px 20px;
  }
  .cart_itemnum > * {
    width: auto;
  }
}

.cart_parent {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 980px) {
  .cart_parent {
    flex-direction: column;
  }
}
.cart_parent .cart_table {
  list-style: none;
  width: calc(100% - 250px);
}
@media screen and (max-width: 980px) {
  .cart_parent .cart_table {
    width: 100%;
  }
}
.cart_parent .cart_table li + li {
  margin-top: 30px;
}
.cart_parent .cart_price {
  font-size: 1.4rem;
  width: 230px;
  padding: 10px;
}
@media screen and (max-width: 980px) {
  .cart_parent .cart_price {
    width: 100%;
  }
}
@media screen and (min-width: 600px) {
  .cart_parent .cart_price {
    border: 1px solid #d8d8d8;
  }
}
.cart_parent .cart_price li + li {
  margin-top: 30px;
}
.cart_parent .cart_price li {
  text-align: right;
}
.cart_parent .cart_price li:nth-child(n+3) {
  text-align: center;
}

.btn_buying,
.btn_return {
  line-height: 2;
  width: 160px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1.6rem;
  display: block;
  margin: 0 auto;
}

.btn_return {
  border: 1px solid #333;
  background-color: #fff;
  color: #333;
}

.btn_buying {
  color: #fff;
  background-color: #333;
}

.add_address {
  border: 1px solid #333;
  border-radius: 2px;
  display: flex;
  align-items: center;
  width: 200px;
  font-size: 12px;
  gap: 10px;
  padding: 5px 0;
  justify-content: center;
  margin-top: 10px;
}
.add_address:after {
  content: "+";
  display: block;
  height: 20px;
  width: 20px;
  aspect-ratio: 1;
  text-align: center;
}

.user_confirm_area {
  display: flex;
  flex-direction: column;
}
.user_confirm_area .left_part, .user_confirm_area .right_part {
  width: 100%;
}
@media screen and (min-width: 600px) {
  .user_confirm_area {
    flex-direction: row;
    gap: 20px;
  }
  .user_confirm_area .left_part, .user_confirm_area .right_part {
    flex: 1 1 50%;
  }
}
.user_confirm_area h3 {
  font-size: 14px;
  font-weight: bold;
  border-bottom: 2px solid #333;
}
.user_confirm_area table {
  width: 100%;
  table-layout: fixed;
}
.user_confirm_area table + h3 {
  margin-top: 20px;
}
.user_confirm_area table tr {
  line-height: 1.6;
  display: flex;
}
.user_confirm_area table tr + tr {
  border-top: 1px solid #FFF;
}
.user_confirm_area table tr th, .user_confirm_area table tr td {
  padding: 5px 10px;
}
.user_confirm_area table tr th {
  font-size: 14px;
  font-weight: normal;
  flex: 0 1 min(30%, 162px);
  background-color: #F2F2F2;
}
.user_confirm_area table tr td {
  font-size: 14px;
  font-weight: normal;
}
@media screen and (max-width: 599px) {
  .user_confirm_area table tr {
    flex-direction: column;
    flex-wrap: wrap;
  }
  .user_confirm_area table tr th, .user_confirm_area table tr td {
    width: 100%;
    min-height: 30px;
    text-align: left;
  }
}

.conCart li {
  padding: 15px;
  display: flex;
  border: 1px solid #333;
}
.conCart li + li {
  margin-top: 20px;
}
.conCart li .conCart__picture {
  text-align: center;
  flex: 0 0 min(20%, 200px);
  margin-right: 10px;
}
.conCart li .conCart__Price {
  font-size: 14px;
  text-align: center;
}
.conCart li .conCart__Price span {
  display: inline-block;
}
.conCart li .conCart__Price span + span {
  margin-left: 20px;
}

.contact_form {
  font-size: 14px;
  display: flex;
  flex-direction: column;
}
.contact_form dl {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.contact_form dl + dl {
  margin-top: 2rem;
}
.contact_form dl dt,
.contact_form dl dd {
  width: 100%;
}
.contact_form dl dt {
  color: #FFF;
  background-color: #333;
  padding: 0.5rem;
}
.contact_form dl dd {
  padding: 0.5rem;
}
@media screen and (max-width: 599px) {
  .contact_form dl dd {
    margin-top: 1rem;
  }
}
.contact_form dl dd div + div {
  margin-top: 1rem;
}
@media screen and (max-width: 599px) {
  .contact_form dl dd div {
    display: flex;
    flex-direction: column;
  }
}
.contact_form dl dd span.attention {
  font-weight: bold;
  color: #CC0000;
}
.contact_form dl dd span.attention p {
  color: #333;
  font-weight: normal;
}
.contact_form dl dd p {
  width: auto;
}
.contact_form dl dd p.fullsize {
  width: 100%;
}
.contact_form dl dd p.fullsize input {
  width: 100%;
}
.contact_form dl dd p label {
  width: 100%;
  display: block;
}
.contact_form dl dd .box380 {
  max-width: 38rem;
  width: 100%;
}
.contact_form dl dd .box80 {
  max-width: 8rem;
}
@media screen and (min-width: 600px) {
  .contact_form dl {
    flex-direction: row;
  }
  .contact_form dl dt {
    flex: 0 0 20%;
  }
  .contact_form dl dd {
    flex: 0 0 80%;
    display: flex;
    flex-direction: column;
  }
  .contact_form dl dd div {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    gap: 10px;
  }
}

textarea {
  border: 1px solid #333;
  border-radius: 5px;
  padding: 5px;
  font-size: 1.4rem;
}

.table_aboutus {
  width: 90%;
  margin: 0 auto;
  margin-top: 60px;
  font-size: 1.4rem;
  color: #333;
}
.table_aboutus th {
  background-color: #EEE;
  font-weight: bold;
  width: 25%;
  border-bottom: 1px solid #FFF;
  padding: 5px 10px;
}
.table_aboutus td {
  width: 75%;
  padding: 5px 10px;
  border-bottom: 1px solid #DDD;
}
@media screen and (min-width: 600px) {
  .table_aboutus td {
    text-align: left;
    padding: 14px 70px;
  }
}

article.guideList {
  width: 90%;
  margin: 0 auto;
}
div#cboxContent,
div#cboxLoadedContent {
  width: 400px !important;
  height: 400px !important;
}
div#cboxContent {
  position: absolute;
  box-shadow: 0px 0px 16px -6px rgba(0, 0, 0, 0.3);
  z-index: 11111111;
}
div#cboxLoadedContent img.cboxPhoto {
  object-fit: contain;
  width: 100% !important;
  height: 100% !important;
}
@media screen and (min-width: 600px) {
  div#cboxContent {
    top: 40%;
    left: 40%;
  }
}
@media screen and (max-width: 599px) {
  div#cboxContent,
  div#cboxLoadedContent {
    width: 200px !important;
    height: 200px !important;
  }
  div#cboxContent {
    top: 40%;
    left: 25%;
  }
  body.LC_Page_Error #main_column {
    margin: 0;
  }
}
.LC_Page_Order table {
  width: 90%;
  margin: 0 auto;
  text-align: left;
  font-size: 13px;
  margin-top: 30px;
}
.LC_Page_Order table tr {
  height: 40px;
}
.LC_Page_Order table th, .LC_Page_Order table td {
  padding-left: 10px;
}
.LC_Page_Order table th {
  border-bottom: 1px solid white;
  width: 30%;
  background-color: whitesmoke;
}
.LC_Page_Order table td {
  border-bottom: 1px solid whitesmoke;
}
@media screen and (max-width: 599px) {
  .LC_Page_Order table {
    font-size: 12px;
  }
  .LC_Page_Order table tr {
    height: 30px;
  }

}
/*# sourceMappingURL=style.css.map */