@charset "UTF-8";
/******************************************************************
 * Reset CSS - CBT LINKs
******************************************************************/
/* reset margin
-----------------------------------------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  zoom: 1;
  /* hasLayout in IE */
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font: inherit;
  vertical-align: baseline;
  background: transparent;
  -webkit-text-size-adjust: 100%;
}

/* reset font style
-----------------------------------------------------------------*/
html {
  box-sizing: border-box;
  font-family: sans-serif;
  font-size: 62.5%;
}

html * {
  box-sizing: inherit;
}

body {
  position: relative;
  font-family: serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.4;
  background: transparent;
  color: #000;
  width: 100%;
}

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

a {
  margin: 0;
  padding: 0;
  color: inherit;
  text-decoration: none;
}

em,
strong {
  font-style: normal;
  font-weight: inherit;
}

/* reset table
-----------------------------------------------------------------*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}

table,
th,
td {
  table-layout: fixed;
}

caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

/* reset form style
-----------------------------------------------------------------*/
input[type=text],
input[type=tel],
input[type=email],
input[type=number],
textarea,
select,
option {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
}

button,
input[type=reset],
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
  appearance: none;
  appearance: none;
  padding: 0;
}

select::-ms-expand {
  display: none;
}

button::-webkit-search-decoration,
input[type=reset]::-webkit-search-decoration,
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

button:focus,
input[type=reset]:focus,
input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

textarea {
  resize: none;
  overflow: auto;
}

button {
  font: inherit;
}

*:focus {
  outline: none;
}

/* reset img
-----------------------------------------------------------------*/
img {
  font-size: 0;
  line-height: 0;
  vertical-align: bottom;
  height: auto;
  max-width: 100%;
}

/* IE
-----------------------------------------------------------------*/
main {
  display: block;
}

.c-fadein {
  opacity: 0;
  transition: transform ease 1s, opacity ease 1s;
}

.c-fadein.to-top {
  transform: translateY(50px);
}

.c-fadein.to-bottom {
  transform: translateY(-50px);
}

.c-fadein.to-right {
  transform: translateX(-50px);
}

.c-fadein.to-left {
  transform: translateX(50px);
}

.c-fadein.to-rt {
  transform: translate(-50px, 50px);
}

.c-fadein.to-rb {
  transform: translate(-50px, -50px);
}

.c-fadein.to-lt {
  transform: translate(50px, 50px);
}

.c-fadein.to-lb {
  transform: translate(50px, -50px);
}

.c-fadein.inview {
  opacity: 1;
  transform: translate(0) !important;
}

.c-slidein {
  opacity: 0;
  transition: transform ease-out 0.5s, opacity ease-out 0.5s;
}

.c-slidein.to-top {
  transform: translateY(100vh);
}

.c-slidein.to-bottom {
  transform: translateY(-100vh);
}

.c-slidein.to-right {
  transform: translateX(-100vw);
}

.c-slidein.to-left {
  transform: translateX(100vw);
}

.c-slidein.to-rt {
  transform: translate(-100vw, 100vh);
}

.c-slidein.to-rb {
  transform: translate(-100vw, -100vh);
}

.c-slidein.to-lt {
  transform: translate(100vw, 100vh);
}

.c-slidein.to-lb {
  transform: translate(100vw, -100vh);
}

.c-slidein.inview {
  opacity: 1;
  transform: translate(0) !important;
}

.c-reveal {
  opacity: 0;
  transition: clip-path 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.c-reveal.to-right {
  clip-path: inset(0 100% 0 0);
}

.c-reveal.to-left {
  clip-path: inset(0 0 0 100%);
}

.c-reveal.to-top {
  clip-path: inset(100% 0 0 0);
}

.c-reveal.to-bottom {
  clip-path: inset(0 0 100% 0);
}

.c-reveal.inview {
  opacity: 1;
  clip-path: inset(0 0 0 0);
}

.ease-in {
  transition-timing-function: ease-in;
}

.ease-out {
  transition-timing-function: ease-out;
}

.ease-in-out {
  transition-timing-function: ease-in-out;
}

.c-btn {
  max-width: 400px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #004490;
  border-radius: 5px;
  border: 2px solid #004490;
  padding: 14px 20px 15px;
  transition: all 0.3s;
  cursor: pointer;
}
.c-btn span {
  position: relative;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  padding-right: 20px;
}
.c-btn span::before, .c-btn span::after {
  position: absolute;
  content: "";
  top: calc(50% + 1px);
  right: -5px;
  transform: translateY(-50%);
  width: 19px;
  height: 19px;
  background: center/cover no-repeat;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.1));
  transition: all 0.3s;
}
.c-btn span::before {
  background-image: url(../img/common/circle-arrow_w.svg);
}
.c-btn span::after {
  background-image: url(../img/common/circle-arrow_b.svg);
  opacity: 0;
}
.c-btn--reverse span {
  padding-right: 0;
  padding-left: 20px;
}
.c-btn--reverse span::before, .c-btn--reverse span::after {
  right: unset;
  left: -5px;
  transform: translateY(-50%) rotate(180deg);
}
.c-contact {
  background: url(../img/common/contact-bg.png) center/cover no-repeat;
  padding: 67px 0 81px;
}
.c-contact__ttl {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
  text-align: center;
}
.c-contact__ttl span {
  position: relative;
}
.c-contact__ttl span::before {
  content: "";
  position: absolute;
  top: -40px;
  right: calc(100% - 6px);
  display: block;
  width: 96px;
  height: 116px;
  background: url(../img/common/kujira03.png) center/contain no-repeat;
}
.c-contact__desc {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-top: 18px;
  text-align: center;
}
.c-contact__desc span {
  color: #fff000;
}
.c-contact__list {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 29px;
}
.c-contact__note {
  color: #fff;
  font-weight: 500;
  margin-top: 19px;
  text-align: center;
}
.c-contact__faq-link {
  display: flex;
  justify-content: center;
  margin-top: 33px;
}

.c-contact-item {
  flex: 1;
  max-width: 380px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.06);
  overflow: hidden;
}
.c-contact-item__ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  height: 70px;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
  padding-right: 8px;
  text-align: center;
}
.c-contact-item__ttl::before {
  content: "";
  display: inline-block;
  background: center/contain no-repeat;
}
.c-contact-item--tel .c-contact-item__ttl {
  background-color: #004490;
}
.c-contact-item--tel .c-contact-item__ttl::before {
  width: 27px;
  height: 29px;
  background-image: url(../img/common/icon-phone_w.svg);
  margin-right: 9px;
}
.c-contact-item--line .c-contact-item__ttl {
  background-color: #39cd00;
}
.c-contact-item--line .c-contact-item__ttl::before {
  width: 35px;
  height: 32px;
  background-image: url(../img/common/icon-line.svg);
  margin-right: 7px;
}
.c-contact-item--mail .c-contact-item__ttl {
  background-color: #00b3aa;
}
.c-contact-item--mail .c-contact-item__ttl::before {
  width: 29px;
  height: 23px;
  background-image: url(../img/common/icon-mail_w.svg);
  margin-right: 8px;
}
.c-contact-item__body {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 150px;
  padding: 0 20px;
}
.c-contact-item .c-btn {
  width: 100%;
  background: #fff;
  max-width: 320px;
  margin: auto;
  padding-left: 0;
  padding-right: 0;
}
.c-contact-item .c-btn:hover {
  color: #fff;
}
.c-contact-item .c-btn:hover span::after {
  opacity: 1;
}
.c-contact-item .c-btn span::after {
  background-image: url(../img/common/circle-arrow_w.svg);
}
.c-contact-item--line .c-btn {
  border-color: #39cd00;
  color: #39cd00;
}
.c-contact-item--line .c-btn span::before {
  background-image: url(../img/common/circle-arrow_line.svg);
}
.c-contact-item--line .c-btn:hover {
  background-color: #39cd00;
}
.c-contact-item--mail .c-btn {
  border-color: #00b3aa;
  color: #00b3aa;
}
.c-contact-item--mail .c-btn span::before {
  background-image: url(../img/common/circle-arrow_em.svg);
}
.c-contact-item--mail .c-btn:hover {
  background-color: #00b3aa;
}
.c-contact-item__tel-wrap {
  padding: 0 0 8px;
}
.c-contact-item__tel-catch {
  position: relative;
  display: block;
  width: -moz-max-content;
  width: max-content;
  background: #fff000;
  border-radius: 40px;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  margin: 0 auto 9px;
  padding: 10px 22px;
  text-align: center;
  transform: translateX(10px);
}
.c-contact-item__tel-catch::before {
  content: "";
  position: absolute;
  top: -12px;
  left: -39px;
  display: block;
  width: 55px;
  height: 68px;
  background: url(../img/common/kujira01.png) center/contain no-repeat;
}
.c-contact-item__tel-catch::after {
  content: "";
  position: absolute;
  top: calc(100% - 1px);
  left: 33px;
  display: block;
  width: 0;
  height: 0;
  border-top: solid 13px #fff000;
  border-right: solid 13px transparent;
  transform: skewX(-41deg);
}
.c-contact-item__tel-num {
  color: #004490;
  font-family: "DM Sans", sans-serif;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  text-align: center;
  transition: opacity 0.2s ease;
}
.c-contact-item__tel-num:hover {
  opacity: 0.75;
}
.c-contact-item__tel-num span {
  font-weight: 400;
}
.c-contact-item__tel-time {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin-top: 3px;
  text-align: center;
}

.c-radio input[type=radio] {
  display: none;
}
.c-radio input[type=radio]:checked + label::after {
  opacity: 1;
}
.c-radio li {
  margin-bottom: 14px;
}
.c-radio__flex {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 5%;
       column-gap: 5%;
}
.c-radio__flex li {
  width: 47.5%;
}
.c-radio label {
  cursor: pointer;
  display: flex;
  position: relative;
  line-height: 1.4;
}
.c-radio label::before {
  content: "";
  display: inline-block;
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  border: 2px solid #dbdbdb;
  margin-right: 12px;
  box-sizing: border-box;
}
.c-radio label::after {
  content: "";
  position: absolute;
  left: 1px;
  top: -2px;
  width: 33px;
  height: 25px;
  background: url(../img/common/check-search.svg) center center/cover no-repeat;
  opacity: 0;
}

.c-checkbox input[type=checkbox] {
  display: none;
}
.c-checkbox input[type=checkbox]:checked + label::after {
  opacity: 1;
}
.c-checkbox li {
  margin-bottom: 14px;
}
.c-checkbox__flex {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 5%;
       column-gap: 5%;
}
.c-checkbox__flex li {
  width: 47.5%;
}
.c-checkbox label {
  cursor: pointer;
  display: flex;
  position: relative;
  line-height: 1.4;
}
.c-checkbox label::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 26px;
  border: 2px solid #dbdbdb;
  margin-right: 12px;
  box-sizing: border-box;
}
.c-checkbox label::after {
  content: "";
  position: absolute;
  left: 1px;
  top: -2px;
  width: 33px;
  height: 25px;
  background: url(../img/common/check-search.svg) center center/cover no-repeat;
  opacity: 0;
}

.c-price {
  color: #e60012;
  font-family: "DM Sans", sans-serif;
  font-size: 22px;
  letter-spacing: 0.06em;
  line-height: 1.5;
}
.c-price span {
  font-size: 14px;
  letter-spacing: 0.06em;
}

.c-faq {
  background: #f5f5f5;
  padding: 58px 0 80px;
}
.c-faq__ttl {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #004490;
  text-align: center;
}
.c-faq__btn {
  display: flex;
  justify-content: center;
  margin-top: 31px;
}

.c-faq-list {
  display: flex;
  flex-flow: column;
  gap: 20px;
  margin-top: 41px;
}

.c-faq-item {
  border-radius: 5px;
  box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.06);
  background: #fff;
}
.c-faq-item__q {
  position: relative;
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.07em;
  padding: 26px 84px 27px;
  cursor: pointer;
  transition: all 0.3s;
}
.c-faq-item__q::before {
  content: "Q.";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 39px;
  display: block;
  width: 1em;
  height: 1em;
  color: #004490;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0.02em;
  margin: auto;
}
.c-faq-item__q::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  right: 40px;
  width: 25px;
  height: 25px;
  background: url(../img/common/circle-arrow_b.svg) center/cover no-repeat;
  transform: rotate(90deg);
  margin: auto;
  transition: all 0.3s;
}
.c-faq-item__q:hover {
  color: #004490;
}
.c-faq-item__q.is-open::after {
  transform: rotate(-90deg);
}
.c-faq-item__a {
  position: relative;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.06em;
  background: #ebf9ff;
  border-radius: 5px;
  margin: 4px 40px 40px;
  padding: 31px 40px 33px 84px;
}
.c-faq-item__a::before {
  content: "A.";
  position: absolute;
  top: 35px;
  left: 40px;
  display: block;
  width: 1em;
  height: 1em;
  color: #009de0;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0.02em;
  margin: auto;
}
.c-faq-item__a::after {
  position: absolute;
  content: "";
  top: 2px;
  left: 42px;
  transform: translateY(-100%);
  width: 22px;
  height: 22px;
  background: #ebf9ff;
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}
.c-faq-item__a .bold {
  font-weight: 700;
}
.c-faq-item__a a {
  display: inline-block;
  color: #009de0;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 7px;
  transition: 0.2s;
  margin: 0 5px 7px;
}
.c-faq-item__a a:hover {
  text-decoration-color: transparent;
}
.c-cat-menu__ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  background: #004490;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin-bottom: 10px;
}
.c-cat-menu__list--2col {
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 10px;
       column-gap: 10px;
  margin-bottom: -5px;
}
.c-cat-menu__list li {
  position: relative;
}
.c-cat-menu__list li::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  width: 12px;
  height: 1px;
  background: #004490;
  pointer-events: none;
  z-index: 1;
}
.c-cat-menu__list li + li {
  margin-top: 10px;
}
.c-cat-menu__list li a {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 60px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.06);
  font-size: 18px;
  letter-spacing: 0.06em;
  line-height: 1.5;
  padding: 0 48px 0 77px;
  transition: 0.2s;
}
.c-cat-menu__list li a::before, .c-cat-menu__list li a::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  width: 22px;
  height: 22px;
  background: center/contain no-repeat;
  transition: 0.2s;
}
.c-cat-menu__list li a::before {
  background-image: url(../img/common/circle-arrow-light_b.svg);
}
.c-cat-menu__list li a::after {
  background-image: url(../img/common/circle-arrow_b.svg);
  opacity: 0;
}
.c-cat-menu__list li a:hover {
  background-color: #d2f2ff;
}
.c-cat-menu__list li a:hover::before {
  opacity: 0;
}
.c-cat-menu__list li a:hover::after {
  opacity: 1;
}
.c-cat-menu__list li a > span {
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  width: 40px;
  height: 40px;
  background: #fff center no-repeat;
  transition: 0.2s;
}
.c-cat-menu__list li a:hover > span {
  background-color: #d2f2ff;
}
.c-cat-menu__list li a .icon-office {
  background-image: url(../img/common/menu-icon-office.svg);
  background-size: 26px;
}
.c-cat-menu__list li a .icon-surfing {
  background-image: url(../img/common/menu-icon-music.svg);
  background-size: 30px;
}
.c-cat-menu__list li a .icon-education {
  background-image: url(../img/common/menu-icon-book.svg);
  background-size: 29px;
}
.c-cat-menu__list li a .icon-programming {
  background-image: url(../img/common/menu-icon-code.svg);
  background-size: 30px;
}
.c-cat-menu__list li a .icon-business {
  background-image: url(../img/common/menu-icon-building.svg);
  background-size: 31px;
}
.c-cat-menu__list li a .icon-small {
  background-image: url(../img/common/menu-icon-small.svg);
  background-size: 27px;
}
.c-cat-menu__list li a .icon-carry {
  background-image: url(../img/common/menu-icon-carry.svg);
  background-size: 32px;
}
.c-cat-menu__list li a .icon-note {
  background-image: url(../img/common/icon-note.svg);
  background-size: 39px;
}
.c-cat-menu__list li a .icon-desktop {
  background-image: url(../img/common/icon-desktop.svg);
  background-size: 40px;
}
.c-cat-menu__list li a .icon-gaming {
  background-image: url(../img/common/icon-game.svg);
  background-size: 39px;
}
.c-cat-menu__list li a .icon-mobile {
  background-image: url(../img/common/icon-mobile.svg);
  background-size: 39px;
}
.c-cat-menu__list li a .icon-tablet {
  background-image: url(../img/common/icon-tablet.svg);
  background-size: 30px;
}
.c-cat-menu__list li:has(span)::before {
  display: none;
}
.c-cat-menu__list--2col li a {
  padding: 0 48px 0 40px;
}

.c-sec-search {
  position: relative;
  background: #f5f5f5;
  padding: 58px 0 56px;
}
.c-sec-search::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  display: block;
  transform: translate(-50%, -34%);
  width: 82px;
  height: auto;
  aspect-ratio: 82/66;
  background: url(../img/common/kujira02.png) center/contain no-repeat;
}
.c-sec-search__ttl {
  color: #004490;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
  text-align: center;
}
.c-sec-search__keyword {
  position: relative;
  max-width: 500px;
  margin: 32px auto 0;
}
.c-sec-search__keyword input[type=text] {
  display: block;
  width: 100%;
  height: 80px;
  margin: auto;
  border: solid 2px #004490;
  border-radius: 40px;
  background: #fff;
  font-size: 18px;
  letter-spacing: 0.04em;
  padding: 0 35px;
}
.c-sec-search__keyword input[type=text]::-moz-placeholder {
  color: #999;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  letter-spacing: 0.04em;
}
.c-sec-search__keyword input[type=text]::placeholder {
  color: #999;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  letter-spacing: 0.04em;
}
.c-sec-search__keyword a {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  margin: auto;
  display: block;
  width: 23px;
  height: 23px;
  font-size: 0;
}
.c-sec-search__keyword a::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/common/icon-search_b.svg) center/contain no-repeat;
}
.c-sec-search__group-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 51px;
}

.c-sec-search-detail {
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.06);
  padding: 50px 50px 46px;
}
.c-sec-search-detail__inner {
  display: flex;
}
.c-sec-search-detail__col {
  flex-grow: 1;
  padding-right: 7.2%;
}
.c-sec-search-detail__submit {
  display: flex;
  justify-content: center;
  margin: 36px auto 0;
}

.c-sec-search-detail-group {
  display: flex;
}
.c-sec-search-detail-group:not(:first-child) {
  margin-top: 25px;
}
.c-sec-search-detail-group__head {
  flex: 0 0 93px;
  position: relative;
}
.c-sec-search-detail-group__ttl {
  color: #004490;
  font-weight: 700;
  line-height: 1.5;
}
.c-sec-search-detail-group__question {
  position: absolute;
  left: 0;
  top: 30px;
  z-index: 1;
}
.c-sec-search-detail-group__question::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url(../img/common/icon-question.svg) center/contain no-repeat;
  cursor: pointer;
}
.c-sec-search-detail-group__desc {
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  width: 200px;
  background: #bfecff;
  border-radius: 5px;
  font-size: 14px;
  letter-spacing: 0.06em;
  line-height: 1.7142857143;
  padding: 16px 19px 17px;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.1));
  transform: translateX(-50%);
  transition: 0.2s;
  opacity: 0;
  visibility: hidden;
}
.c-sec-search-detail-group__desc::before {
  content: "";
  position: absolute;
  bottom: calc(100% - 1px);
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  width: 0;
  height: 0;
  border-bottom: solid 10px #bfecff;
  border-left: solid 10px transparent;
  border-right: solid 10px transparent;
}
.c-sec-search-detail-group__question:hover .c-sec-search-detail-group__desc {
  opacity: 1;
  visibility: visible;
}

.c-sec-kuchikomi {
  background: url(../img/common/kuchikomi/kuchikomi-bg.jpg) center/cover no-repeat;
  padding: 73px 0 110px;
}
.c-sec-kuchikomi__catch {
  position: relative;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin-bottom: 14px;
  padding-bottom: 18px;
  text-align: center;
}
.c-sec-kuchikomi__catch::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  width: 50px;
  height: 1px;
  background: #004490;
}
.c-sec-kuchikomi__ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 45px;
  color: #004490;
  line-height: 1.6;
  text-align: center;
}
.c-sec-kuchikomi__ttl::before, .c-sec-kuchikomi__ttl::after {
  content: "";
  display: block;
  width: 2px;
  height: 129px;
  background: #004490;
}
.c-sec-kuchikomi__ttl::before {
  transform: rotate(-30deg);
}
.c-sec-kuchikomi__ttl::after {
  transform: rotate(30deg);
}
.c-sec-kuchikomi__ttl .marker {
  display: block;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.04em;
  background: linear-gradient(to top, transparent 5%, #fff000 5%, #fff000 30%, transparent 30%) left/100% 100% no-repeat;
}
.c-sec-kuchikomi__ttl .large {
  display: block;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.c-sec-kuchikomi__iframe-wrap {
  position: relative;
  width: 100%;
  height: 450px;
  background: #fff;
  border: solid 2px #004490;
  border-radius: 10px;
  margin-top: 32px;
  padding: 23px 18px;
}
.c-sec-kuchikomi__iframe-wrap::before {
  content: "";
  position: absolute;
  right: 48px;
  top: -130px;
  display: block;
  width: 148px;
  height: auto;
  aspect-ratio: 148/178;
  background: url(../img/common/kuchikomi/review-score.png) center/contain no-repeat;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.1));
}
.c-sec-kuchikomi__iframe-wrap iframe {
  width: 100%;
  height: 100%;
}
.c-sec-kuchikomi__more {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.c-sec-reason {
  position: relative;
  background: #e5f8ff;
  padding: 68px 0 80px;
}
.c-sec-reason::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  display: block;
  width: 72px;
  height: auto;
  aspect-ratio: 200/244;
  background: url(../img/common/kujira01.png) center/contain no-repeat;
  transform: translate(-50%, -30%);
}
.c-sec-reason__wrap {
  overflow: hidden;
}
.c-sec-reason__ttl {
  color: #004490;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
  text-align: center;
}
.c-sec-reason__ttl span {
  font-family: "DM Sans", sans-serif;
  font-size: 40px;
  line-height: 1;
}
.c-sec-reason__list {
  counter-reset: c;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 30px;
  margin-top: 43px;
}
.c-sec-reason__more {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.c-sec-reason-item {
  counter-increment: c;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.06);
}
.c-sec-reason-item__img {
  position: relative;
  width: 100%;
  aspect-ratio: 380/220;
  overflow: visible;
}
.c-sec-reason-item__img img {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: auto;
}
.c-sec-reason-item__img::after {
  content: counter(c, decimal-leading-zero);
  position: absolute;
  left: -10px;
  top: -10px;
  z-index: 1;
  display: block;
  box-sizing: border-box;
  width: 77px;
  height: 73px;
  background: url(../img/common/star.svg) center/contain no-repeat;
  color: #004490;
  font-family: "DM Sans", sans-serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  padding: 30px 0 0;
  text-align: center;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}
.c-sec-reason-item__txt {
  position: relative;
  padding: 28px 40px 36px;
}
.c-sec-reason-item__ttl {
  color: #004490;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.4583333333;
  text-align: center;
}
.c-sec-reason-item__ttl .en {
  font-family: "DM Sans", sans-serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
}
.c-sec-reason-item__ttl .num {
  font-family: "DM Sans", sans-serif;
  font-size: 35px;
  font-weight: 700;
  line-height: 1;
}
.c-sec-reason-item__detail {
  letter-spacing: 0.08em;
  line-height: 1.875;
  margin-top: 15px;
}

.c-shindan-bnr {
  display: block;
  width: 100%;
  max-width: 1000px;
  margin: auto;
  transition: opacity 0.2s ease;
}
.c-shindan-bnr:hover {
  opacity: 0.75;
}
.c-shindan-bnr img {
  display: block;
  width: 100%;
  height: auto;
}

.c-product-list__ttl {
  font-size: 32px;
  font-weight: bold;
  display: flex;
  letter-spacing: 0.03em;
  line-height: 1.1;
}
.c-product-list__ttl::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 40px;
  border-radius: 3px;
  background: #009de0;
  margin-right: 23px;
}
.c-product-list__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 6.66%;
  margin-top: 30px;
}
.c-product-list__pager {
  margin-top: 30px;
}
.c-product-list__empty {
  margin-top: 20px;
}

.c-sort-menu {
  display: flex;
  background: #f5f5f5;
  font-size: 14px;
  justify-content: space-between;
  align-items: center;
  margin: 28px 0 0;
  padding: 15px 30px 17px;
  flex-wrap: wrap;
}
.c-sort-menu__list {
  display: flex;
}
.c-sort-menu__item::after {
  content: "｜";
  color: #999;
  margin: 0 16px;
}
.c-sort-menu__item:last-child::after {
  margin-right: 0;
}
.c-sort-menu__item span {
  font-weight: bold;
}
.c-sort-menu__item a {
  color: #004490;
  transition: 0.2s;
}
.c-sort-menu__item a:hover {
  opacity: 0.8;
}
.c-sort-menu__number {
  font-feature-settings: "palt";
  letter-spacing: 0.08em;
}
.c-sort-menu__select {
  display: flex;
  align-items: center;
}
.c-sort-menu__select-ttl {
  margin-right: 10.5px;
  margin-bottom: 1px;
}
.c-sort-menu__select-box {
  position: relative;
}
.c-sort-menu__select-box select {
  width: 100px;
  height: 35px;
  background: #fff;
  border: 1px solid #004490;
  border-radius: 2.5px;
  color: #111;
  font-size: 14px;
  padding: 1px 11px 0;
}
.c-sort-menu__select-box::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 5px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background: #004490;
  top: 52%;
  right: 7.5px;
  transform: translateY(-50%);
  pointer-events: none;
}

.c-product-item a {
  transition: opacity 0.2s ease;
}
.c-product-item a:hover {
  opacity: 0.8;
}
.c-product-item__inner {
  position: relative;
}
.c-product-item__img {
  margin-bottom: 22px;
}
.c-product-item__img img {
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}
.c-product-item__name {
  font-size: 15px;
  line-height: 1.75;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.c-product-item__txt {
  line-height: 1.75;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  text-align: right;
}
.c-product-item__txt-soldout {
  color: #e60012;
}
.c-product-item__icon {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  row-gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.c-product-item__icon-img {
  height: 21px;
  width: calc(50% - 5px);
}
.c-product-item__icon-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.c-product-item__favorite {
  position: absolute;
  right: 0;
  bottom: 33px;
}
.c-product-item__favorite-icon {
  display: block;
  width: 24px;
  height: 22px;
}
.c-product-item__favorite-icon {
  background: url(../img/category/icon01.png) center center/contain no-repeat;
}
.c-product-item__favorite-icon.favorite-off {
  background: url(../img/category/icon02.png) center center/contain no-repeat;
}
.c-product-item__favorite-icon.hide {
  display: none;
}

.c-pagination {
  background: #f5f5f5;
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  justify-content: center;
  padding: 19px 0;
}
.c-pagination__item a, .c-pagination__item span {
  font-family: "DM Sans", sans-serif;
  width: 42px;
  height: 42px;
  border-radius: 5px;
  box-shadow: 0 1px rgba(0, 0, 0, 0.1);
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.2s;
}
.c-pagination__item a:hover, .c-pagination__item span:hover {
  background: #004490;
  color: #fff;
}
.c-pagination__item a.current, .c-pagination__item span.current {
  background: #999999;
  box-shadow: none;
  color: #fff;
}

.c-ttl01 {
  position: relative;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  padding-left: 30px;
}
.c-ttl01::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 40px;
  background: #009de0;
  border-radius: 3px;
  transform: translateY(-42%);
}

.c-ttl02 {
  position: relative;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: #004490;
  text-align: center;
  padding-bottom: 22px;
}
.c-ttl02::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 1px;
  background: #004490;
}

.c-voice-item__link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 30px 78px;
  z-index: 0;
}
.c-voice-item__link::before, .c-voice-item__link::after {
  content: "";
  position: absolute;
  top: 32px;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 10px;
  transition: 0.2s;
  z-index: -1;
  pointer-events: none;
}
.c-voice-item__link::before {
  background: #fff url(../img/review/item-bg.png) top/contain no-repeat;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.06);
}
.c-voice-item__link::after {
  border: solid 4px #004490;
  opacity: 0;
}
.c-voice-item__link:hover::after {
  opacity: 1;
}
.c-voice-item__icon {
  position: relative;
  width: 180px;
  aspect-ratio: 1;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.07);
  margin: 0 auto 10px;
  overflow: hidden;
}
.c-voice-item__icon img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-voice-item__icon::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: solid 6px #dffeff;
  border-radius: 50%;
  box-sizing: border-box;
}
.c-voice-item__info {
  margin-bottom: 14px;
}
.c-voice-item__name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.6;
  text-align: center;
}
.c-voice-item__detail {
  font-size: 14px;
  letter-spacing: 0.06em;
  line-height: 1.6428571429;
  text-align: center;
}
.c-voice-item__ttl {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0fbff repeating-linear-gradient(-45deg, transparent, transparent 14.14px, rgba(255, 255, 255, 0.5) 14.14px, rgba(255, 255, 255, 0.5) 28.28px);
  border-radius: 10px;
  color: #004490;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5555555556;
  margin-bottom: 12px;
  padding: 12px 20px;
  text-align: center;
}
.c-voice-item__ttl::after {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(100% - 1px);
  transform: translateX(-50%);
  display: block;
  width: 0;
  height: 0;
  border-top: solid 10px #f0fbff;
  border-left: solid 10px transparent;
  border-right: solid 10px transparent;
}
.c-voice-item__comment {
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 1.875;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.c-voice-item__more {
  position: absolute;
  right: 30px;
  bottom: 28px;
  display: block;
  color: #004490;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.5;
  padding-right: 23px;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: #004490;
  text-underline-offset: 3px;
  transition: 0.2s;
}
.c-voice-item__more::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 50%;
  display: block;
  width: 17px;
  height: 17px;
  background: url(../img/common/circle-arrow_b.svg) center/contain no-repeat;
  transform: translateY(-50%);
}

.c-voice-slider .slick-list {
  overflow: visible;
  width: calc(100% + 45px);
  margin: 0 -22.5px;
}
.c-voice-slider .slick-slide {
  padding: 0 22.5px;
}

.slick-track {
  display: flex;
  margin: auto;
}

.slick-slide {
  height: auto;
}

.slick-arrow {
  width: 36px;
  height: 36px;
  background: #fff;
  border: solid 1px #fff;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  padding: 0;
  font-size: 0;
  color: transparent;
  transition: 0.2s;
  z-index: 1;
}
.slick-arrow::before, .slick-arrow::after {
  content: "";
  position: absolute;
  left: -1px;
  top: -1px;
  display: block;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  background: center/contain no-repeat;
  opacity: 1;
  transition: 0.2s;
}
.slick-arrow::before {
  background-image: url(../img/common/circle-arrow_b.svg);
}
.slick-arrow::after {
  background-image: url(../img/common/circle-arrow_w.svg);
  opacity: 0;
}
.slick-arrow:hover {
  background-color: #004490;
}
.slick-arrow:hover::before {
  opacity: 0;
}
.slick-arrow:hover::after {
  opacity: 1;
}

.slick-prev {
  left: -56px;
}
.slick-prev::before, .slick-prev::after {
  transform: scale(-1, 1);
}

.slick-next {
  right: -57px;
}
.scroll-hint-icon-wrap.is-active .scroll-hint-icon {
  opacity: 1;
}

.scroll-hint-icon {
  top: 0;
  left: auto;
  right: 16px;
  width: auto;
  background: transparent;
  padding: 0;
  z-index: 1;
}
.scroll-hint-icon::before {
  width: 60px;
  height: 60px;
  background-image: url(../img/common/scroll-hint.png);
}
.scroll-hint-icon::after {
  display: none;
}
.scroll-hint-icon .scroll-hint-text {
  display: none;
}
[data-simplebar] {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
[data-simplebar]::-webkit-scrollbar {
  display: none;
}
[data-simplebar] .simplebar-scrollbar::before {
  background: #004490;
  border-radius: 10px;
  height: 10px !important;
  top: 2.5px;
  bottom: 2.5px;
  margin-left: 2px;
}
[data-simplebar] .simplebar-scrollbar.simplebar-visible::before {
  opacity: 1;
}
[data-simplebar] .simplebar-track {
  background: #dbdbdb;
  border-radius: 15px;
  height: 15px !important;
  margin: 0 5px;
}

body {
  color: #111;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-feature-settings: "palt";
  letter-spacing: 0.06em;
  line-height: 2;
  min-width: 375px;
  scroll-behavior: auto !important;
}
body.fixed {
  position: fixed;
  width: 100%;
  height: 100vh;
  overflow: visible;
}

.inner {
  width: 100%;
  max-width: calc(1200px + 40px);
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  position: relative;
  --header-height: 180px;
  z-index: 10000;
  height: var(--header-height);
}

.header-pc {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: var(--header-height);
  background: #fff;
  transition: 0.3s;
}
.header-pc__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 6px;
}
.header-pc__ttl {
  color: #999;
  font-size: 13px;
  letter-spacing: 0.06em;
  line-height: 1.5;
}
.header-pc__nav {
  display: flex;
  align-items: center;
}
.header-pc__nav ul {
  display: flex;
}
.header-pc__nav li {
  font-size: 13px;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.header-pc__nav li:not(:first-child)::before {
  content: "|";
  display: inline-block;
  color: #999;
  font-weight: 300;
  margin: 0 15px;
}
.header-pc__nav li a {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  transition: 0.2s;
}
.header-pc__nav li a:hover {
  text-decoration-color: #111;
}
.header-pc__cart-btn {
  flex: 0 0 160px;
  margin-left: 20px;
}
.header-pc__cart-btn a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  background: #009de0;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding-right: 8px;
  transition: 0.2s;
}
.header-pc__cart-btn a:hover {
  background: #004490;
}
.header-pc__cart-btn a::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 25px;
  background: url(../img/common/icon-cart_w.svg) center/contain no-repeat;
  margin-right: 13px;
}
.header-pc__cart-btn a .cart-count {
  position: absolute;
  top: 3px;
  left: 29px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background: #fff000;
  border-radius: 50%;
  color: #111;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 500;
}
.header-pc__content {
  display: flex;
  align-items: center;
  height: 80px;
  transition: 0.3s;
}
.header-pc__logo img {
  display: block;
  width: 333px;
  height: auto;
}

.is-scroll-down .header-pc {
  height: 46px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.is-scroll-down .header-pc__content {
  height: 0;
  overflow: hidden;
}

.header-pc-search {
  position: relative;
  flex: 1;
  max-width: 500px;
  margin: 0 30px;
}
.header-pc-search input[type=text] {
  display: block;
  width: 100%;
  height: 60px;
  border: none;
  background: #f2f2f2;
  border: none;
  border-radius: 60px;
  padding: 0 50px 0 27px;
}
.header-pc-search input[type=text]::-moz-placeholder {
  color: #777;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
}
.header-pc-search input[type=text]::placeholder {
  color: #777;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
}
.header-pc-search a {
  position: absolute;
  right: 26px;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  width: 21px;
  height: 21px;
  font-size: 0;
}
.header-pc-search a::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/common/icon-search_b.svg) center/contain no-repeat;
}

.header-pc-tel {
  display: block;
  font-family: "DM Sans", sans-serif;
  text-align: right;
}
.header-pc-tel__catch {
  display: block;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.06em;
  margin-bottom: 5px;
}
.header-pc-tel__num {
  display: block;
  color: #004490;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  margin-bottom: 5px;
  transition: opacity 0.2s ease;
}
.header-pc-tel__num:hover {
  opacity: 0.75;
}
.header-pc-tel__num span {
  font-weight: 400;
}
.header-pc-tel__num::before {
  content: "";
  display: inline-block;
  width: 23px;
  height: 23px;
  background: url(../img/common/icon-phone_b.svg) center/contain no-repeat;
  margin-right: 4px;
}
.header-pc-tel__time {
  display: block;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.06em;
}

.header-pc-catmenu {
  position: relative;
  background: #004490;
  margin-top: 4px;
}
.header-pc-catmenu__list {
  display: flex;
  justify-content: center;
  gap: 25px;
  width: 100%;
  height: 50px;
}
.header-pc-catmenu__item {
  height: 100%;
}
.header-pc-catmenu__item.is-hover .header-megamenu {
  display: block;
}
.header-pc-catmenu__label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0 30px;
  transition: 0.2s;
  cursor: pointer;
}
.header-pc-catmenu__label:hover {
  background: #009de0;
}
.header-pc-catmenu__label--parent {
  position: relative;
}
.header-pc-catmenu__label--parent::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-35%);
  display: block;
  width: 11px;
  height: 6px;
  background: url(../img/common/sort-down_lb.svg) center/contain no-repeat;
  transition: 0.2s;
}
.header-pc-catmenu__label--parent:hover::after {
  opacity: 0;
}
.header-pc-catmenu__item:has(.header-pc-catmenu__sub-list) {
  position: relative;
}
.header-pc-catmenu__item:hover .header-pc-catmenu__sub-list {
  display: block;
}
.header-pc-catmenu__sub-list {
  position: absolute;
  top: 100%;
  left: -100%;
  right: -100%;
  margin: auto;
  display: none;
  width: 320px;
  animation-name: PullDown;
  animation-duration: 0.2s;
  transform-origin: top;
}
.header-pc-catmenu__sub-label {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 70px;
  background: #fff;
  border-bottom: solid 1px #ebebeb;
  line-height: 1.5;
  padding: 0 48px 0 68px;
  transition: 0.2s;
}
.header-pc-catmenu__sub-label::before, .header-pc-catmenu__sub-label::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  width: 22px;
  height: 22px;
  transition: 0.2s;
}
.header-pc-catmenu__sub-label::before {
  background: url(../img/common/circle-arrow-light_b.svg) center/contain no-repeat;
}
.header-pc-catmenu__sub-label::after {
  background: url(../img/common/circle-arrow_b.svg) center/contain no-repeat;
  opacity: 0;
}
.header-pc-catmenu__sub-label:hover {
  background-color: #d2f2ff;
}
.header-pc-catmenu__sub-label:hover::before {
  opacity: 0;
}
.header-pc-catmenu__sub-label:hover::after {
  opacity: 1;
}
.header-pc-catmenu__sub-label > span {
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  width: 40px;
  height: 40px;
}
.header-pc-catmenu__sub-label .icon-office {
  background: url(../img/common/menu-icon-office.svg) center/26px no-repeat;
}
.header-pc-catmenu__sub-label .icon-surfing {
  background: url(../img/common/menu-icon-music.svg) center/30px no-repeat;
}
.header-pc-catmenu__sub-label .icon-education {
  background: url(../img/common/menu-icon-book.svg) center/29px no-repeat;
}
.header-pc-catmenu__sub-label .icon-programming {
  background: url(../img/common/menu-icon-code.svg) center/27px no-repeat;
}
.header-pc-catmenu__sub-label .icon-business {
  background: url(../img/common/menu-icon-building.svg) center/31px no-repeat;
}
.header-pc-catmenu__sub-label .icon-small {
  background: url(../img/common/menu-icon-small.svg) center/29px no-repeat;
}
.header-pc-catmenu__sub-label .icon-carry {
  background: url(../img/common/menu-icon-carry.svg) center/32px no-repeat;
}

.is-scroll-down .header-pc-catmenu {
  height: 0;
  overflow: hidden;
}

@keyframes PullDown {
  0% {
    opacity: 0;
    transform: scaleY(0);
  }
  100% {
    opacity: 1;
    transform: scaleY(1);
  }
}
.header-megamenu {
  position: absolute;
  left: 0;
  top: 100%;
  display: none;
  width: 100%;
  animation-name: PullDown;
  animation-duration: 0.2s;
  transform-origin: top;
}
.header-megamenu::before {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  display: block;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}
.header-megamenu__inner {
  display: flex;
  gap: 4%;
  gap: 26px 0;
  width: 100%;
  background: #fff;
  padding: 20px max(50% - 600px, 20px) 38px;
}
.header-megamenu__col {
  flex: 1;
}

.header-megamenu-cat-group:not(:first-child) {
  margin-top: 26px;
}
.header-megamenu-cat-group__ttl {
  display: block;
  color: #004490;
  font-weight: 700;
  margin-bottom: 10px;
}
.header-megamenu-cat-group__list li:not(:first-child) {
  margin-top: 7.5px;
}
.header-megamenu-cat-group__list li a {
  position: relative;
  display: block;
  font-size: 15px;
  letter-spacing: 0.06em;
  line-height: 1.5;
  padding: 0 0 0 27px;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: 0.2s;
}
.header-megamenu-cat-group__list li a:hover {
  text-decoration-color: #111;
}
.header-megamenu-cat-group__list li a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  display: block;
  width: 16px;
  height: 16px;
  background: url(../img/common/circle-arrow_b.svg) center/contain no-repeat;
}
.header-megamenu-cat-group__list--2col {
  -moz-column-count: 2;
       column-count: 2;
}

.cat-sub-list {
  position: absolute;
  left: 50%;
  display: none;
  width: -moz-max-content;
  width: max-content;
}
.header-sp {
  height: var(--header-height);
}
.header-sp__top {
  display: flex;
  align-items: center;
  height: 60px;
}
.header-sp__logo {
  padding: 3px 0 0px 10px;
}
.header-sp__logo img {
  display: block;
  width: 182px;
  height: auto;
}
.header-sp__nav {
  display: flex;
  height: 100%;
  margin-left: auto;
  margin-right: 7px;
}
.header-sp__btn {
  flex: 0 0 52px;
  position: relative;
  display: block;
  width: 52px;
  height: 100%;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
  padding: 42px 0 0;
  text-align: center;
}
.header-sp__btn--fav::before {
  content: "";
  position: absolute;
  top: 10.5px;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  width: 29px;
  height: 26px;
  background: url(../img/common/icon-heart_b.svg) center/contain no-repeat;
}
.header-sp__btn--cart::before {
  content: "";
  position: absolute;
  top: 8.5px;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  width: 29px;
  height: 28px;
  background: url(../img/common/icon-cart_b.svg) center/contain no-repeat;
}
.header-sp__btn--cart .cart-count {
  position: absolute;
  top: 5px;
  left: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  background: #fff000;
  border-radius: 50%;
  color: #111;
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 500;
}
.header-sp__nav-open {
  position: relative;
  display: block;
  flex: 0 0 60px;
  width: 60px;
  height: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: #004490;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  padding: 34px 0 0;
  text-align: center;
}
.header-sp__nav-open span {
  position: absolute;
  top: 23.5px;
  left: 0;
  right: 0;
  display: block;
  width: 27px;
  height: 2px;
  background: #fff;
  margin: auto;
  transition: 0.2s;
}
.header-sp__nav-open span:nth-child(1) {
  transform: translateY(-9px);
}
.header-sp__nav-open span:nth-child(3) {
  transform: translateY(9px);
}

.header-sp-search {
  position: relative;
  width: 100%;
  background: #f5f5f5;
  padding: 10px;
}
.header-sp-search input[type=text] {
  display: block;
  width: 100%;
  height: 40px;
  background: #fff;
  border: solid 1px #004490;
  border-radius: 5px;
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 0 40px 0 12px;
}
.header-sp-search input[type=text]::-moz-placeholder {
  color: #999;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.header-sp-search input[type=text]::placeholder {
  color: #999;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.header-sp-search a {
  position: absolute;
  right: 25px;
  top: 22px;
  display: block;
  width: 18px;
  height: 18px;
  font-size: 0;
}
.header-sp-search a::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/common/icon-search_b.svg) center/contain no-repeat;
}
.header-sp-fixed {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  transform: translateY(-100%);
  transition: 0.2s;
}
.header-sp-fixed__top {
  display: flex;
  height: 40px;
}
.header-sp-fixed__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  height: 100%;
  background: #004490;
  border: none;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding-left: 32px;
}
.header-sp-fixed__btn:not(:first-child) {
  border-left: solid 1px rgba(255, 255, 255, 0.15);
}
.header-sp-fixed__btn--home::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  width: 25.5px;
  height: 20.5px;
  background: url(../img/common/icon-home.svg) center/contain no-repeat;
}
.header-sp-fixed__btn--cart::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  width: 23px;
  height: 22.5px;
  background: url(../img/common/icon-cart_w.svg) center/contain no-repeat;
}
.header-sp-fixed__btn--cart .cart-count {
  position: absolute;
  top: 5px;
  left: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 13px;
  height: 13px;
  background: #fff000;
  border-radius: 50%;
  color: #111;
  font-family: "DM Sans", sans-serif;
  font-size: 9px;
  font-weight: 500;
}
.header-sp-fixed__btn--menu {
  flex: 0.82;
  padding-left: 42px;
}
.header-sp-fixed__btn--menu::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  width: 24px;
  height: 18px;
  background: url(../img/common/icon-menu.svg) center/contain no-repeat;
}

.is-scrolled .header-sp-fixed {
  transform: translateY(0);
}

.menu-panel {
  position: fixed;
  top: 0;
  left: 100%;
  width: 100vw;
  height: 100vh;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(1.5px);
  transition: 0.2s;
}
.menu-panel.is-open {
  left: 0;
}
.menu-panel__nav-close {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 60px;
  height: 60px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: #004490;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  padding: 34px 0 0;
  text-align: center;
}
.menu-panel__nav-close span {
  position: absolute;
  top: 23.5px;
  left: 0;
  right: 0;
  display: block;
  width: 33px;
  height: 2px;
  background: #fff;
  margin: auto;
  transition: 0.2s;
}
.menu-panel__nav-close span:nth-child(1) {
  transform: rotate(45deg);
}
.menu-panel__nav-close span:nth-child(2) {
  transform: scaleX(0);
}
.menu-panel__nav-close span:nth-child(3) {
  transform: rotate(-45deg);
}
.menu-panel__inner {
  width: calc(100% - 60px);
  height: 100%;
  background: #fff;
  margin-left: auto;
  overflow-y: scroll;
}

.menu-panel-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 20px 10px;
}
.menu-panel-nav__btn {
  position: relative;
}
.menu-panel-nav__btn::before, .menu-panel-nav__btn::after {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 30px;
}
.menu-panel-nav__btn::before {
  background: #fff;
}
.menu-panel-nav__btn--login::after {
  background: url(../img/common/icon-user_b.svg) center/17px 19px no-repeat;
}
.menu-panel-nav__btn--fav {
  background-color: #009de0;
  border-color: #009de0;
}
.menu-panel-nav__btn--fav::after {
  background: url(../img/common/icon-heart_lb.svg) center/16.5px 14px no-repeat;
}
.menu-panel-nav .c-btn {
  max-width: 100% !important;
  padding: 11px 0 11px 20px;
}
.menu-panel-nav .c-btn span::before, .menu-panel-nav .c-btn span::after {
  width: 16px;
  height: 16px;
}

.menu-panel-menu__ttl {
  position: relative;
  display: block;
  color: #004490;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
  padding: 9px 0 12px 53px;
}
.menu-panel-menu__ttl--product::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  width: 25px;
  height: 25px;
  background: url(../img/common/icon-search_b.svg) center/contain no-repeat;
}
.menu-panel-menu__ttl--support {
  padding-bottom: 15px;
}
.menu-panel-menu__ttl--support::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  width: 25px;
  height: 25px;
  background: url(../img/common/icon-help.svg) center/contain no-repeat;
}
.menu-panel-menu__label {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 52px;
  background: #004490;
  border-bottom: solid 2px #009de0;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  padding: 0 40px 0 18px;
}
.menu-panel-menu__label::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  width: 18px;
  height: 18px;
  background: url(../img/common/circle-arrow_w.svg) center/contain no-repeat;
}
.menu-panel-menu__support-list {
  border-top: solid 1px #e5e5e5;
  margin-top: 2px;
}
.menu-panel-menu__label-w {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 50px;
  border-bottom: solid 1px #e5e5e5;
  font-size: 16px;
  line-height: 1.5;
  padding: 0 40px 0 18px;
}
.menu-panel-menu__label-w::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  width: 18px;
  height: 18px;
  background: url(../img/common/circle-arrow-light_b.svg) center/contain no-repeat;
}
.menu-panel-menu__label:has(~ .menu-panel-menu__sub-list)::after {
  right: 20px;
  width: 17px;
  height: 17px;
  background-image: url(../img/common/down-arrow_w.svg);
  transition: 0.2s;
}
.menu-panel-menu__label:has(~ .menu-panel-menu__sub-list).is-open::after {
  transform: rotate(180deg);
}
.menu-panel-menu__sub-list {
  display: none;
}
.menu-panel-menu__sub-list > li > a {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 50px;
  border-bottom: solid 1px #e5e5e5;
  font-size: 16px;
  line-height: 1.5;
  padding: 0 40px 0 53px;
}
.menu-panel-menu__sub-list > li > a::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  width: 18px;
  height: 18px;
  background: url(../img/common/circle-arrow-light_b.svg) center/contain no-repeat;
}
.menu-panel-menu__sub-list > li > a > span {
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  width: 30px;
  height: 30px;
}
.menu-panel-menu__sub-list > li > a .icon-office {
  background: url(../img/common/menu-icon-office.svg) center/19.5px no-repeat;
}
.menu-panel-menu__sub-list > li > a .icon-surfing {
  background: url(../img/common/menu-icon-music.svg) center/22.5px no-repeat;
}
.menu-panel-menu__sub-list > li > a .icon-education {
  background: url(../img/common/menu-icon-book.svg) center/22.5px no-repeat;
}
.menu-panel-menu__sub-list > li > a .icon-programming {
  background: url(../img/common/menu-icon-code.svg) center/20px no-repeat;
}
.menu-panel-menu__sub-list > li > a .icon-business {
  background: url(../img/common/menu-icon-building.svg) center/23px no-repeat;
}
.menu-panel-menu__sub-list > li > a .icon-small {
  background: url(../img/common/menu-icon-small.svg) center/22px no-repeat;
}
.menu-panel-menu__sub-list > li > a .icon-carry {
  background: url(../img/common/menu-icon-carry.svg) center/24px no-repeat;
}

.menu-panel-cat-group__ttl {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 51px;
  background: #e3f5fc;
  border-bottom: solid 1px #004490;
  color: #004490;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  padding: 0 40px 0 18px;
}
.menu-panel-cat-group__ttl::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  width: 17px;
  height: 17px;
  background: url(../img/common/down-arrow_b.svg) center/contain no-repeat;
  transition: 0.2s;
}
.menu-panel-cat-group__ttl.is-open::after {
  transform: rotate(180deg);
}
.menu-panel-cat-group__list {
  background: #fff;
  display: none;
}
.menu-panel-cat-group__list > li > a {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 50px;
  border-bottom: solid 1px #e5e5e5;
  font-size: 16px;
  line-height: 1.5;
  padding: 0 40px 0 48px;
}
.menu-panel-cat-group__list > li > a::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  width: 12px;
  height: 1px;
  background: #004490;
}
.menu-panel-cat-group__list > li > a::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  width: 18px;
  height: 18px;
  background: url(../img/common/circle-arrow-light_b.svg) center/contain no-repeat;
}

.menu-panel .c-contact {
  margin-top: 42px;
  padding: 21px 0 100px;
}
.menu-panel .c-contact__ttl span::before {
  left: 0;
  right: 0;
  top: -50px;
  margin: auto;
  width: 43px;
  height: 52px;
}
.menu-panel .c-contact-item__ttl {
  padding-right: 2px;
}
.menu-panel .c-contact-item__body {
  height: 75px;
}
.menu-panel .c-contact-item--tel .c-contact-item__body {
  height: 105px;
}
.menu-panel .c-contact-item__tel-wrap {
  padding-bottom: 3px;
}
.menu-panel .c-contact-item__tel-catch {
  margin-bottom: 6px;
  padding: 6px 18px;
}
.menu-panel .c-contact-item__tel-catch::before {
  display: none;
}
.menu-panel .c-contact-item__tel-catch::before::after {
  left: 26px;
  border-width: 9px 10px 0 0;
}
.menu-panel .c-contact-item__tel-num {
  font-size: 30px;
  letter-spacing: 0.02em;
}
.menu-panel .c-contact-item__tel-note {
  margin-top: 0;
}

.footer-guide {
  background: #f5f5f5;
  padding: 50px 0 80px;
}
.footer-guide__inner {
  display: flex;
  gap: 7.5%;
}
.footer-guide__col {
  flex: 1;
}
.footer-guide__guide-link {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

.footer-guide-sec + .footer-guide-sec {
  margin-top: 40px;
}
.footer-guide-sec__ttl {
  border-left: solid 4px #009de0;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin-bottom: 13px;
  padding-left: 22px;
}
.footer-guide-sec__txt {
  font-size: 15px;
  letter-spacing: 0.08em;
  line-height: 1.75;
}
.footer-guide-sec__txt em {
  color: #004490;
  font-weight: 700;
}
.footer-guide-sec__txt strong {
  display: inline-block;
  background: #e60012;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  margin: 0 6px;
  padding: 5.5px 8px;
  vertical-align: 1px;
}
.footer-guide-sec__txt b {
  font-weight: 700;
}
.footer-guide-sec__list li {
  font-size: 15px;
  letter-spacing: 0.08em;
  line-height: 1.75;
  word-break: break-all;
}
.footer-guide-sec__list li:not(:first-child) {
  margin-top: 6px;
}
.footer-guide-sec__list li::before {
  content: "";
  display: inline-block;
  width: auto;
  height: auto;
  width: 6px;
  height: 6px;
  background: #004490;
  border-radius: 50%;
  margin-right: 5px;
  vertical-align: middle;
}
.footer-guide-sec__list li .note {
  display: block;
  font-size: 14px;
  line-height: 1.7142857143;
  letter-spacing: 0.08em;
}
.footer-guide-sec__notes {
  margin-top: 9px;
}
.footer-guide-sec__notes li {
  font-size: 14px;
  line-height: 1.7142857143;
  letter-spacing: 0.08em;
}
.footer-guide-sec__notes li:not(:first-child) {
  margin-top: 10px;
}
.footer-guide-sec__notes + .footer-guide-sec__txt {
  margin-top: 30px;
}
.footer-guide-sec__link {
  position: relative;
  display: block;
  color: #004490;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin-top: 10px;
  padding-right: 23px;
  text-align: right;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: #004490;
  text-underline-offset: 4px;
  transition: 0.2s;
}
.footer-guide-sec__link::after {
  content: "";
  position: absolute;
  right: 2px;
  top: 50%;
  display: block;
  width: 17px;
  height: 17px;
  background: url(../img/common/circle-arrow_b.svg) center/contain no-repeat;
  transform: translateY(-50%);
}
.footer-guide-sec__link:hover {
  text-decoration-color: transparent;
}
.footer-guide-sec__link + .footer-guide-sec__link {
  margin-top: 6px;
}
.footer-guide-sec__address {
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 1.7142857143;
  margin-top: 6px;
}
.footer-guide-sec__address a {
  color: #004490;
  text-decoration: underline;
  text-decoration-color: #004490;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.footer-guide-sec__delivery-time {
  position: relative;
  background: #fff;
  margin-top: 18px;
  margin-bottom: 16px;
  padding: 21px 23px 20px;
}
.footer-guide-sec__delivery-time span {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-50%);
  display: block;
  width: 100%;
  color: #004490;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}
.footer-guide-sec__cal {
  background: #fff;
  margin-top: 20px;
  padding: 2px 10px 9px;
}
.footer-guide-sec__cal div.cal_wrapper {
  padding: 0;
}
.footer-guide-sec__cal .cal {
  width: 100%;
}
.footer-guide-sec__cal div.cal_wrapper table.cal tr th p {
  margin-top: 3px;
}
.footer-guide-sec__cal div.cal_wrapper table.cal tr th div.cal_ui input {
  padding: 3px 7px;
}
.footer-guide-sec__cal div.cal_wrapper table.cal tr.headline td {
  padding: 0;
}
.footer-guide-sec__cal div.cal_wrapper table.cal tr td div {
  padding: 2px 0;
}
.footer-guide-sec__cal .holiday {
  color: red;
  font-size: 12px;
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin-top: 9px;
}

.footer-main {
  padding: 60px 0 56px;
}
.footer-main__inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.footer-main__info {
  flex: 0 0 300px;
}
.footer-main__logo {
  margin-bottom: 26px;
}
.footer-main__logo img {
  display: block;
  width: 241px;
}
.footer-main__company {
  font-weight: 700;
}
.footer-main__address {
  font-size: 14px;
  line-height: 1.7142857143;
  letter-spacing: 0.08em;
}
.footer-main__nav {
  flex: 1;
  max-width: 840px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 40px;
}
.footer-nav__col {
  flex: 1;
}
.footer-nav__ttl {
  position: relative;
  border-bottom: solid 1px rgba(0, 68, 144, 0.2);
  color: #004490;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin-bottom: 12px;
  padding: 3px 0 9px;
}
.footer-nav__ttl--shopping {
  padding-left: 30px;
}
.footer-nav__ttl--shopping::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 7px;
  display: block;
  width: 20px;
  height: 20px;
  background: url(../img/common/icon-question.svg) center/contain no-repeat;
}
.footer-nav__ttl--company {
  padding-left: 35px;
}
.footer-nav__ttl--company::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  display: block;
  width: 28px;
  height: 18px;
  background: url(../img/common/icon-whale.svg) center/contain no-repeat;
}
.footer-nav__list {
  padding-left: 2px;
}
.footer-nav__list li a {
  font-size: 15px;
  letter-spacing: 0.06em;
  line-height: 1.5;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: 0.2s;
}
.footer-nav__list li a:hover {
  text-decoration-color: currentColor;
}

.footer-bottom {
  border-top: solid 1px #ebebeb;
  padding: 21px 0;
}
.footer-bottom__nav {
  display: flex;
  justify-content: center;
}
.footer-bottom__nav li a {
  font-size: 14px;
  letter-spacing: 0.06em;
  line-height: 1;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: 0.2s;
}
.footer-bottom__nav li a:hover {
  text-decoration-color: currentColor;
}
.footer-bottom__nav li:not(:first-child)::before {
  content: "|";
  display: inline-block;
  color: #aaa;
  font-weight: 300;
  margin: 0 15px;
}

.footer-copyright {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  background: #004490;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
}

.floating-container {
  position: fixed;
  right: 0;
  bottom: 100px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

.floating-line {
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
  padding-right: 5px;
  transition: 0.2s;
}
.floating-line:hover {
  opacity: 0.8;
}
.floating-line img {
  display: block;
  width: 128px;
}

.floating-btns {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  border-radius: 15px 0 0 15px;
  overflow: hidden;
}
.floating-btns__item {
  position: relative;
  display: block;
  width: 110px;
  height: 100px;
  background: #004490;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2666666667;
  padding: 50px 0 0;
  text-align: center;
  transition: 0.2s;
}
.floating-btns__item::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
}
.floating-btns__item::after {
  content: "";
  position: absolute;
  right: 2px;
  bottom: 2px;
  display: block;
  width: 0;
  height: 0;
  border-left: solid 10px transparent;
  border-bottom: solid 10px #00cef0;
}
.floating-btns__item:hover {
  background: #00cef0;
}
.floating-btns__item:not(:first-child) {
  border-top: solid 1px rgba(255, 255, 255, 0.2);
}
.floating-btns__item--cart {
  padding-top: 53px;
}
.floating-btns__item--cart::before {
  top: 13px;
  width: 36px;
  height: 35px;
  background: url(../img/common/icon-cart_w.svg) center/contain no-repeat;
}
.floating-btns__item--cart .cart-count {
  position: absolute;
  top: 9px;
  left: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 23px;
  height: 23px;
  background: #fff000;
  border-radius: 50%;
  color: #111;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
}
.floating-btns__item--search::before {
  top: 14px;
  width: 30px;
  height: 30px;
  background: url(../img/common/icon-search_w.svg) center/contain no-repeat;
}

.layout--sidebar {
  display: flex;
  flex-direction: row-reverse;
  gap: 50px;
  margin-top: 40px;
  padding-bottom: 80px;
}
.layout__sidebar {
  flex: 0 0 250px;
}
.layout__main {
  flex: 1;
  min-width: 0;
}

.breadcrumbs {
  font-family: "DM Sans", "Noto Sans JP", sans-serif;
  padding: 4px 0;
  background: #f7f7f7;
}
.breadcrumbs__item {
  display: inline;
  font-size: 14px;
  letter-spacing: 0.06em;
}
.breadcrumbs__item a {
  color: #004490;
}
.breadcrumbs__item:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 10px;
  background: url(../img/common/chevron-right_gray.svg) center/cover no-repeat;
  margin: 0 12px;
}

.mv-sub {
  position: relative;
  text-align: center;
  font-weight: 700;
  color: #fff;
  overflow: hidden;
  padding: 62px 0 66px;
}
.mv-sub::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 160px;
  background: url(../img/common/submv-bg.jpg) center/cover no-repeat;
  z-index: -1;
}
.mv-sub__ttl {
  font-size: 48px;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

.sidebar-bnr {
  margin-bottom: 20px;
}
.sidebar-bnr a {
  transition: opacity 0.2s ease;
}
.sidebar-bnr a:hover {
  opacity: 0.75;
}
.sidebar-bnr img {
  display: block;
  width: 250px;
  margin: auto;
}

.sidebar-catmenu {
  background: #f5f5f5;
  padding: 20px 10px 10px;
}
.sidebar-catmenu__ttl {
  color: #004490;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin-bottom: 21px;
  text-align: center;
}
.sidebar-catmenu__ttl::before {
  content: "";
  display: inline-block;
  width: 23px;
  height: 19px;
  background: url(../img/common/icon-toc.svg) center/contain no-repeat;
  margin-right: 9px;
  margin-left: -16px;
  vertical-align: -3px;
}
.sidebar-catmenu__group-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.sidebar-support {
  background: #e3f5fc;
  margin-top: 20px;
  padding: 20px 10px 28px;
}
.sidebar-support__ttl {
  color: #004490;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin-bottom: 21px;
  text-align: center;
}
.sidebar-support__ttl::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  background: url(../img/common/icon-help.svg) center/contain no-repeat;
  margin-right: 10px;
  margin-left: -16px;
  vertical-align: -4px;
}
.sidebar-support .c-cat-menu .icon-info {
  background-image: url(../img/common/menu-icon-info.svg);
  background-size: 24px;
}
.sidebar-support .c-cat-menu .icon-question {
  background-image: url(../img/common/menu-icon-question.svg);
  background-size: 24px;
}
.sidebar-support .c-cat-menu .icon-line {
  background-image: url(../img/common/menu-icon-line.svg);
  background-size: 26px;
}
.sidebar-support .c-cat-menu .icon-shindan {
  background-image: url(../img/common/menu-icon-shindan.svg);
  background-size: 29px;
}
.sidebar-support__tel {
  margin-top: 20px;
}
.sidebar-support__tel-catch {
  position: relative;
  display: block;
  width: -moz-max-content;
  width: max-content;
  background: #fff000;
  border-radius: 40px;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  margin: 0 auto 14px;
  padding: 10px 13px 9px 21px;
  text-align: center;
  transform: translateX(6px);
}
.sidebar-support__tel-catch::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -20px;
  display: block;
  width: 40px;
  height: 49px;
  background: url(../img/common/kujira01.png) center/contain no-repeat;
}
.sidebar-support__tel-catch::after {
  content: "";
  position: absolute;
  top: calc(100% - 1px);
  left: 48px;
  display: block;
  width: 0;
  height: 0;
  border-top: solid 12px #fff000;
  border-right: solid 12px transparent;
  transform: skewX(-41deg);
}
.sidebar-support__tel-num {
  display: block;
  color: #004490;
  font-family: "DM Sans", sans-serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  transition: opacity 0.2s ease;
}
.sidebar-support__tel-num:hover {
  opacity: 0.75;
}
.sidebar-support__tel-num span {
  font-weight: 400;
}
.sidebar-support__tel-num::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 19px;
  background: url(../img/common/icon-phone_b.svg) center/contain no-repeat;
  margin-right: 5px;
  vertical-align: -1px;
}
.sidebar-support__tel-time {
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin-top: 3px;
  text-align: center;
}
@media screen and (min-width: 751px){
  .sp {
    display: none !important;
  }
  .c-contact--s {
    background-image: url(../img/common/contact-bg-s.png);
    padding: 28px 0 30px;
  }
  .c-contact--s .c-contact__ttl {
    font-size: 32px;
    letter-spacing: 0.04em;
  }
  .c-contact--s .c-contact__list {
    margin-top: 24px;
  }
  .c-sec-search__detail {
    grid-column: 1/3;
  }
  .c-sec-reason-item--wide {
    grid-column: 1/4;
    display: flex;
  }
  .c-sec-reason-item:nth-child(5) {
    flex-direction: row-reverse;
  }
  .c-sec-reason-item:nth-child(4) .c-sec-reason-item__img {
    flex: 0 0 380px;
    aspect-ratio: unset;
  }
  .c-sec-reason-item:nth-child(4) .c-sec-reason-item__img img {
    width: 465px;
    max-width: unset;
    aspect-ratio: 465/271;
    transform: translate(-34px, -3px);
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.1));
  }
  .c-sec-reason-item:nth-child(5) .c-sec-reason-item__img {
    flex: 0 0 350px;
    aspect-ratio: unset;
  }
  .c-sec-reason-item:nth-child(5) .c-sec-reason-item__img img {
    width: 375px;
    max-width: unset;
    aspect-ratio: 750/629;
    transform: translate(17px, -24px);
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.1));
  }
  .c-sec-reason-item--wide .c-sec-reason-item__txt {
    flex: 1;
    min-width: 0;
  }
  .c-sec-reason-item:nth-child(4) .c-sec-reason-item__txt {
    padding: 47px 40px 58px 66px;
  }
  .c-sec-reason-item:nth-child(5) .c-sec-reason-item__txt {
    padding: 47px 20px 58px 66px;
  }
  .c-sec-reason-item--wide .c-sec-reason-item__ttl {
    font-size: 28px;
    letter-spacing: 0.06em;
    text-align: left;
  }
  .c-sec-reason-item--wide .c-sec-reason-item__detail {
    margin-top: 24px;
  }
  .header-sp {
    display: none;
  }
  .header-sp-fixed {
    display: none;
  }
  .sidebar .c-cat-menu__ttl {
    height: 40px;
    font-size: 16px;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
  }
  .sidebar .c-cat-menu__list li {
    position: relative;
  }
  .sidebar .c-cat-menu__list li::before {
    left: 16px;
  }
  .sidebar .c-cat-menu__list li + li {
    margin-top: 4px;
  }
  .sidebar .c-cat-menu__list li a {
    height: auto;
    min-height: 46px;
    box-shadow: none;
    font-size: 15px;
    letter-spacing: 0.06em;
    line-height: 1.4666666667;
    padding: 12px 30px 12px 36px;
  }
  .sidebar .c-cat-menu__list li a::before, .sidebar .c-cat-menu__list li a::after {
    right: 10px;
    width: 18px;
    height: 18px;
  }
  .sidebar .c-cat-menu__list li a > span {
    left: 9px;
    width: 30px;
    height: 30px;
  }
  .sidebar .c-cat-menu__list li a .icon-office {
    background-size: 20px;
  }
  .sidebar .c-cat-menu__list li a .icon-surfing {
    background-size: 22px;
  }
  .sidebar .c-cat-menu__list li a .icon-education {
    background-size: 22px;
  }
  .sidebar .c-cat-menu__list li a .icon-programming {
    background-size: 22px;
  }
  .sidebar .c-cat-menu__list li a .icon-business {
    background-size: 23px;
  }
  .sidebar .c-cat-menu__list li a .icon-small {
    background-size: 19px;
  }
  .sidebar .c-cat-menu__list li a .icon-carry {
    background-size: 26px;
  }
  .sidebar .c-cat-menu__list li a .icon-note {
    background-size: 26px;
  }
  .sidebar .c-cat-menu__list li a .icon-desktop {
    background-size: 30px;
  }
  .sidebar .c-cat-menu__list li a .icon-gaming {
    background-size: 27px;
  }
  .sidebar .c-cat-menu__list li a .icon-mobile {
    background-size: 26px;
  }
  .sidebar .c-cat-menu__list li a .icon-tablet {
    background-size: 20px;
  }
  .sidebar .c-cat-menu__list li:has(span) a {
    min-height: 50px;
    padding: 13px 30px 13px 47px;
  }
}
@media screen and (min-width: 751px) and (max-width: 959px){
  .c-sec-reason-item:nth-child(4) .c-sec-reason-item__img {
    flex: 0 0 200px;
  }
  .c-sec-reason-item:nth-child(4) .c-sec-reason-item__img img {
    top: 50%;
    width: 233px;
    transform: translate(-10px, -50%);
  }
  .c-sec-reason-item:nth-child(5) .c-sec-reason-item__img {
    flex: 0 0 132px;
  }
  .c-sec-reason-item:nth-child(5) .c-sec-reason-item__img img {
    top: 50%;
    width: 173px;
    transform: translate(-30px, -50%);
  }
  .c-sec-reason-item:nth-child(4) .c-sec-reason-item__txt {
    padding: 25px 20px 25px 40px;
  }
  .c-sec-reason-item:nth-child(5) .c-sec-reason-item__txt {
    padding: 25px 20px 25px 20px;
  }
  .c-sec-reason-item--wide .c-sec-reason-item__ttl {
    font-size: 20px;
    letter-spacing: 0.06em;
  }
  .c-sec-reason-item--wide .c-sec-reason-item__detail {
    font-size: 14px;
    letter-spacing: 0.06em;
    margin-top: 24px;
  }
}
@media screen and (min-width: 960px){
  .pc-none {
    display: none !important;
  }
  .c-fadein.sp-only,
  .c-slidein.sp-only,
  .c-reveal.sp-only {
    opacity: 1;
    transform: none;
  }
  .c-btn:hover {
    color: #004490;
    background: #fff;
  }
  .c-btn:hover span::before {
    opacity: 0;
  }
  .c-btn:hover span::after {
    opacity: 1;
  }
}
@media screen and (min-width: 1001px){
  .c-sec-search-detail-group__head .c-sec-search-detail-group--short {
    flex: 0 0 72px;
  }
}
@media screen and (max-width: 1340px){
  .slick-prev {
    left: -15px;
  }
  .slick-next {
    right: -15px;
  }
}
@media screen and (max-width: 1200px){
  .c-contact__list {
    gap: 15px;
  }
  .c-contact-item__tel-catch {
    font-size: 12px;
    letter-spacing: 0.06em;
    padding: 10px 15px;
  }
  .c-contact-item__tel-catch::before {
    top: -5px;
    left: -33px;
    width: 45px;
    height: 50px;
  }
  .c-contact-item__tel-num {
    font-size: 32px;
  }
}
@media screen and (max-width: 1000px){
  .c-sec-search-detail__inner {
    display: block;
    -moz-column-count: 2;
         column-count: 2;
  }
  .c-sec-search-detail__col {
    display: contents;
    padding-right: 0;
  }
  .c-sec-search-detail-group {
    -moz-column-break-inside: avoid;
         break-inside: avoid;
    margin-bottom: 25px;
  }
  .c-sec-search-detail-group:not(:first-child) {
    margin-top: 0;
  }
}
@media screen and (max-width: 959px){
  .c-contact-item {
    border-radius: 5px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  }
  .c-contact-item__ttl {
    height: 35px;
    font-size: 16px;
    letter-spacing: 0.04em;
    padding-right: 20px;
  }
  .c-contact-item--tel .c-contact-item__ttl::before {
    width: 14px;
    height: 15.5px;
    margin-right: 8px;
  }
  .c-contact-item--line .c-contact-item__ttl::before {
    width: 22.5px;
    height: 20px;
    margin-right: 4px;
  }
  .c-contact-item--mail .c-contact-item__ttl::before {
    width: 17.5px;
    height: 13px;
    margin-right: 6px;
  }
  .c-contact-item__body {
    height: 120px;
    padding: 0 12.5px;
  }
  .c-contact-item .c-btn {
    width: 250px;
  }
  .c-contact-item .c-btn span {
    font-size: 16px;
  }
  .c-contact-item__tel-wrap {
    padding: 0 0 8px;
  }
  .c-contact-item__tel-catch {
    font-size: 10px;
    margin: 0 auto 9px;
    padding: 6px 12px;
  }
  .c-contact-item__tel-catch::before {
    top: -10px;
  }
  .c-contact-item__tel-catch::after {
    left: 32px;
    border-width: 10px 12px 0 0;
  }
  .c-contact-item__tel-num {
    font-size: 24px;
    letter-spacing: 0.02em;
  }
  .c-contact-item__tel-time {
    font-size: 10px;
    letter-spacing: 0.06em;
  }
  .c-cat-menu__list--2col {
    -moz-column-count: unset;
         column-count: unset;
  }
  .c-sec-kuchikomi__iframe-wrap::before {
    right: 0;
    top: -97px;
    width: 111px;
  }
  .c-sec-reason__list {
    gap: 20px;
  }
  .c-sec-reason-item__img::after {
    top: -5px;
    left: -5px;
    width: 50px;
    height: 48px;
    color: #111;
    font-size: 18px;
    letter-spacing: 0.02em;
    padding: 20px 0 0;
  }
  .c-sec-reason-item__txt {
    padding: 28px 20px 36px;
  }
  .c-sec-reason-item__ttl {
    font-size: 16px;
    letter-spacing: 0.06em;
    line-height: 1.5;
  }
  .c-sec-reason-item__ttl .en {
    font-size: 16px;
  }
  .c-sec-reason-item__ttl .num {
    font-size: 24px;
  }
  .c-sec-reason-item__detail {
    font-size: 14px;
    letter-spacing: 0.06em;
    line-height: 1.7857142857;
    margin-top: 8px;
  }
  .c-sort-menu {
    font-size: 11px;
    padding-inline: 20px;
  }
  .c-sort-menu__item::after {
    margin: 0 4px;
  }
  .c-voice-item__link {
    padding: 0 22.5px 78px;
  }
  .c-voice-item__link::before, .c-voice-item__link::after {
    top: 11px;
    border-radius: 5px;
  }
  .c-voice-item__link::before {
    background-image: url(../img/review/item-bg_sp.png);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  }
  .c-voice-item__icon {
    width: 128px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.07);
    margin-bottom: 5px;
  }
  .c-voice-item__icon::after {
    border-width: 3px;
  }
  .c-voice-item__info {
    margin-bottom: 14px;
  }
  .c-voice-item__name {
    font-size: 18px;
    letter-spacing: 0.06em;
    line-height: 1.5;
  }
  .c-voice-item__detail {
    line-height: 1.5714285714;
  }
  .c-voice-item__ttl {
    background: #f0fbff repeating-linear-gradient(-45deg, transparent, transparent 7.07px, rgba(255, 255, 255, 0.5) 7.07px, rgba(255, 255, 255, 0.5) 14.14px);
    border-radius: 5px;
    font-size: 16px;
    letter-spacing: 0.06em;
    line-height: 1.5;
    padding: 10px 20px;
  }
  .c-voice-item__ttl::after {
    border-width: 7px 7px 0 7px;
  }
  .c-voice-item__comment {
    line-height: 1.6875;
  }
  .c-voice-slider .slick-list {
    overflow: visible;
    width: calc(100% + 20px);
    margin: 0 -10px;
  }
  .c-voice-slider .slick-slide {
    padding: 0 10px;
  }
  .header-pc__ttl {
    font-size: 12px;
    letter-spacing: 0.06em;
  }
  .header-pc__nav li {
    font-size: 12px;
    letter-spacing: 0.06em;
  }
  .header-pc__nav li:not(:first-child)::before {
    margin: 0 5px;
  }
  .header-pc__cart-btn {
    flex: 0 0 120px;
  }
  .header-pc__cart-btn a {
    font-size: 13px;
    letter-spacing: 0.04em;
    padding-right: 4px;
  }
  .header-pc__cart-btn a::before {
    width: 21px;
    height: 20px;
    margin-right: 8px;
  }
  .header-pc__cart-btn a .cart-count {
    top: 7px;
    left: 18px;
    width: 15px;
    height: 15px;
    font-size: 10px;
  }
  .header-pc__logo img {
    width: 182px;
  }
  .header-pc-tel__catch {
    font-size: 12px;
    letter-spacing: 0.06em;
    margin-bottom: 5px;
  }
  .header-pc-tel__num {
    font-size: 24px;
    letter-spacing: 0.01em;
    margin-bottom: 5px;
  }
  .header-pc-tel__num::before {
    width: 21px;
    height: 21px;
  }
  .header-pc-tel__time {
    font-size: 12px;
    letter-spacing: 0.06em;
  }
  .header-pc-catmenu__list {
    gap: 10px;
  }
  .header-pc-catmenu__label {
    font-size: 15px;
    padding: 0 20px;
  }
  .header-pc-catmenu__label--parent::after {
    right: 0;
  }
  .header-megamenu__inner {
    flex-wrap: wrap;
  }
  .header-megamenu__col {
    flex: 0 0 50%;
  }
  .footer-guide__inner {
    gap: 20px;
  }
  .footer-guide-sec__ttl {
    font-size: 16px;
    letter-spacing: 0.06em;
    margin-bottom: 13px;
    padding-left: 15px;
  }
  .footer-guide-sec__txt {
    font-size: 14px;
    letter-spacing: 0.08em;
    line-height: 1.7142857143;
  }
  .footer-guide-sec__txt b,
  .footer-guide-sec__txt em {
    font-size: 16px;
  }
  .footer-guide-sec__txt strong {
    padding: 4px 6px;
  }
  .footer-guide-sec__list li {
    font-size: 14px;
    letter-spacing: 0.08em;
    line-height: 1.4285714286;
  }
  .footer-guide-sec__list li:not(:first-child) {
    margin-top: 6px;
  }
  .footer-guide-sec__list li::before {
    width: 4px;
    height: 4px;
    margin-right: 5px;
  }
  .footer-guide-sec__list li .note {
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 0.08em;
  }
  .footer-guide-sec__notes {
    margin-top: 9px;
  }
  .footer-guide-sec__notes li {
    font-size: 12px;
    line-height: 1.75;
    letter-spacing: 0.08em;
  }
  .footer-guide-sec__notes li:not(:first-child) {
    margin-top: 4px;
  }
  .footer-guide-sec__notes + .footer-guide-sec__txt {
    margin-top: 6px;
  }
  .footer-guide-sec__link {
    margin-top: 6px;
    padding-right: 19px;
  }
  .footer-guide-sec__link::after {
    width: 15px;
    height: 15px;
  }
  .footer-guide-sec__address {
    font-size: 14px;
    letter-spacing: 0.08em;
    line-height: 1.7142857143;
    margin-top: 6px;
  }
  .footer-guide-sec__delivery-time {
    position: relative;
    background: #fff;
    margin-top: 18px;
    margin-bottom: 12px;
    padding: 21px 23px 20px;
  }
  .footer-guide-sec__delivery-time span {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(-50%);
    display: block;
    width: 100%;
    color: #004490;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
  }
  .footer-main__info {
    flex: 0 0 260px;
  }
  .layout--sidebar {
    flex-direction: column;
    margin-top: 30px;
    padding: 0 0 42px;
  }
  .layout__main {
    flex: auto;
    width: 100%;
  }
  .layout--sidebar .layout__main {
    padding: 0 20px;
  }
  .layout__sidebar {
    flex: auto;
    width: 100%;
  }
  .sidebar .c-cat-menu__ttl {
    font-size: 16px;
    letter-spacing: 0.04em;
  }
  .sidebar .c-cat-menu__list li a br {
    display: none;
  }
  .sidebar-bnr img {
    width: 335px;
  }
}
@media screen and (max-width: 959px) and (min-width: 751px){
  .tb-none {
    display: none !important;
  }
  .sidebar-catmenu__group-list {
    display: block;
    -moz-column-count: 2;
         column-count: 2;
  }
  .sidebar-catmenu__group-list .c-cat-menu {
    -moz-column-break-inside: avoid;
         break-inside: avoid;
  }
  .sidebar-support .c-cat-menu__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
  }
  .sidebar-support .c-cat-menu__list li + li {
    margin: 0;
  }
}
@media screen and (max-width: 750px){
  .sp-none {
    display: none !important;
  }
  .pc {
    display: none !important;
  }
  .c-slidein {
    transition-duration: 0.4s;
  }
  .c-reveal {
    transition-duration: 0.4s;
  }
  .c-fadein.pc-only,
  .c-slidein.pc-only,
  .c-reveal.pc-only {
    opacity: 1;
    transform: none;
  }
  .c-btn {
    max-width: 260px;
    border-width: 1px;
    padding: 13px 10px 14px;
  }
  .c-btn span {
    font-size: 14px;
  }
  .c-btn span::before, .c-btn span::after {
    right: 0;
    width: 14px;
    height: 14px;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.1));
  }
  .c-btn--reverse span::before, .c-btn--reverse span::after {
    right: unset;
    left: 0;
  }
  .c-contact {
    background-image: url(../img/common/contact-bg_sp.png);
    padding: 34px 0 40px;
  }
  .c-contact__ttl {
    font-size: 24px;
  }
  .c-contact__ttl span::before {
    top: -15px;
    right: calc(100% - 3px);
    width: 48px;
    height: 58px;
  }
  .c-contact__desc {
    font-size: 14px;
    letter-spacing: 0.04em;
    line-height: 1.6428571429;
    margin-top: 13px;
  }
  .c-contact__list {
    flex-direction: column;
    margin-top: 15px;
  }
  .c-contact__note {
    font-size: 12px;
    letter-spacing: 0.04em;
    line-height: 1.8;
    margin-top: 9px;
    padding-left: 1em;
    text-indent: -1em;
    text-align: left;
  }
  .c-contact__faq-link {
    margin-top: 19px;
  }
  .c-contact--s {
    background-image: url(../img/common/contact-bg-s_sp.png);
    padding: 34px 0 32px;
  }
  .c-contact--s .c-contact__ttl {
    font-size: 21px;
    letter-spacing: 0.04em;
  }
  .c-contact--s .c-contact__desc {
    margin-top: 17px;
  }
  .c-contact-item {
    flex: auto;
    width: 100%;
    margin: auto;
  }
  .c-contact-item__body {
    height: 80px;
  }
  .c-contact-item--tel .c-contact-item__body {
    height: 120px;
  }
  .c-contact-item__tel-wrap {
    padding-bottom: 2px;
  }
  .c-contact-item__tel-catch {
    font-size: 12px;
    margin: 0 auto 9px;
    padding: 9px 23px;
    transform: none;
  }
  .c-contact-item__tel-catch::before {
    top: -5px;
    left: -26px;
    width: 45px;
    height: 56px;
  }
  .c-contact-item__tel-num {
    font-size: 34px;
    letter-spacing: 0.02em;
  }
  .c-contact-item__tel-time {
    font-size: 12px;
    letter-spacing: 0.06em;
    margin-top: 1px;
  }
  .c-radio {
    display: flex;
    flex-wrap: wrap;
    -moz-column-gap: 4%;
         column-gap: 4%;
  }
  .c-radio li {
    width: 48%;
    margin-bottom: 15px;
  }
  .c-radio label {
    font-size: 14px;
    letter-spacing: 0.06em;
    line-height: 1.5;
  }
  .c-radio label.sp-small {
    font-size: 12px;
    letter-spacing: 0.06em;
  }
  .c-radio label::before {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    border: 1px solid #dbdbdb;
    margin-right: 8px;
  }
  .c-radio label::after {
    width: 29.7px;
    height: 22.5px;
  }
  .c-checkbox {
    display: flex;
    flex-wrap: wrap;
    -moz-column-gap: 5%;
         column-gap: 5%;
  }
  .c-checkbox li {
    width: 47.5%;
    margin-bottom: 15px;
  }
  .c-checkbox label {
    font-size: 14px;
    letter-spacing: 0.06em;
    line-height: 1.5;
  }
  .c-checkbox label.sp-small {
    font-size: 12px;
    letter-spacing: 0.06em;
  }
  .c-checkbox label::before {
    width: 24px;
    height: 24px;
    border: 1px solid #dbdbdb;
  }
  .c-checkbox label::after {
    width: 29.7px;
    height: 22.5px;
  }
  .c-price {
    font-size: 20px;
    letter-spacing: 0.06em;
  }
  .c-faq {
    padding: 25px 0 35px;
  }
  .c-faq__ttl {
    font-size: 24px;
  }
  .c-faq__btn {
    margin-top: 20px;
  }
  .c-faq-list {
    gap: 15px;
    margin-top: 19px;
  }
  .c-faq-item {
    border-radius: 2.5px;
    box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.06);
  }
  .c-faq-item__q {
    min-height: 70px;
    font-size: 14px;
    line-height: 1.5714285714;
    padding: 13px 42px;
  }
  .c-faq-item__q::before {
    left: 14px;
    font-size: 20px;
  }
  .c-faq-item__q::after {
    right: 15px;
    width: 20px;
    height: 20px;
  }
  .c-faq-item__a {
    font-size: 12px;
    line-height: 1.75;
    border-radius: 5px;
    margin: 1px 15px 15px;
    padding: 14px 10px 15px 42px;
  }
  .c-faq-item__a::before {
    top: 17px;
    left: 15px;
    font-size: 20px;
  }
  .c-faq-item__a::after {
    top: 1px;
    left: 15px;
    width: 12px;
    height: 12px;
  }
  .c-faq-item__a a {
    text-underline-offset: 3px;
    margin: 0 3px 5px;
  }
  .c-cat-menu__ttl {
    position: relative;
    height: 50px;
    font-size: 16px;
    letter-spacing: 0.04em;
    margin-bottom: 0;
  }
  .c-cat-menu__ttl::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 19px;
    margin: auto;
    display: block;
    width: 15px;
    height: 15px;
    background: url(../img/common/down-arrow_w.svg) center/contain no-repeat;
    transition: 0.2s;
  }
  .c-cat-menu__ttl.is-open::after {
    transform: rotate(180deg);
  }
  .c-cat-menu__list {
    display: none;
    padding: 10px 20px 19px;
  }
  .c-cat-menu__list li::before {
    left: 21px;
    width: 15px;
  }
  .c-cat-menu__list li + li {
    margin-top: 5px;
  }
  .c-cat-menu__list li a {
    border-radius: 2.5px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
    font-size: 16px;
    letter-spacing: 0.06em;
    padding: 0 48px 0 44px;
  }
  .c-cat-menu__list li a > span {
    left: 13px;
  }
  .c-cat-menu__list li a .icon-office {
    background-size: 26px;
  }
  .c-cat-menu__list li a .icon-surfing {
    background-size: 25px;
  }
  .c-cat-menu__list li a .icon-education {
    background-size: 26px;
  }
  .c-cat-menu__list li a .icon-programming {
    background-size: 25px;
  }
  .c-cat-menu__list li a .icon-business {
    background-size: 29px;
  }
  .c-cat-menu__list li a .icon-small {
    background-size: 25px;
  }
  .c-cat-menu__list li a .icon-carry {
    background-size: 29px;
  }
  .c-cat-menu__list li a .icon-note {
    background-size: 28px;
  }
  .c-cat-menu__list li a .icon-desktop {
    background-size: 30px;
  }
  .c-cat-menu__list li a .icon-gaming {
    background-size: 29px;
  }
  .c-cat-menu__list li a .icon-mobile {
    background-size: 28px;
  }
  .c-cat-menu__list li a .icon-tablet {
    background-size: 22px;
  }
  .c-cat-menu__list li a:has(span) {
    padding: 0 48px 0 64px;
  }
  .c-sec-search {
    padding: 38px 0 30px;
  }
  .c-sec-search::before {
    width: 62px;
    transform: translate(-50%, -37%);
  }
  .c-sec-search__ttl {
    font-size: 20px;
    letter-spacing: 0.04em;
  }
  .c-sec-search__keyword {
    margin: 20px auto 0;
  }
  .c-sec-search__keyword input[type=text] {
    height: 50px;
    font-size: 14px;
    padding: 0 18px;
  }
  .c-sec-search__keyword input[type=text]::-moz-placeholder {
    font-size: 14px;
    letter-spacing: 0.04em;
  }
  .c-sec-search__keyword input[type=text]::placeholder {
    font-size: 14px;
    letter-spacing: 0.04em;
  }
  .c-sec-search__keyword a {
    right: 15px;
    width: 19px;
    height: 19px;
  }
  .c-sec-search__group-list {
    grid-template-columns: 100%;
    gap: 1px;
    width: calc(100% + 40px);
    margin: 25px -20px 0;
  }
  .c-sec-search-detail {
    display: none;
    max-width: calc(100% - 20px);
    border-radius: 2.5px;
    margin: 10px auto 0;
    padding: 19px 15px 30px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  }
  .c-sec-search-detail__inner {
    -moz-column-count: unset;
         column-count: unset;
  }
  .c-sec-search-detail__submit {
    margin-top: 25px;
  }
  .c-sec-search-detail-group {
    display: block;
    margin-bottom: 7px;
  }
  .c-sec-search-detail-group__head {
    position: relative;
    text-align: center;
    margin-bottom: 16px;
  }
  .c-sec-search-detail-group__ttl {
    display: inline;
    font-size: 20px;
    letter-spacing: 0.06em;
  }
  .c-sec-search-detail-group__question {
    position: static;
    top: unset;
    left: unset;
    display: inline-block;
    margin-left: 3px;
    margin-right: -25px;
    vertical-align: -1px;
  }
  .c-sec-search-detail-group__question::after {
    width: 17px;
    height: 17px;
  }
  .c-sec-search-detail-group__desc {
    top: unset;
    bottom: calc(100% + 5px);
    width: 335px;
    border-radius: 2.5px;
    line-height: 1.6428571429;
    padding: 14px 19px 15px;
    text-align: left;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.1));
  }
  .c-sec-search-detail-group__desc::before {
    bottom: unset;
    top: calc(100% - 1px);
    left: unset;
    right: 99px;
    border-top: solid 9px #bfecff;
    border-width: 9px 9px 0 9px;
  }
  .c-sec-kuchikomi {
    background-image: url(../img/common/kuchikomi/kuchikomi-bg_sp.jpg);
    padding: 22px 0 55px;
  }
  .c-sec-kuchikomi__catch {
    font-size: 14px;
    letter-spacing: 0.06em;
    margin-bottom: 11px;
    padding-bottom: 12px;
  }
  .c-sec-kuchikomi__catch::after {
    width: 25px;
  }
  .c-sec-kuchikomi__ttl {
    gap: 16px;
    line-height: 1.6;
  }
  .c-sec-kuchikomi__ttl::before, .c-sec-kuchikomi__ttl::after {
    width: 1px;
    height: 65px;
  }
  .c-sec-kuchikomi__ttl .marker {
    font-size: 16px;
    letter-spacing: 0.04em;
    background: linear-gradient(to top, transparent 5%, #fff000 5%, #fff000 30%, transparent 30%) left/100% 100% no-repeat;
  }
  .c-sec-kuchikomi__ttl .large {
    font-size: 28px;
    letter-spacing: 0.04em;
  }
  .c-sec-kuchikomi__iframe-wrap {
    height: 350px;
    margin-top: 16px;
    padding: 8px 0;
  }
  .c-sec-kuchikomi__iframe-wrap::before {
    right: -7px;
    top: -63px;
    width: 74px;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
  }
  .c-sec-kuchikomi__iframe-wrap iframe {
    width: 100%;
    height: 100%;
  }
  .c-sec-kuchikomi__more {
    margin-top: 25px;
  }
  .c-sec-reason {
    padding: 47px 0 40px;
  }
  .c-sec-reason::before {
    width: 60px;
    transform: translate(-50%, -33%);
  }
  .c-sec-reason__ttl {
    font-size: 20px;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }
  .c-sec-reason__ttl span {
    font-size: 22px;
    letter-spacing: 0.04em;
  }
  .c-sec-reason__list {
    grid-template-columns: 100%;
    margin-top: 26px;
  }
  .c-sec-reason__more {
    margin-top: 24px;
  }
  .c-sec-reason-item {
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  }
  .c-sec-reason-item__img {
    aspect-ratio: 2.75;
  }
  .c-sec-reason-item__txt {
    padding: 20px 25px;
  }
  .c-shindan-bnr {
    width: 343px;
  }
  .c-product-list__ttl {
    font-size: 20px;
    line-height: 1.3;
  }
  .c-product-list__ttl::before {
    width: 5px;
    height: 30px;
    margin-right: 11.5px;
  }
  .c-product-list__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 6%;
    margin-top: 20px;
  }
  .c-sort-menu {
    margin: 21px -20px 0;
    padding: 12.5px 18px 12.5px 19px;
    font-size: 14px;
  }
  .c-sort-menu__number {
    margin-bottom: 1px;
  }
  .c-product-item__img {
    margin-bottom: 9px;
  }
  .c-product-item__name {
    font-size: 12px;
    margin-bottom: 4px;
  }
  .c-product-item__txt {
    font-size: 12px;
  }
  .c-product-item__icon {
    -moz-column-gap: 7.5px;
         column-gap: 7.5px;
  }
  .c-product-item__icon-img {
    height: 20.5px;
    width: calc(50% - 3.75px);
  }
  .c-product-item .c-price {
    font-size: 16px;
  }
  .c-product-item .c-price span {
    font-size: 11px;
  }
  .c-product-item__favorite {
    bottom: 23px;
  }
  .c-product-item__favorite-icon {
    width: 20px;
    height: 18px;
  }
  .c-pagination {
    margin: 0 -20px 0;
  }
  .c-pagination__item a, .c-pagination__item span {
    border-radius: 2.5px;
  }
  .c-ttl01 {
    font-size: 20px;
    letter-spacing: 0.06em;
    padding-left: 18px;
  }
  .c-ttl01::before {
    width: 5px;
    height: 30px;
    transform: translateY(-47%);
  }
  .c-ttl02 {
    font-size: 24px;
    padding-bottom: 15px;
  }
  .c-voice-item__link {
    padding: 0 22.5px 25px;
  }
  .c-voice-item__more {
    position: relative;
    right: unset;
    bottom: unset;
    margin-top: 5px;
    padding-right: 27px;
    text-align: right;
  }
  .c-voice-item__more::after {
    top: 60%;
    right: 6px;
    width: 15px;
    height: 15px;
  }
  .c-voice-slider .slick-list {
    width: 100%;
    margin: 0;
  }
  .c-voice-slider .slick-slide {
    padding: 0 20px;
  }
  .c-voice-slider .c-voice-item__link {
    padding-bottom: 23px;
  }
  .c-voice-slider .c-voice-item__icon {
    width: 112.5px;
  }
  .c-voice-slider .c-voice-item__name {
    font-size: 16px;
  }
  .c-voice-slider .c-voice-item__detail {
    font-size: 12px;
  }
  .c-voice-slider .c-voice-item__ttl {
    font-size: 14px;
    margin-bottom: 10px;
    padding: 9px 20px;
  }
  .c-voice-slider .c-voice-item__comment {
    font-size: 14px;
  }
  .c-voice-slider .c-voice-item__more {
    font-size: 12px;
    padding-right: 20px;
  }
  .c-voice-slider .c-voice-item__more::after {
    right: 2px;
    width: 12px;
    height: 13px;
  }
  .c-voice-slider .slick-dots {
    bottom: -38px;
  }
  .c-voice-slider .slick-dots li {
    margin: -1px;
  }
  .slick-arrow {
    width: 29px;
    height: 29px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }
  .slick-prev {
    left: 0;
  }
  .slick-next {
    right: 0;
  }
  .slick-dots {
    bottom: -33px;
  }
  .slick-dots li {
    margin: 0;
  }
  .slick-dots li button::before {
    color: #999999;
    opacity: 1;
  }
  .slick-dots li.slick-active button::before {
    color: #004490;
    opacity: 1;
  }
  .scroll-hint-icon::before {
    width: 41px;
    height: 41px;
  }
  body {
    font-size: 14px;
  }
  .header {
    --header-height: 120px;
  }
  .header-pc {
    display: none;
  }
  .footer-guide {
    padding: 20px 0 35px;
  }
  .footer-guide__inner {
    display: block;
    gap: 0;
  }
  .footer-guide__col + .footer-guide__col {
    margin-top: 10px;
  }
  .footer-guide__guide-link {
    margin-top: 25px;
  }
  .footer-guide-sec + .footer-guide-sec {
    margin-top: 10px;
  }
  .footer-guide-sec__ttl {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 50px;
    background: #fff;
    border-left-width: 4px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
    margin-bottom: 0;
  }
  .footer-guide-sec__ttl::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 0;
    bottom: 0;
    margin: auto;
    display: block;
    width: 17px;
    height: 17px;
    background: url(../img/common/down-arrow_b.svg) center/contain no-repeat;
    transition: 0.2s;
  }
  .footer-guide-sec__ttl.is-open::after {
    transform: rotate(180deg);
  }
  .footer-guide-sec__body {
    display: none;
    padding: 14px 0 14px;
  }
  .footer-guide-sec__cal div.cal_wrapper table.cal tr th p {
    margin-top: 0;
  }
  .footer-main {
    padding: 25px 0 20px;
  }
  .footer-main__inner {
    flex-direction: column-reverse;
    gap: 30px;
  }
  .footer-main__info {
    flex: auto;
    width: 100%;
  }
  .footer-main__nav {
    flex: auto;
    width: 100%;
  }
  .footer-main__logo {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
    padding-right: 10px;
  }
  .footer-main__company {
    font-size: 16px;
    margin-bottom: 2px;
  }
  .footer-main__address {
    font-size: 16px;
    letter-spacing: 0.08em;
    line-height: 1.5;
  }
  .footer-nav {
    flex-direction: column;
    gap: 25px;
  }
  .footer-nav__ttl {
    font-size: 16px;
    letter-spacing: 0.06em;
    margin-bottom: 0;
    padding: 0 0 9px;
  }
  .footer-nav__ttl--shopping {
    padding-left: 25px;
  }
  .footer-nav__ttl--shopping::before {
    left: 0px;
    top: 5px;
    width: 16px;
    height: 16px;
  }
  .footer-nav__ttl--company {
    padding-left: 25px;
  }
  .footer-nav__ttl--company::before {
    left: 0;
    top: 8px;
    width: 22px;
    height: 13px;
  }
  .footer-nav__list {
    flex: auto;
    width: 100%;
  }
  .footer-nav__list li a {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 50px;
    border-bottom: solid 1px #e5e5e5;
    font-size: 14px;
    letter-spacing: 0.06em;
    padding: 0 40px 0 8px;
  }
  .footer-nav__list li a::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
    display: block;
    width: 15px;
    height: 15px;
    background: url(../img/common/circle-arrow-light_b.svg) center/contain no-repeat;
  }
  .footer-bottom {
    padding: 0 0 30px;
    border-top: none;
  }
  .footer-bottom__nav {
    display: block;
    border: solid 1px #ebebeb;
  }
  .footer-bottom__nav li a {
    display: block;
    padding: 17px 0;
    text-align: center;
  }
  .footer-bottom__nav li:not(:first-child) {
    border-top: solid 1px #ebebeb;
  }
  .footer-bottom__nav li:not(:first-child)::before {
    display: none;
  }
  .footer-copyright {
    height: 40px;
    font-size: 10px;
  }
  .floating-container {
    bottom: 10px;
    right: 10px;
    flex-direction: row-reverse;
    gap: 10px;
  }
  .floating-container.page-cart {
    display: none;
  }
  .floating-line {
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.1));
    padding-right: 0;
    margin-left: -8px;
  }
  .floating-line img {
    width: 83px;
  }
  .floating-btns {
    display: flex;
    gap: 10px;
    border-radius: unset;
    box-shadow: none;
    overflow: auto;
  }
  .floating-btns__item {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    font-size: 11px;
    line-height: 1.2727272727;
    padding: 36px 0 0;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.1));
  }
  .floating-btns__item::after {
    display: none;
  }
  .floating-btns__item--cart {
    display: none;
  }
  .floating-btns__item--search::before {
    top: 9px;
    width: 24px;
    height: 24px;
  }
  .breadcrumbs {
    padding: 6px 0;
  }
  .breadcrumbs__list {
    overflow-x: scroll;
    white-space: nowrap;
  }
  .breadcrumbs__item {
    font-size: 12px;
    letter-spacing: 0.07em;
  }
  .breadcrumbs__item:not(:last-child)::after {
    width: 5px;
    height: 8px;
    margin: 0px 12px;
  }
  .mv-sub {
    padding: 40px 0 43px;
  }
  .mv-sub::before {
    background-image: url(../img/common/submv-bg_sp.jpg);
  }
  .mv-sub__ttl {
    font-size: 27px;
    line-height: 1.5555555556;
  }
  .sidebar .c-cat-menu__ttl {
    margin-bottom: 0;
  }
  .sidebar-bnr {
    padding: 0 20px;
  }
  .sidebar-catmenu {
    padding: 19px 0 0;
  }
  .sidebar-catmenu__ttl::before {
    margin-right: 13px;
    margin-left: 2px;
    vertical-align: -3px;
  }
  .sidebar-catmenu__group-list {
    gap: 1px;
  }
  .sidebar-support {
    margin-top: 10px;
    padding: 20px 20px 20px;
  }
  .sidebar-support__ttl {
    margin-bottom: 18px;
  }
  .sidebar-support__ttl::before {
    margin-right: 8px;
    margin-left: 2px;
  }
  .sidebar-support .c-cat-menu__list {
    display: block;
    padding: 0;
  }
  .sidebar-support .c-cat-menu .icon-info {
    background-size: 28px;
  }
  .sidebar-support .c-cat-menu .icon-question {
    background-size: 28px;
  }
  .sidebar-support .c-cat-menu .icon-line {
    background-size: 28px;
  }
  .sidebar-support .c-cat-menu .icon-shindan {
    background-size: 28px;
  }
  .sidebar-support__tel {
    background: #fff;
    margin-top: 21px;
    padding: 15px 0 15px;
  }
  .sidebar-support__tel-catch {
    font-size: 12px;
    letter-spacing: 0.06em;
    margin: 0 auto 9px;
    padding: 9px 22px 8px 22px;
    transform: translateX(14px);
  }
  .sidebar-support__tel-catch::before {
    top: -5px;
    left: -28px;
    width: 45px;
    height: 55px;
  }
  .sidebar-support__tel-catch::after {
    left: 29px;
  }
  .sidebar-support__tel-num {
    font-size: 34px;
    letter-spacing: 0.02em;
  }
  .sidebar-support__tel-num::before {
    display: none;
  }
}
