@charset "UTF-8";
/* -----------------------------------------------
* Plugins エントリーポイント
-------------------------------------------------- */
/*------------------------------------------------------------------------------
  reset
------------------------------------------------------------------------------*/
html,
input,
textarea,
select,
button {
  font-family: "Noto Sans JP", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
}

html {
  color: #333;
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
  overflow-wrap: break-word;
}

body {
  background: #fff;
  margin: 0;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  border: 0;
  margin: 0;
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

figure {
  margin: 0;
}

p {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

input,
select,
textarea,
button {
  color: inherit;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select::-ms-expand {
  display: none;
}

textarea {
  resize: vertical;
}

::-webkit-input-placeholder {
  color: #ccc;
}

:-ms-input-placeholder {
  color: #ccc;
}

::-ms-input-placeholder {
  color: #ccc;
}

::-moz-placeholder {
  color: #ccc;
}

::placeholder {
  color: #ccc;
}

button {
  border: none;
  cursor: pointer;
}

label {
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

#wrapper {
  position: relative;
}

.inner-block {
  margin: 0 auto;
  position: relative;
}

dl, dt, dd {
  padding: 0;
  margin: 0;
}

.ib {
  display: inline-block;
}

.c-svg {
  display: inline-block;
  fill: currentColor;
  vertical-align: top;
}

/* -----------------------------------------------
* Modules エントリーポイント
-------------------------------------------------- */
/* --------------------------------
c-header
----------------------------------- */
.c-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding-top: 0;
  width: 100%;
  background: #f3f3f3;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  max-height: 147px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
}
.c-header.is-active {
  background: #fff;
}
.c-header .logo {
  padding: 17px 20px 16px;
  width: 160px;
}
.c-header .r-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: min(20px, 5.3333333333vw);
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-header .search-area {
  margin-right: min(20px, 1.0416666667vw);
}
.c-header .search-area form {
  position: relative;
}
.c-header .search-area input[type=text] {
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  height: 54px;
  background: #fff;
  padding: 0 15px;
  font-weight: 500;
  font-size: 14px;
  width: 260px;
}
.c-header .search-area .submit-btn {
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 24px;
  height: 24px;
  background: #00C8BC;
  border-radius: 50%;
  background-image: url("../img/common/ico-search.svg");
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
}
.c-header .menu-btn {
  text-align: center;
  height: -webkit-fill-available;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-height: 49px;
}
.c-header .menu-btn:nth-child(3) img {
  width: 26px;
}
.c-header .menu-btn:nth-child(4) img {
  width: 24px;
}
.c-header .menu-btn img {
  display: block;
  margin: auto;
}
.c-header .menu-btn .txt {
  color: #00C8BC;
  font-size: 10px;
  text-align: center;
  font-weight: bold;
  margin-top: auto;
}
.c-header .toggle-btn {
  width: 60px;
  height: 60px;
  background: #00C8BC;
  border-radius: 0 0 0 10px;
  display: block;
  position: relative;
}
.c-header .toggle-btn.is-active .line:first-child {
  -webkit-transform: rotate(-45deg) translate(-3px, 3px);
          transform: rotate(-45deg) translate(-3px, 3px);
}
.c-header .toggle-btn.is-active .line:last-child {
  -webkit-transform: rotate(45deg) translate(-4px, -4px);
          transform: rotate(45deg) translate(-4px, -4px);
}
.c-header .toggle-btn.is-active .line:nth-child(2) {
  opacity: 0;
}
.c-header .toggle-btn .inn {
  width: 20px;
  height: 12px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.c-header .toggle-btn .line {
  width: 100%;
  height: 2px;
  background: #fff;
  display: block;
  position: absolute;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-header .toggle-btn .line:nth-child(2) {
  top: 0;
  bottom: 0;
  margin: auto;
}
.c-header .toggle-btn .line:nth-child(3) {
  bottom: 0;
}
.c-header .menu-area {
  position: fixed;
  top: 60px;
  right: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  background: #fff;
  z-index: 30;
  width: 100%;
  height: 100%;
  border-top: 1px solid #d9d9d9;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  padding-bottom: 100px;
}
.c-header .menu-area.is-active {
  right: 0;
  pointer-events: all;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}
.c-header .menu-area .menu-inn {
  overflow-y: auto;
  min-height: calc(var(--vh, 1vh) * 100 - 75px);
  height: 100%;
}
.c-header .menu-list {
  font-weight: bold;
  font-size: 14px;
}
.c-header .menu-list > li {
  position: relative;
}
.c-header .menu-list > li:first-child > div {
  border-top: none;
}
.c-header .menu-list > li > div, .c-header .menu-list > li a {
  padding: 20px 30px 20px 20px;
  position: relative;
  display: block;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-header .menu-list > li > div {
  cursor: pointer;
}
.c-header .menu-list > li > div::after {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.c-header .menu-list > li .item {
  border-bottom: 1px solid #d9d9d9;
}
.c-header .menu-list > li .item.is-active::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.c-header .menu-list > li .item::after {
  content: "";
  background: url("../img/common/ico-arrow.svg") no-repeat center/cover;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 5px;
  height: 8px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-header .menu-list > li > a::after {
  display: none;
}
.c-header .menu-list .child-menu-list-wrap {
  padding: 0;
}
.c-header .menu-list .child-menu-list {
  background: #F2F2F7;
  display: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-header .menu-list .child-menu-list a {
  padding: 16px 30px 16px 20px;
  position: relative;
  display: block;
  font-weight: normal;
  border-bottom: 1px solid #d9d9d9;
}
.c-header .menu-list .child-menu-list a::after {
  content: "";
  background: url("../img/common/ico-arrow.svg") no-repeat center/cover;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 5px;
  height: 8px;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.c-header .sns-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  margin-top: 30px;
}
.c-header .sns-list > a {
  display: block;
  background: #fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  position: relative;
  border: 1px solid #D9D9D9;
}
.c-header .sns-list > a img {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}

.c-footer {
  background: #f3f3f3;
  position: relative;
}
.c-footer .inner-block {
  padding: 100px 15px 0;
}
.c-footer .c-cta-area {
  position: fixed;
  width: 100%;
  background: #f3f3f3;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 10px;
  gap: 5px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-transition-property: background;
  transition-property: background;
  z-index: 10;
}
.c-footer .c-cta-area .cta-btn {
  border-radius: 5px;
  padding: 8px 0px;
  text-align: center;
  position: relative;
}
.c-footer .c-cta-area .cta-btn::before {
  content: "";
  height: 25px;
  margin: auto;
  display: block;
  background: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-footer .c-cta-area .cta-btn.line {
  background: #00C8BC;
  border: 1px solid #00C8BC;
}
.c-footer .c-cta-area .cta-btn.line::before {
  -webkit-mask: url("../img/common/ico-line-w.svg");
          mask: url("../img/common/ico-line-w.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: cover;
          mask-size: cover;
  width: 26px;
}
.c-footer .c-cta-area .cta-btn.tel {
  background: #00C8BC;
  border: 1px solid #00C8BC;
}
.c-footer .c-cta-area .cta-btn.tel::before {
  -webkit-mask: url("../img/common/ico-tel.svg");
          mask: url("../img/common/ico-tel.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: cover;
          mask-size: cover;
  width: 19px;
}
.c-footer .c-cta-area .cta-btn.mail {
  background: #00C8BC;
  border: 1px solid #00C8BC;
}
.c-footer .c-cta-area .cta-btn.mail::before {
  -webkit-mask: url("../img/common/ico-mail.svg");
          mask: url("../img/common/ico-mail.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: cover;
          mask-size: cover;
  width: 25px;
}
.c-footer .c-cta-area .cta-btn .txt {
  color: #fff;
  line-height: 1.4;
  font-size: 10px;
  font-weight: bold;
  text-align: center;
  margin: auto;
  display: block;
  margin-top: 6px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-footer .c-fixed-btn {
  position: fixed;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  background: #00C8BC;
  color: #fff;
  text-align: center;
  width: calc(100% - 60px);
  padding: 16.5px 0;
  z-index: 10;
  font-weight: bold;
  border-radius: 10px 10px 0 0;
  border: 1px solid #00C8BC;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-transition-property: background;
  transition-property: background;
}
.c-footer .c-fixed-btn::after {
  content: "";
  -webkit-mask: url("../img/common/ico-arrow.svg");
          mask: url("../img/common/ico-arrow.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: cover;
          mask-size: cover;
  position: absolute;
  background: #fff;
  width: 6px;
  height: 9px;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-footer .c-fixed-btn .txt {
  font-size: 14px;
}
.c-footer .footer-contact {
  display: none;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 10;
  height: 80vh;
}
.c-footer .footer-contact .footer-inn {
  overflow-y: auto;
  max-height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.c-footer .footer-contact .c-btn01 {
  margin-top: 24px;
}
.c-footer #pagetop {
  position: absolute;
  z-index: 10;
}
.c-footer #pagetop a {
  background: #333;
  display: block;
  width: 50px;
  height: 50px;
  border: 1px solid #333;
  margin: auto;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
}
.c-footer #pagetop a::after {
  content: "";
  -webkit-mask: url("../img/common/ico-arrow.svg");
          mask: url("../img/common/ico-arrow.svg");
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: #fff;
  width: 9px;
  height: 10px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-footer .sns-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
}
.c-footer .sns-list > a {
  display: block;
  background: #fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  position: relative;
  border: 1px solid #D9D9D9;
}
.c-footer .sns-list > a img {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.c-footer .logo {
  display: block;
  text-align: center;
  margin: 26px auto 0;
}
.c-footer .txt {
  text-align: center;
  line-height: 1.6;
  font-weight: 500;
  font-size: 10px;
  margin: 20px 0 26px;
}
.c-footer .tel-area {
  margin: auto;
  text-align: center;
}
.c-footer .tel {
  font-size: 20px;
  font-weight: bold;
}
.c-footer .num {
  position: relative;
  font-weight: bold;
  font-size: 20px;
  padding-left: 6px;
  margin-left: 9px;
}
.c-footer .num::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 1px;
  height: 18px;
  background: #999999;
}
.c-footer .open-time {
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  margin-top: 5px;
}
.c-footer .open-time .tag {
  display: inline-block;
  color: #00C8BC;
  border: 1px solid #00C8BC;
  padding: 1px 8px;
  font-weight: 500;
  text-align: center;
  border-radius: 20px;
  font-size: 12px;
  margin-right: 4px;
  line-height: 1.33;
}
.c-footer .mail-txt {
  margin-top: 25px;
  margin-bottom: 10px;
  text-align: center;
  font-weight: bold;
  font-size: 12px;
}
.c-footer .c-btn01 .txt {
  margin: 0;
}
.c-footer .c-btn01 + .c-btn01 {
  margin-top: 20px;
}
.c-footer .copyright {
  color: #fff;
  background: #333;
  text-align: center;
  padding: 10px 0;
  margin: 30px 0 0;
  font-weight: 500;
  font-size: 12px;
}

.footer-contact {
  background: #f3f3f3;
  padding: 30px 20px;
}
.footer-contact .caution-txt {
  font-weight: 500;
  font-size: 12px;
  line-height: 1.37;
  color: #F00000;
  margin-bottom: 22px;
  padding-left: 17px;
  position: relative;
}
.footer-contact .caution-txt::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

.c-ttl01 {
  text-align: center;
  margin-bottom: 20px;
}
.c-ttl01.c-white .en, .c-ttl01.c-white .ja {
  color: #fff;
}
.c-ttl01 .en {
  color: #00C8BC;
  font-weight: bold;
  font-size: 15px;
  display: block;
}
.c-ttl01 .ja {
  font-size: 20px;
  font-weight: bold;
  display: block;
}
.c-ttl01.dot {
  position: relative;
  padding-bottom: 2px;
}
.c-ttl01.dot::before {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 2px;
  background: url("../img/common/ico-dot.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

.c-ttl02 {
  border-left: 2px solid #00C8BC;
  font-size: 13px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 16px;
  padding-left: 8px;
}

.c-ttl03::after,
.c-article-body h2::after {
  content: "";
  background: #d9d9d9;
  border-left: 72px solid #00C8BC;
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.c-ttl03,
.c-article-body h2 {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 16px;
  padding-bottom: 7px;
  position: relative;
}
.c-ttl03.fz-20,
.c-article-body h2.fz-20 {
  font-size: 20px;
}
.c-ttl03.aco-btn,
.c-article-body h2.aco-btn {
  cursor: pointer;
  padding-right: 25px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-ttl03.aco-btn::before,
.c-article-body h2.aco-btn::before {
  content: "";
  background: #00C8BC;
  -webkit-mask: url(../img/common/ico-arrow.svg);
          mask: url(../img/common/ico-arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  position: absolute;
  top: 5px;
  right: 8px;
  width: 8px;
  height: 9px;
}
.c-ttl03.aco-btn.is-open::before,
.c-article-body h2.aco-btn.is-open::before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.c-ttl03.aco-btn + .aco-body,
.c-article-body h2.aco-btn + .aco-body {
  display: none;
}

.c-ttl04 {
  color: #00C8BC;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 20px;
}
.c-ttl04::after {
  content: "";
  background: url(../img/common/ttl-line.svg) no-repeat center/contain;
  display: block;
  margin: 8px auto 0;
  width: 40px;
  height: 2px;
}
.c-ttl04.c-bl {
  color: #333333;
}

.en {
  font-family: "Poppins", sans-serif;
}

.rc {
  font-family: "Radio Canada Big", sans-serif;
}

.bg-l-gray {
  background: #F9F9F9;
}

.bg-contents03 {
  background: #F2F2F7;
}

main {
  padding-top: 147px;
}
.c-product-box .img-area {
  position: relative;
  border-radius: 5px;
  background: #fff;
  padding: 20px 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.c-product-box .img-area img {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-product-box .img-area .domestic {
  position: absolute;
  left: 9px;
  top: 9px;
  text-align: center;
  line-height: 1;
  font-size: 10px;
  font-weight: bold;
  border: 1px solid #333;
  color: #333;
  border-radius: 50px;
  background: #FFD0D0;
  width: 60px;
  padding: 4px 0;
  z-index: 1;
}
.c-product-box .img-area .txt {
  display: block;
  font-size: 13px;
}

.c-btn-arrow {
  display: block;
  width: 30px;
  height: 30px;
  background: #333;
  border-radius: 20px 0 5px 0px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 5;
}
.c-btn-arrow::after {
  content: "";
  -webkit-mask: url("../img/common/ico-arrow.svg");
          mask: url("../img/common/ico-arrow.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  width: 6px;
  height: 8px;
  background: #fff;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 2px;
  margin: auto;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.c-flow-list {
  position: relative;
}
.c-flow-list::before {
  content: "";
  background: #00C8BC;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 4px;
  display: block;
}
.c-flow-list .list-item {
  border-radius: 5px;
  background: #fff;
  -webkit-box-shadow: 0 2px 5px rgba(0, 183, 173, 0.15);
          box-shadow: 0 2px 5px rgba(0, 183, 173, 0.15);
  padding: 6px 10px 6px 10px;
  position: relative;
}
.c-flow-list .list-item + .list-item {
  margin-top: 14px;
}
.c-flow-list .list-item .top-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding-right: 20px;
}
.c-flow-list .list-item .icon-area {
  background: #E2FAF9;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  position: relative;
  margin: 4px 0;
}
.c-flow-list .list-item .icon-area.white {
  background: #fff;
}
.c-flow-list .list-item .icon-area img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.c-flow-list .list-item .txt-area {
  font-size: 12px;
  font-weight: bold;
  margin-left: 10px;
}
.c-flow-list .list-item .txt-area .txt {
  margin-bottom: 0;
}
.c-flow-list .list-item .txt-area .txt.center {
  text-align: center;
}
.c-flow-list .list-item .txt-area .small {
  font-weight: 400;
  margin-top: 5px;
  font-size: 10px;
}
.c-flow-list .list-item .step-area {
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  margin-left: auto;
  color: #00C8BC;
  font-weight: bold;
  line-height: 1.4;
  font-size: 10px;
  position: absolute;
  right: 0px;
  padding-left: 6px;
  height: 100%;
  text-align: center;
}
.c-flow-list .list-item .step-area::before {
  content: "";
  width: 1px;
  height: 90%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  background: #00C8BC;
}
.c-flow-list .list-item.green {
  background-color: #E2FAF9;
}
.c-flow-list .list-item .content-area {
  margin-top: 10px;
  padding-bottom: 14px;
}
.c-flow-list .list-item .content-area .content-txt {
  font-size: 12px;
  line-height: 1.8;
  font-weight: 500;
  margin-top: 16px;
  text-align: center;
}
.c-flow-list .list-item .content-area .attention-wrap {
  text-align: center;
  margin: auto;
}
.c-flow-list .list-item .content-area .attention {
  position: relative;
  display: inline-block;
  position: relative;
  text-align: center;
  font-size: 10px;
  margin-top: 10px;
  padding-left: 20px;
}
.c-flow-list .list-item .content-area .attention::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.c-flow-list .list-item .img-box {
  border-radius: 10px;
  background: #F2F2F7;
  padding: 15px 0;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
}
.c-flow-list .list-item .img-box img {
  display: block;
  margin: auto;
}

.c-anchor-section {
  padding-block: 30px;
  background-color: #f9f9f9;
}

.c-anchor-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
}
.c-anchor-list li a {
  display: block;
  width: 100%;
  height: 100%;
  font-weight: bold;
  color: #00C8BC;
  background-color: #fff;
  padding: 13px 40px 14px 15px;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  font-size: 13px;
  position: relative;
}
.c-anchor-list li a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 22px;
  z-index: 1;
  background-color: #fff;
  -webkit-mask: url("../img/common/ico-arrow.svg");
          mask: url("../img/common/ico-arrow.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: cover;
          mask-size: cover;
  width: 6px;
  height: 8px;
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}
.c-anchor-list li a::after {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0px;
  bottom: 0;
  margin: auto;
  right: 15px;
  background-color: #00C8BC;
  border-radius: 50%;
}

.c-dots-list li {
  padding-left: 9px;
  position: relative;
  font-size: 12px;
}
.c-dots-list li + li {
  margin-top: 4px;
}
.c-dots-list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 4px;
  height: 4px;
  background-color: #00C8BC;
  border-radius: 50%;
}

.acc-btn {
  display: block;
  width: 100%;
  padding-bottom: 10px;
  padding-right: 22px;
  border-bottom: 1px solid #999999;
  position: relative;
}
.acc-btn .txt {
  display: inline-block;
  width: 100%;
  text-align: start;
  font-size: 18px;
  font-weight: bold;
}
.acc-btn::before {
  content: "";
  position: absolute;
  top: 10px;
  right: 7px;
  z-index: 1;
  background-color: #fff;
  -webkit-mask: url("../img/common/ico-arrow.svg");
          mask: url("../img/common/ico-arrow.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: cover;
          mask-size: cover;
  width: 6px;
  height: 8px;
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}
.acc-btn::after {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 3px;
  right: 0px;
  background-color: #00C8BC;
  border-radius: 50%;
}
.acc-btn.is-open::before {
  -webkit-transform: rotate(90deg) translateX(-1px);
          transform: rotate(90deg) translateX(-1px);
}

.acc-cont {
  padding-top: 20px;
}
.acc-cont + .acc-btn {
  margin-top: 52px;
}

.c-price-section {
  background: #E2FAF9;
  padding-block: 30px;
}
.c-price-section .c-ttl01 {
  margin-bottom: 30px;
}
.c-price-section .price-list > li {
  display: grid;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  grid-template-columns: auto 1fr;
  gap: 9px;
  padding-block: 10px;
  border-bottom: 1px solid #999999;
}
.c-price-section .price-list > li .img {
  width: clamp(40px, 16vw, 80px);
  aspect-ratio: 1;
}
.c-price-section .price-list > li .img img {
  border-radius: 5px;
}
.c-price-section .price-list > li .txt-wrap {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.c-price-section .price-list > li .txt-wrap .txt {
  font-weight: 500;
}
.c-price-section .price-list > li .txt-wrap .price {
  font-weight: bold;
  white-space: nowrap;
}

.c-accessory-section {
  padding-block: 30px;
}
.c-accessory-section.pb-0 {
  padding-bottom: 0;
  -webkit-padding-after: 0px;
          padding-block-end: 0px;
}
.c-accessory-section .acc-txt-wrap .lead {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  font-weight: bold;
  position: relative;
  padding-left: 15px;
}
.c-accessory-section .acc-txt-wrap .lead::before {
  content: "";
  position: absolute;
  background: #333333;
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  top: 0;
  left: 5px;
  bottom: 0;
  margin: auto;
}
.c-accessory-section .acc-txt-wrap .lead .price {
  font-size: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 1px;
}
.c-accessory-section .acc-txt-wrap .note {
  font-size: 11px;
  font-weight: 500;
  margin-top: 4px;
}
.c-accessory-section .acc-txt-wrap .size-box {
  margin-top: 10px;
}
.c-accessory-section .acc-txt-wrap .size-box .txt {
  font-weight: bold;
}
.c-accessory-section .acc-txt-wrap .size-box .size-list {
  margin-top: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  max-width: 600px;
}
.c-accessory-section .acc-txt-wrap .size-box .size-list li {
  background: #00C8BC;
  font-weight: 500;
  font-size: 11px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-block: 4px;
  color: #fff;
  width: calc((100% - 15px) / 4);
  border-radius: 2px;
}
.c-accessory-section .acc-list {
  margin-top: 17px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(130px, 37.3333333333vw, 300px), 1fr));
  gap: 20px 15px;
}
.c-accessory-section .acc-list > li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.c-accessory-section .acc-list > li .img {
  width: 100%;
  aspect-ratio: 1;
}
.c-accessory-section .acc-list > li .img > img {
  border-radius: 10px;
}
.c-accessory-section .acc-list > li .name {
  margin-top: 8px;
  font-weight: 500;
}
.c-accessory-section .acc-list > li .tag-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 6px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 5px;
}
.c-accessory-section .acc-list > li .tag-list dt {
  border: 1px solid #00C8BC;
  border-radius: 50px;
  color: #00C8BC;
  font-size: 12px;
  display: inline-block;
  padding: 4px 8px;
  line-height: 1;
}
.c-accessory-section .acc-list > li .tag-list dd {
  font-size: 14px;
  color: #999999;
}
.c-accessory-section .inn {
  margin-top: 27px;
  max-width: 500px;
}
.c-accessory-section .inn .acc-cont .name {
  font-weight: bold;
}
.c-accessory-section .inn .acc-cont .img {
  margin-top: 10px;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  overflow: hidden;
}
.c-accessory-section .c-pants + .c-socks {
  margin-top: 50px;
}

.c-product-splide {
  overflow: hidden;
}
.c-product-splide .splide__track {
  border-radius: 20px;
}
.c-product-splide .splide__slide img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-product-splide .splide__controls {
  margin: 20px auto 0;
  position: relative;
  padding-block: 2px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-inline: 15px;
}
.c-product-splide:not(.is-overflow) .splide__arrows {
  display: none;
}
.c-product-splide .splide__arrows .splide__arrow {
  position: absolute;
  background: url("../img/common/ico-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: block;
  width: 6px;
  height: 8px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.c-product-splide .splide__arrows .splide__arrow.splide__arrow--prev {
  left: 0;
}
.c-product-splide .splide__arrows .splide__arrow.splide__arrow--next {
  right: 0;
  rotate: 180deg;
}
.c-product-splide .splide__pagination {
  gap: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-product-splide .splide__pagination li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-product-splide .splide__pagination li .splide__pagination__page {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #d9d9d9;
}
.c-product-splide .splide__pagination li .splide__pagination__page.is-active {
  background: #00C8BC;
}

.c-size-wrap {
  margin-top: 30px;
}
.c-size-wrap .ttl {
  font-weight: bold;
  margin-bottom: 16px;
  text-align: center;
}
.c-size-wrap .info {
  margin-top: 16px;
}
.c-size-wrap .c-size-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: inherit;
  border-spacing: 0;
  border-left: 1px solid #d9d9d9;
  border-top: 1px solid #d9d9d9;
  border-radius: 10px;
  max-width: 600px;
  margin: 16px auto 0;
}
.c-size-wrap .c-size-table tr:first-child th:first-child {
  border-radius: 10px 0 0 0;
}
.c-size-wrap .c-size-table tr:first-child th:last-child {
  border-radius: 0 10px 0 0;
}
.c-size-wrap .c-size-table tr:last-child td:first-child {
  border-radius: 0 0 0 10px;
}
.c-size-wrap .c-size-table tr:last-child td:last-child {
  border-radius: 0 0 10px 0;
}
.c-size-wrap .c-size-table th,
.c-size-wrap .c-size-table td {
  font-size: 11px;
  text-align: center;
  padding: 11px 3px;
  border-bottom: 1px solid #d9d9d9;
  border-right: 1px solid #d9d9d9;
}
.c-size-wrap .c-size-table th {
  background: #00C8BC;
  color: #fff;
  line-height: 1.2em;
}
.c-size-wrap .c-size-table td {
  background: #fff;
}
.c-size-wrap .c-size-table.col-5 th:first-child,
.c-size-wrap .c-size-table.col-5 td:first-child {
  width: 29.5%;
  max-width: 150px;
}
.c-size-wrap .acc-btn .txt {
  font-size: 14px;
}
.c-size-wrap .acc-cont .c-size-table {
  margin-top: 0;
}

.c-product-btn-wrap {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto);
  row-gap: 20px;
  -webkit-column-gap: clamp(5px, 2.6666666667vw, 10px);
     -moz-column-gap: clamp(5px, 2.6666666667vw, 10px);
          column-gap: clamp(5px, 2.6666666667vw, 10px);
  max-width: 800px;
  margin-inline: auto;
}
.c-product-btn-wrap .pri-btn {
  border: 1px solid #00C8BC;
  background: #00C8BC;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 13px;
  border-radius: 4px;
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 183, 173, 0.15);
          box-shadow: 0 2px 5px 0 rgba(0, 183, 173, 0.15);
}
.c-product-btn-wrap .pri-btn .txt {
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-product-btn-wrap .pri-btn:first-child {
  grid-area: 1/1/2/2;
}
.c-product-btn-wrap .pri-btn:last-child {
  grid-area: 1/2/2/3;
}
.c-product-btn-wrap .c-btn01 {
  grid-area: 2/1/3/3;
}

.c-voice-section {
  padding-top: 40px;
  padding-bottom: 40px;
}
.c-voice-section .voice-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(auto, 1fr));
  gap: 15px;
}
.c-voice-section .voice-list .img-area {
  position: relative;
  padding-top: 75%;
  overflow: hidden;
  border-radius: 5px;
}
.c-voice-section .voice-list .img-area img {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-voice-section .voice-list .voice-ttl {
  font-size: 11px;
  margin-top: 8px;
}
.c-voice-section .c-btn01 {
  margin-top: 18px;
}

.sns-modal {
  position: fixed;
  max-width: 450px;
  width: calc(100% - 100px);
  height: 160px;
  background: #fff;
  padding: 20px;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 20;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.sns-modal.is-open {
  opacity: 1;
  pointer-events: all;
}
.sns-modal .sns-modal-close {
  position: absolute;
  width: 40px;
  height: auto;
  aspect-ratio: 1;
  background: #fff;
  top: -40px;
  right: 0;
}
.sns-modal .sns-modal-close::before, .sns-modal .sns-modal-close::after {
  content: "";
  position: absolute;
  background: #333333;
  display: block;
  width: 30px;
  height: 2px;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.sns-modal .sns-modal-close::before {
  rotate: 45deg;
}
.sns-modal .sns-modal-close::after {
  rotate: -45deg;
}
.sns-modal .sns-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.sns-modal .sns-list > li {
  width: calc((100% - 40px) / 3);
}
.sns-modal .sns-list > li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  width: 100%;
  height: 100%;
}
.sns-modal .sns-list > li a > .img {
  -webkit-transition: ease 0.1s;
  transition: ease 0.1s;
  border-radius: 50%;
  aspect-ratio: 1;
  border: 1px solid #d9d9d9;
  padding: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 100px;
}
.sns-modal .sns-list > li a > .img > img {
  width: 100%;
}
.sns-modal .sns-list > li a > .img > img.x {
  max-width: 45px;
}
.sns-modal .sns-list > li a > .img > img.line {
  max-width: 57px;
}
.sns-modal .sns-list > li a > .img > img.facebook {
  max-width: 65px;
}
.sns-modal .sns-list > li a .txt {
  display: block;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}

.sns-modal-bg {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  background: rgba(51, 51, 51, 0.3);
  z-index: 15;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.sns-modal-bg.is-open {
  opacity: 1;
  pointer-events: all;
}

.not-found {
  padding-block: 50px 150px;
}
.not-found .center {
  font-size: 20px;
  text-align: center;
  margin-bottom: 30px;
}

.c-btn01 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  border-radius: 60px;
  padding: 19px 20px 19px 20px;
  position: relative;
  cursor: pointer;
  width: 100%;
}
.c-btn01 .txt {
  font-weight: bold;
  font-size: 14px;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: center;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-btn01 [class*=ico-] {
  background: #00C8BC;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: block;
  margin-left: auto;
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-btn01 [class*=ico-]::after {
  content: "";
  background: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-btn01 .ico-arrow::after {
  -webkit-mask: url("../img/common/ico-arrow.svg");
          mask: url("../img/common/ico-arrow.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: cover;
          mask-size: cover;
  width: 4px;
  height: 6px;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.c-btn01 .ico-anchor {
  background-color: #fff;
}
.c-btn01 .ico-anchor::after {
  -webkit-mask: url("../img/common/ico-arrow.svg");
          mask: url("../img/common/ico-arrow.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: cover;
          mask-size: cover;
  width: 4px;
  height: 6px;
  background-color: #00C8BC;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.c-btn01 .ico-share {
  left: 15px;
  right: auto;
}
.c-btn01 .ico-share::after {
  -webkit-mask: url("../img/common/ico-share.svg");
          mask: url("../img/common/ico-share.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: cover;
          mask-size: cover;
  width: 18px;
  height: 18px;
}
.c-btn01 .ico-copy {
  left: 15px;
  right: auto;
}
.c-btn01 .ico-copy::after {
  -webkit-mask: url("../img/common/ico-copy.svg");
          mask: url("../img/common/ico-copy.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: cover;
          mask-size: cover;
  width: 18px;
  height: 18px;
}
.c-btn01 .ico-search {
  background: #fff;
}
.c-btn01 .ico-search::after {
  -webkit-mask: url("../img/common/ico-search.svg");
          mask: url("../img/common/ico-search.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: cover;
          mask-size: cover;
  background: #333333;
  width: 16px;
  height: 16px;
}
.c-btn01.c-primary {
  background: #00C8BC;
  border: 1px solid #00C8BC;
}
.c-btn01.c-primary .txt {
  color: #fff;
}
.c-btn01.c-primary .ico-arrow {
  background: #fff;
}
.c-btn01.c-primary .ico-arrow::after {
  background: #00C8BC;
}
.c-btn01.c-back {
  background: #999999;
  padding-block: 14px;
  border: 1px solid #999999;
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 183, 173, 0.15);
          box-shadow: 0 2px 5px 0 rgba(0, 183, 173, 0.15);
}
.c-btn01.c-back .txt {
  color: #fff;
}
.c-btn01.c-back .ico-arrow {
  background: #fff;
  right: auto;
  left: 20px;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.c-btn01.c-back .ico-arrow::after {
  background: #999999;
}
.c-btn01.c-back.primary {
  background: #00C8BC;
  border-color: #00C8BC;
}
.c-btn01.c-back.primary .ico-arrow::after {
  background: #00C8BC;
}
.c-btn01.c-black {
  background: #333333;
  border: 1px solid #333333;
}
.c-btn01.c-black .txt {
  color: #fff;
}
.c-btn01.c-black .ico-arrow {
  background: #fff;
}
.c-btn01.c-black .ico-arrow::after {
  background: #000;
}
.c-btn01.c-white {
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  padding-inline: 15px;
}
.c-btn01.c-white .txt {
  color: #00C8BC;
  text-align: start;
}
.c-btn01.c-white .ico-arrow {
  right: 15px;
}

.c-share-link {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 4px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
}
.c-share-link::after {
  content: "";
  background: #00C8BC;
  -webkit-mask: url(../img/common/ico-upload.svg);
          mask: url(../img/common/ico-upload.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  display: block;
  width: 25px;
  height: 25px;
}

.c-share-btn-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  max-width: 500px;
  width: 100%;
  gap: 8px;
  margin-bottom: 30px;
}
.c-share-btn-wrap .c-btn01 {
  width: 100%;
  padding: 7px 20px 10px 36px;
  margin-top: 10px;
}
.c-share-btn-wrap .c-btn01 .txt {
  font-size: 12px;
}

.c-breadcrumb {
  color: #999999;
  font-size: 10px;
  padding: 13px 0 2px;
}
.c-breadcrumb .list {
  display: inline;
}
.c-breadcrumb .list li {
  display: inline;
}
.c-breadcrumb .list li:not(:last-child)::after {
  content: "";
  background-color: currentColor;
  -webkit-mask: url(../img/common/ico-arrow.svg);
          mask: url(../img/common/ico-arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  display: inline-block;
  margin: -1px 3px 0 5px;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
  vertical-align: middle;
  width: 4px;
  height: 5px;
}

.c-kv {
  background: #f3f3f3;
  padding-top: 60px;
}
.c-kv .ttl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 9px 10px;
  padding: 20px 0 45px;
}
.c-kv .ttl .ja {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.3;
}
.c-kv .ttl .en {
  color: #00C8BC;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.3;
  padding-left: 15px;
  position: relative;
}
.c-kv .ttl .en::before {
  content: "";
  background: currentColor;
  display: block;
  width: 1em;
  height: 1px;
  position: absolute;
  top: 0.6em;
  left: 0;
}

.c-page-menu {
  background: #F9F9F9;
}
.c-page-menu .inner-block {
  padding-block: 30px;
}

.c-menu-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
}
.c-menu-list a {
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  color: #00C8BC;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.3;
  display: block;
  padding: 15px 50px 15px 15px;
  position: relative;
}
.c-menu-list a::before {
  content: "";
  background: #00C8BC;
  border-radius: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
  width: 20px;
  height: 20px;
}
.c-menu-list a::after {
  content: "";
  background: #fff;
  -webkit-mask: url(../img/common/ico-arrow.svg);
          mask: url(../img/common/ico-arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  position: absolute;
  top: 2px;
  bottom: 0;
  right: 21px;
  margin: auto;
  width: 8px;
  height: 9px;
}

.c-contact .l-green-box {
  background: #E2FAF9;
  border-radius: 5px;
  padding: 10px 15px;
}
.c-contact .l-green-box + .ttl {
  margin-top: 20px;
}
.c-contact .l-green-box .q-wrap:last-child .input-area {
  padding-bottom: 5px;
}
.c-contact .q-wrap .label-area {
  width: 100%;
}
.c-contact .q-wrap .input-area,
.c-contact .q-wrap .input-area-wrap {
  width: 100%;
}
.c-contact .ttl {
  border-left: 2px solid #00C8BC;
  font-weight: bold;
  padding-left: 8px;
  font-size: 13px;
  line-height: 1;
  margin-bottom: 10px;
}
.c-contact .note-txt {
  display: block;
  font-size: 11px;
  line-height: 1.4;
  margin-top: 10px;
  text-indent: -1em;
  padding-left: 1em;
}
.c-contact .error-txt {
  color: #F00000;
}
.c-contact .label-area {
  position: relative;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  position: relative;
  padding: 1px 50px 1px 0;
}
.c-contact .label-area .note-txt {
  margin-right: -50px;
}
.c-contact .input-area {
  padding: 10px 0;
  font-size: 13px;
  line-height: 1.8;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-contact .input-area + .input-area {
  padding-top: 0;
}
.c-contact .input-area.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.c-contact .input-area.flex .wpcf7-form-control-wrap {
  width: calc(100% - 85px);
}
.c-contact .input-area.flex .contact-label {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 85px;
}
.c-contact .input-area.flex .contact-label ~ input,
.c-contact .input-area.flex .contact-label ~ select,
.c-contact .input-area.flex .contact-label ~ .select-wrap {
  width: calc(100% - 85px);
}
.c-contact .input-area.flex.size {
  gap: 10px;
}
.c-contact .input-area.con-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
.c-contact .input-area.con-row span {
  display: block;
  width: 100%;
  text-align: start;
}
.c-contact .contact-label {
  font-weight: bold;
  font-size: 13px;
  line-height: 1.4;
}
.c-contact .require {
  border: 1px solid #FF516E;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.4;
  display: inline-block;
  color: #FF516E;
  text-align: center;
  border-radius: 10px;
  padding: 1px 4px;
  position: absolute;
  top: 0;
  right: 0;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.c-contact input[type=text],
.c-contact input[type=tel],
.c-contact input[type=email],
.c-contact input[type=date],
.c-contact textarea,
.c-contact select {
  padding: 16px 18px;
  width: 100%;
  color: #333;
  font-size: 16px !important;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  background: #fff;
}
.c-contact input[type=text].errored,
.c-contact input[type=tel].errored,
.c-contact input[type=email].errored,
.c-contact input[type=date].errored,
.c-contact textarea.errored,
.c-contact select.errored {
  border: 1px solid #F00000;
}
.c-contact input[type=date] {
  background: url(../img/common/ico-calendar.svg) no-repeat center right 16px/20px auto #fff;
  position: relative;
  min-height: 52px;
}
.c-contact input[type=date]::-webkit-calendar-picker-indicator {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c-contact input[type=date] {
  /* Safariでテキストを左寄せ */
}
.c-contact input[type=date]::-webkit-date-and-time-value {
  text-align: left;
}
.c-contact input[type=date] {
  /* Firefox用では上記スタイルが効かないのでデフォルト表示に戻す */
}
@-moz-document url-prefix() {
  .c-contact input[type=date] input[type=date] {
    background: #fff;
  }
}
.c-contact .radio-group, .c-contact .checkbox-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px 21px;
  height: 100%;
}
.c-contact .radio-group .wpcf7-radio, .c-contact .radio-group .wpcf7-checkbox, .c-contact .checkbox-group .wpcf7-radio, .c-contact .checkbox-group .wpcf7-checkbox {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px 30px;
}
.c-contact .radio-group label, .c-contact .checkbox-group label {
  position: relative;
  padding-left: 30px;
  line-height: 1;
}
.c-contact .radio-group label::before, .c-contact .radio-group label::after, .c-contact .checkbox-group label::before, .c-contact .checkbox-group label::after {
  content: "";
  position: absolute;
}
.c-contact .radio-group label::before, .c-contact .checkbox-group label::before {
  top: 0px;
  left: 0;
  width: 24px;
  height: 24px;
  border: 1px solid #ccc;
  border-radius: 15px;
  background: #ccc;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-contact .radio-group label::after, .c-contact .checkbox-group label::after {
  top: 4px;
  left: 4px;
  width: 16px;
  height: 16px;
  border-radius: 15px;
  background: rgb(179, 29, 35);
  opacity: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-contact .radio-group label:has(input:checked)::after, .c-contact .checkbox-group label:has(input:checked)::after {
  opacity: 1;
}
.c-contact .radio-group label:has(input:checked)::before, .c-contact .checkbox-group label:has(input:checked)::before {
  background: #fff;
}
.c-contact .radio-group + .error-txt, .c-contact .checkbox-group + .error-txt {
  margin-top: 8px;
}
.c-contact .checkbox-group label::before {
  border-radius: 0;
}
.c-contact .checkbox-group label::after {
  top: 3px;
  width: 8px;
  height: 14px;
  background: transparent;
  border-right: 2px solid rgb(179, 29, 35);
  border-bottom: 2px solid rgb(179, 29, 35);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  left: 8px;
  border-radius: 0;
}
.c-contact .select-wrap {
  position: relative;
}
.c-contact .select-wrap select {
  cursor: pointer;
}
.c-contact .select-wrap select:has(option[value=""]:checked) {
  color: #ccc;
}
.c-contact .select-wrap select option {
  color: #333;
}
.c-contact .select-wrap::before {
  z-index: 1;
  content: "";
  background: url("../img/common/ico-arrow.svg") no-repeat center/cover;
  display: inline-block;
  width: 5px;
  height: 8px;
  position: absolute;
  top: -3px;
  right: 16px;
  bottom: 0;
  margin: auto;
  -webkit-transform: rotate(-90deg) translate3d(0, 0, 0);
          transform: rotate(-90deg) translate3d(0, 0, 0);
  pointer-events: none;
}
.c-contact .select-wrap:has([name^=size]) {
  min-width: 120px;
}
.c-contact input[name^=size] {
  width: 147px;
}
.c-contact input[name^=quantity] {
  width: 121px;
  margin-right: 5px;
}
.c-contact .contact-more-btn {
  background: #00C8BC;
  border-radius: 50%;
  position: relative;
  width: 30px;
  height: 30px;
  margin: auto;
  display: block;
}
.c-contact .contact-more-btn .inn {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.c-contact .contact-more-btn .inn::before {
  content: "";
  width: 16px;
  height: 2px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: #fff;
}
.c-contact .contact-more-btn .inn::after {
  content: "";
  width: 2px;
  height: 16px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: #fff;
}
.c-contact .file-area {
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  padding: 10px;
}
.c-contact .file-area .box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.c-contact .file-area + .file-area {
  margin-top: 10px;
}
.c-contact .file-area input[type=file] {
  visibility: hidden;
  width: 0;
  height: 0;
}
.c-contact .file-area button {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: #d9d9d9;
  border-radius: 5px;
  font-size: 10px;
  width: 90px;
  height: 30px;
  display: block;
}
.c-contact .file-area label {
  display: block;
  width: calc(100% - 90px);
}
.c-contact .file-area .file-txt {
  font-size: 13px;
}
.c-contact .confirm-block .q-wrap .input-area span {
  font-size: 14px;
}

.c-product-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(130px, 37.3333333333vw, 300px), 1fr));
  gap: 20px 15px;
}
.c-product-list .c-product-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 500px;
  width: 100%;
  margin-inline: auto;
}
.c-product-list .c-product-box .img-area {
  width: 100%;
  aspect-ratio: 1;
  -webkit-box-shadow: 0 2px 4px rgba(0, 183, 173, 0.15);
          box-shadow: 0 2px 4px rgba(0, 183, 173, 0.15);
}
.c-product-list .c-product-box .img-area img {
  width: 100%;
  top: 0;
}
.c-product-list .c-product-box .product-name {
  margin-top: 8px;
  font-weight: 500;
}
.c-product-list .c-product-box .tag-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 6px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 5px;
}
.c-product-list .c-product-box .tag-list dt {
  border: 1px solid #00C8BC;
  border-radius: 50px;
  color: #00C8BC;
  font-size: 12px;
  display: inline-block;
  padding: 4px 8px;
  line-height: 1;
}
.c-product-list .c-product-box .tag-list dd {
  font-size: 14px;
  color: #999999;
}
.c-product-list .c-product-box .price-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: 5px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.c-product-list .c-product-box .price-area .price {
  font-size: 30px;
  font-weight: bold;
  font-family: "Poppins", sans-serif;
  line-height: 1.2;
}
.c-product-list .c-product-box .price-area .unit {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.c-product-list .c-product-box .price-area .tax {
  font-size: 11px;
  font-weight: 300;
  line-height: 1.2;
}
.c-product-list .c-product-box .price-area .yen {
  font-size: 11px;
  font-weight: bold;
  line-height: 1.2;
}

/* -----------------------------------------------
* Page エントリーポイント
-------------------------------------------------- */
/* -----------------------------------------------
* home Module
* homeページ用
-------------------------------------------------- */
.home .mv-section {
  overflow: hidden;
  padding-top: 30px;
  padding-bottom: 40px;
  background: #f3f3f3;
}
.home .mv-section .splide-outer {
  padding: 0 20px;
  overflow: hidden;
}
.home .mv-section .mv-splide {
  overflow: visible;
}
.home .mv-section .mv-splide .splide-wrapper {
  position: relative;
}
.home .mv-section .mv-splide .splide-wrapper img {
  display: block;
  margin: auto;
}
.home .mv-section .mv-splide .splide__track {
  overflow: visible;
}
.home .mv-section .mv-splide .splide__slide .slide-link {
  display: block;
}
.home .mv-section .mv-splide .splide-navi {
  display: inline-grid;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 0 10px;
  margin-top: 20px;
}
.home .mv-section .mv-splide .splide__arrows {
  position: static;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  display: contents;
}
.home .mv-section .mv-splide .splide__arrows .splide__arrow--prev {
  grid-column: 1;
  grid-row: 1;
}
.home .mv-section .mv-splide .splide__arrows .splide__arrow--prev svg {
  display: none;
}
.home .mv-section .mv-splide .splide__arrows .splide__arrow--prev::after {
  content: "";
  -webkit-mask: url("../img/common/ico-arrow.svg");
          mask: url("../img/common/ico-arrow.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: cover;
          mask-size: cover;
  background: #00C8BC;
  width: 6px;
  height: 8px;
  display: block;
}
.home .mv-section .mv-splide .splide__arrows .splide__arrow--next {
  grid-column: 3;
  grid-row: 1;
}
.home .mv-section .mv-splide .splide__arrows .splide__arrow--next svg {
  display: none;
}
.home .mv-section .mv-splide .splide__arrows .splide__arrow--next::after {
  content: "";
  -webkit-mask: url("../img/common/ico-arrow.svg");
          mask: url("../img/common/ico-arrow.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: cover;
          mask-size: cover;
  background: #00C8BC;
  width: 6px;
  height: 8px;
  display: block;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.home .mv-section .mv-splide .splide__pagination {
  gap: 10px;
  position: static;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0;
  grid-column: 2;
}
.home .mv-section .mv-splide .splide__pagination li {
  width: 5px;
  height: 5px;
  position: relative;
}
.home .mv-section .mv-splide .splide__pagination button {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #d9d9d9;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.home .mv-section .mv-splide .splide__pagination button.is-active {
  background: #00C8BC;
}
.home .pickup-section {
  background: #f3f3f3;
  padding-bottom: 40px;
}
.home .pickup-section .content {
  display: block;
}
.home .pickup-section .point-box {
  background: #00C8BC;
  border-radius: 5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
  color: #fff;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
.home .pickup-section .point-box + .point-box {
  margin-top: 10px;
}
.home .pickup-section .content-inn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  width: 100%;
}
.home .pickup-section .icon-area {
  width: 50px;
  height: 50px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  background: #fff;
  border-radius: 50%;
  position: relative;
}
.home .pickup-section .icon-area .inn {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  background: #E2FAF9;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.home .pickup-section .icon-area .inn img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.home .pickup-section .txt-area {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-top: 2px;
  width: 100%;
}
.home .pickup-section .txt-area .small {
  font-size: 10px;
  line-height: 1.4;
  font-weight: bold;
}
.home .pickup-section .txt-area .main {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.4;
  margin-top: 3px;
}
.home .pickup-section .txt-area .main + .small {
  margin-top: 3px;
  border-top: 1px dashed #fff;
  padding-top: 5px;
}
.home .pickup-section .point {
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  font-size: 10px;
  line-height: 1.4;
  font-weight: bold;
  position: relative;
  padding-left: 6px;
  text-align: center;
}
.home .pickup-section .point::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: #fff;
  width: 1px;
  height: 100%;
}
.home .item-section {
  border-radius: 30px;
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
}
.home .item-section::before {
  content: "";
  background: url("../img/home/sec-bg.jpg.webp") no-repeat center/cover;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 30px;
}
.home .item-section::after {
  content: "";
}
.home .item-section .inner-block {
  max-width: 1125px;
}
.home .item-section .pickup-item {
  border-radius: 5px;
  background: #fff;
  position: relative;
  padding: 10px 10px 8px;
  margin: auto;
  display: block;
}
.home .item-section .pickup-item + .pickup-item {
  margin-top: 20px;
}
.home .item-section .pickup-item .domestic {
  position: absolute;
  left: 9px;
  top: 9px;
  text-align: center;
  line-height: 1;
  font-size: 10px;
  font-weight: bold;
  border: 1px solid #333;
  color: #333;
  border-radius: 50px;
  background: #FFD0D0;
  width: 60px;
  padding: 4px 0;
  z-index: 1;
}
.home .item-section .pickup-item .img-area {
  position: relative;
  text-align: center;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.home .item-section .pickup-item .img-area img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home .item-section .pickup-item .pickup {
  background: #FF516E;
  border-radius: 50px;
  color: #fff;
  line-height: 1;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-size: 10px;
  position: absolute;
  left: 9px;
  top: 9px;
  width: 88px;
  text-align: center;
  padding: 5px 0;
}
.home .item-section .pickup-item .product-name {
  font-size: 14px;
  font-weight: 500;
}
.home .item-section .pickup-item .info-area {
  padding: 10px;
}
.home .item-section .pickup-item .price-area {
  margin-top: 5px;
}
.home .item-section .pickup-item .price-area .price {
  font-size: 40px;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  display: inline-block;
  letter-spacing: -0.04em;
}
.home .item-section .pickup-item .price-area .price .comma {
  font-size: 30px;
}
.home .item-section .pickup-item .price-area .yen {
  margin-top: -5px;
}
.home .item-section .pickup-item .price-area .tax, .home .item-section .pickup-item .price-area .yen {
  font-size: 14px;
  line-height: 1;
}
.home .item-section .price-area {
  display: inline-grid;
  gap: 0 5px;
  grid-template-areas: "price tax" "price yen";
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.home .item-section .price {
  grid-area: price;
  line-height: 1;
  font-weight: bold;
  font-family: "Poppins", sans-serif;
}
.home .item-section .tax {
  grid-area: tax;
}
.home .item-section .yen {
  grid-area: yen;
}
.home .item-section .product-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px 15px;
  margin-top: 20px;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  color: #fff;
}
.home .item-section .product-list .img-area {
  height: 160px;
  padding: 10px 10px;
  position: relative;
}
.home .item-section .product-list .img-area img {
  max-height: calc(100% - 10px);
}
.home .item-section .product-list .product-name {
  font-size: 11px;
  margin-top: 7px;
  line-height: 1.2;
}
.home .item-section .product-list .price-area {
  margin-top: 10px;
}
.home .item-section .product-list .price {
  letter-spacing: -0.04em;
  font-size: 30px;
}
.home .item-section .product-list .tax, .home .item-section .product-list .yen {
  font-size: 11px;
  line-height: 1;
}
.home .item-section .c-btn01 {
  margin-top: 24px;
}
.home .case-section {
  overflow: hidden;
  background: #F9F9F9;
  padding-top: 20px;
  padding-bottom: 40px;
}
.home .case-section .splide-outer {
  padding: 0 47px;
  position: relative;
}
.home .case-section .case-splide {
  overflow: visible;
  margin-bottom: 7px;
}
.home .case-section .case-splide .splide__track {
  overflow: visible;
}
.home .case-section .case-splide .splide-wrapper {
  position: relative;
}
.home .case-section .case-splide .splide__slide {
  -webkit-box-shadow: 0 2px 5px rgba(0, 183, 173, 0.15);
          box-shadow: 0 2px 5px rgba(0, 183, 173, 0.15);
}
.home .case-section .case-splide .img-area {
  height: 216px;
  position: static;
}
.home .case-section .case-splide .img-area img {
  top: 20px;
  bottom: initial;
  display: block;
  max-width: 200px;
  width: 100%;
}
.home .case-section .case-splide .img-area .txt {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 20px;
  margin: auto;
  text-align: center;
}
.home .case-section .c-btn01 {
  margin-top: 30px;
}
.home .budget-section {
  padding-top: 40px;
  padding-bottom: 40px;
}
.home .budget-section .content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  gap: 15px;
}
.home .budget-section .content .box {
  border-radius: 5px;
  position: relative;
  padding: 5px;
  z-index: 1;
  -webkit-box-shadow: 0px 2px 5px rgba(0, 183, 173, 0.15);
          box-shadow: 0px 2px 5px rgba(0, 183, 173, 0.15);
}
.home .budget-section .content .box::before {
  content: "";
  background: url("../img/home/dot-bg.png.webp") no-repeat center/cover;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%;
}
.home .budget-section .content .box:first-child {
  background: #00C8BC;
}
.home .budget-section .content .box:first-child .num {
  color: #00C8BC;
}
.home .budget-section .content .box:nth-child(2) {
  background: #48BDD8;
}
.home .budget-section .content .box:nth-child(2) .num {
  color: #48BDD8;
}
.home .budget-section .content .box:nth-child(3) {
  background: #69A5EA;
}
.home .budget-section .content .box:nth-child(3) .num {
  color: #69A5EA;
}
.home .budget-section .content .box:nth-child(4) {
  background: #B68DE8;
}
.home .budget-section .content .box:nth-child(4) .num {
  color: #B68DE8;
}
.home .budget-section .content .box img {
  position: relative;
  z-index: 1;
  margin: auto;
  display: block;
}
.home .budget-section .content .ttl {
  background: #fff;
  border-radius: 5px;
  padding: 5px 8px;
  font-weight: bold;
  font-size: 15px;
  margin: auto;
  position: relative;
  line-height: 1.2;
  z-index: 1;
}
.home .budget-section .content .budget {
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  font-size: 8px;
  line-height: 1;
  margin-right: 4px;
}
.home .budget-section .content .num {
  letter-spacing: -0.03em;
  font-size: 20px;
  line-height: 1;
  font-family: "Poppins", sans-serif;
  margin-right: 1px;
}
.home .budget-section .content .yen {
  font-size: 8px;
  line-height: 1;
  margin-right: 2px;
}
.home .budget-section .content .small {
  font-size: 10px;
  letter-spacing: -0.05em;
  vertical-align: top;
  display: inline-block;
  margin-top: 5px;
}
.home .color-section {
  padding-top: 40px;
  padding-bottom: 40px;
}
.home .color-section .color-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 10px 30px;
}
.home .color-section .line {
  width: calc((100% - 30px) / 2);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-weight: bold;
  font-size: 14px;
  gap: 10px;
  line-height: 1.2;
  padding: 5px 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.home .color-section .color-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #d9d9d9;
  position: relative;
}
.home .color-section .color-icon.red {
  background: #FF2C2C;
}
.home .color-section .color-icon.light_blue {
  background: #65CCFF;
}
.home .color-section .color-icon.green {
  background: #52CC2D;
}
.home .color-section .color-icon.pink {
  background: #FF8686;
}
.home .color-section .color-icon.black {
  background: #000;
}
.home .color-section .color-icon.blue {
  background: #0041CE;
}
.home .color-section .color-icon.yellow {
  background: #FFCC00;
}
.home .color-section .color-icon.purple {
  background: #B869ED;
}
.home .color-section .color-icon.stripe {
  background: url("../img/home/stripe.png.webp") no-repeat center/cover;
}
.home .check-banner-block {
  padding-top: 40px;
  background: #F9F9F9;
}
.home .check-banner {
  display: block;
  margin: 0 16px;
}
.home .check-banner img {
  -webkit-box-shadow: 0 2px 4px rgba(0, 183, 173, 0.15);
          box-shadow: 0 2px 4px rgba(0, 183, 173, 0.15);
  display: block;
  margin: auto;
  max-width: 600px;
  width: 100%;
}
.home .flow-section {
  padding-top: 40px;
  padding-bottom: 0px;
  background: #F9F9F9;
}
.home .flow-section .attention {
  position: relative;
  padding-left: 20px;
  font-size: 10px;
  margin-top: 7px;
  margin-bottom: 20px;
}
.home .flow-section .attention::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.home .flow-section .attention::after {
  content: "1";
  position: absolute;
  left: 10px;
  top: -0.1em;
  font-size: 0.7em;
}
.home .catalog-banner {
  background: #F9F9F9;
  padding: 20px 20px 40px;
  text-align: center;
  display: block;
  margin: 0;
}
.home .catalog-banner img {
  max-width: 600px;
  width: 100%;
}
.home .popular-section {
  background: #E2FAF9;
  padding: 40px 0;
}
.home .popular-section .list-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-radius: 5px;
  background: #fff;
  -webkit-box-shadow: 0 2px 5px rgba(0, 183, 173, 0.15);
          box-shadow: 0 2px 5px rgba(0, 183, 173, 0.15);
  gap: 10px;
  padding: 9.5px 10px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}
.home .popular-section .list-item + .list-item {
  margin-top: 10px;
}
.home .popular-section .list-item .img-area {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  overflow: hidden;
}
.home .popular-section .list-item .img-area img {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.home .popular-section .list-item .ttl {
  font-size: 13px;
  margin-bottom: 5px;
}
.home .popular-section .list-item .txt {
  font-size: 11px;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.home .popular-section .c-btn01 {
  margin-top: 17px;
}
.home .news-section {
  padding: 40px 0 135px;
}
.home .news-section .list-item {
  border-bottom: 1px solid #DFDFDF;
  display: block;
  padding-bottom: 6px;
}
.home .news-section .list-item + .list-item {
  margin-top: 5px;
}
.home .news-section .list-item .date {
  color: #999;
  font-weight: bold;
  font-size: 10px;
  margin-right: 10px;
}
.home .news-section .list-item .tag {
  display: inline-block;
  border-radius: 20px;
  border: 1px solid #00C8BC;
  font-size: 10px;
  color: #00C8BC;
  padding: 0px 8px;
}
.home .news-section .list-item .ttl {
  font-size: 13px;
  margin-top: 10px;
  text-decoration: underline;
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.home .news-section .c-btn01 {
  margin-top: 20px;
}

/* -----------------------------------------------
* blog detail Module
* blog detail ページ用
-------------------------------------------------- */
.wp-block-table {
  margin: 0;
}
.wp-block-table thead {
  border-bottom: none !important;
}

.blog-article-block .ttl-wrap .date {
  font-size: 14px;
  letter-spacing: 0.1em;
  padding-bottom: 3px;
}
.blog-article-block .ttl-wrap .ttl {
  border-bottom: 1px solid #fba31a;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 15px;
  padding-bottom: 6px;
}
.blog-article-block .ttl-wrap .tag {
  background-color: #00C8BC;
  border-radius: 5px;
  color: #fff;
  display: inline-block;
  padding: 5px 18px;
  line-height: 1;
  font-size: 12px;
}
.blog-article-block .thumb {
  margin: 30px 0 55px;
}
.blog-article-block .thumb img {
  width: 100%;
  height: auto;
}
.blog-article-block .article-content {
  border-bottom: 1px solid #fa9900;
  padding-bottom: 70px;
}
.blog-article-block .article-content h2 {
  color: #00C8BC;
  border-bottom: 2px solid #00C8BC;
  font-size: 24px;
  font-weight: bold;
  padding-bottom: 7px;
}
.blog-article-block .article-content h3 {
  font-size: 20px;
  font-weight: bold;
  padding-left: 20px;
  position: relative;
}
.blog-article-block .article-content h3::before {
  background: #00C8BC;
  content: "";
  display: block;
  width: 3px;
  height: 1em;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  margin: auto;
}
.blog-article-block .article-content h4 {
  border-bottom: 2px solid #00C8BC;
  font-size: 18px;
  font-weight: bold;
  padding-bottom: 7px;
}
.blog-article-block .article-content h5 {
  background: #f6f6f6;
  font-weight: bold;
  font-size: 16px;
  padding: 10px 15px;
}
.blog-article-block .article-content ul li,
.blog-article-block .article-content ol li {
  line-height: 1.5;
  position: relative;
}
.blog-article-block .article-content ul li {
  padding-left: 15px;
}
.blog-article-block .article-content ul li::before {
  background: #00C8BC;
  border-radius: 50%;
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  position: absolute;
  top: 10px;
  left: 0;
  margin: auto;
}
.blog-article-block .article-content ol {
  counter-reset: number 0;
  padding-left: 17px;
}
.blog-article-block .article-content ol li::before {
  color: #00C8BC;
  counter-increment: number 1;
  content: counter(number) ".";
  position: absolute;
  top: 0;
  left: -1.1em;
}
.blog-article-block .article-content a {
  color: #00C8BC;
  position: relative;
  text-decoration: underline;
}
.blog-article-block .article-content a.link-ex::after {
  background: url(../img/common/ico-ex.svg) no-repeat center center;
  background-size: 13px 13px;
  content: "";
  display: inline-block;
  height: 13px;
  position: relative;
  width: 13px;
  top: 1px;
  right: -5px;
  margin: auto;
}
.blog-article-block .article-content .link-ex a::after {
  background: url(../img/common/ico-ex.svg) no-repeat center center;
  background-size: 13px 13px;
  content: "";
  display: inline-block;
  height: 13px;
  position: relative;
  width: 13px;
  top: 1px;
  right: -5px;
  margin: auto;
}
.blog-article-block .article-content .wp-block-button.is-style-outline .wp-block-button__link {
  background: #fff;
  border: 1px solid #00C8BC;
  color: #00C8BC;
}
.blog-article-block .article-content .wp-block-button.is-style-outline .wp-block-button__link::before {
  border-color: #00C8BC;
}
.blog-article-block .article-content .wp-block-button__link {
  color: #fff;
  display: inline-block;
  letter-spacing: 0.1em;
  padding: 12px 60px;
  text-decoration: none;
  width: auto;
  background-color: #fa9900;
}
.blog-article-block .article-content .is-style-outline .wp-block-button__link {
  background: #fff;
  border: 1px solid #00C8BC;
  color: #00C8BC;
}
.blog-article-block .article-content .is-style-outline .wp-block-button__link::before {
  border-color: #00C8BC;
}
.blog-article-block .article-content .wp-block-columns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.blog-article-block .article-content .wp-block-columns .wp-block-column {
  min-width: 0;
  word-break: break-word;
  overflow-wrap: break-word;
}
.blog-article-block .article-content .wp-block-columns .wp-block-image {
  margin: 0 15px;
  text-align: center;
}
.blog-article-block .article-content .wp-block-columns .wp-block-image figure {
  margin: 0;
}
.blog-article-block .article-content .wp-block-columns .wp-block-image figure img {
  width: 100%;
}
.blog-article-block .article-content .wp-block-columns .wp-block-image figcaption {
  font-size: 12px;
  margin-top: 5px;
}
.blog-article-block .article-content .wp-block-media-text {
  margin-top: 30px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.blog-article-block .article-content .wp-block-media-text .wp-block-media-text__media {
  margin: 0;
  text-align: center;
}
.blog-article-block .article-content .wp-block-table {
  margin: 0;
}
.blog-article-block .article-content .wp-block-table thead {
  border: none;
}
.blog-article-block .article-content table {
  margin-top: 30px;
  width: 100%;
}
.blog-article-block .article-content table th,
.blog-article-block .article-content table td {
  padding: 15px;
}
.blog-article-block .article-content table th {
  background: #00C8BC;
  border: 1px solid #00C8BC;
  color: #fff;
}
.blog-article-block .article-content table td {
  border: 1px solid #00C8BC;
}
.blog-article-block .article-content table thead th:nth-child(n+2) {
  border-left-color: #fff;
}
.blog-article-block .article-content table thead th:not(:last-child) {
  border-right-color: #fff;
}
.blog-article-block .article-content .iframe-wrap {
  position: relative;
  margin: 30px auto 0;
  text-align: center;
}
.blog-article-block .article-content .iframe-wrap.youtube .wp-block-embed__wrapper {
  position: static;
}
.blog-article-block .article-content img {
  height: auto;
}
.blog-article-block .article-content * + h2,
.blog-article-block .article-content * + h3,
.blog-article-block .article-content * + h4,
.blog-article-block .article-content * + h5,
.blog-article-block .article-content * + ul,
.blog-article-block .article-content * + ol,
.blog-article-block .article-content * + .wp-block-buttons {
  margin-top: 20px;
}
.blog-article-block .article-content * + p {
  margin-top: 10px;
}
.blog-article-block .article-content h2 {
  margin-bottom: 30px;
}
.blog-article-block .article-content h3,
.blog-article-block .article-content h4,
.blog-article-block .article-content h5 {
  margin-bottom: 20px;
}
.blog-article-block .article-content * + .wp-block-buttons {
  margin: 30px auto !important;
}

/* -----------------------------------------------
* contact Module
* contactページ用
-------------------------------------------------- */
.contact {
  font-size: 13px;
}
.contact .contact-section {
  padding: 30px 0 100px;
}
.contact .contact-section .info {
  line-height: 1.8;
  margin-top: 16px;
}
.contact .contact-section .info:first-child {
  margin-top: 0;
}
.contact .contact-section .note {
  display: block;
  font-size: 12px;
  line-height: 1.4;
  text-indent: -1em;
  padding-left: 1em;
}
.contact .contact-section .aco-body {
  padding-top: 8px;
}
.contact .contact-section .aco-body .note + .note {
  margin-top: 8px;
}
.contact .contact-section .aco-body + .info {
  margin-top: 24px;
}
.contact .contact-section .link {
  color: #0088FF;
  text-decoration: underline;
}
.contact .contact-section .c-ttl02 {
  margin-top: 20px;
}
.contact .contact-section .c-ttl03 {
  margin-top: 16px;
}
.contact .contact-section .dot-list-small {
  line-height: 1.4;
  margin-top: 8px;
}
.contact .contact-section .dot-list-small > li {
  padding-left: 1.5em;
  position: relative;
}
.contact .contact-section .dot-list-small > li::before {
  content: "";
  background: currentColor;
  border-radius: 50%;
  width: 4px;
  height: 4px;
  position: absolute;
  top: 0.6em;
  left: 0.5em;
}
.contact .contact-section .dot-list-small > li:not(:last-child) {
  margin-bottom: 8px;
}
.contact .c-contact {
  margin-top: 30px;
}
.contact .c-contact .q-wrap + .q-wrap {
  margin-top: 10px;
}
.contact .c-contact .btn-wrap {
  margin-top: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact .c-contact .btn-wrap .c-btn01 {
  max-width: 500px;
}
.contact .c-contact .btn-wrap .c-btn01.c-back {
  padding: 19px 20px 19px 20px;
}
.contact .c-contact textarea[name=message] {
  height: 200px;
}
.contact .complete-wrap {
  text-align: center;
}
.contact .complete-wrap .bold {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}
.contact .wpcf7-response-output {
  display: none !important;
}
.contact .wpcf7-not-valid-tip {
  display: none !important;
}

/* -----------------------------------------------
* policy Module
* policyページ用
-------------------------------------------------- */
.policy {
  font-size: 13px;
}
.policy .info-section {
  padding: 30px 0 100px;
}
.policy .info-section .section {
  margin-top: 36px;
}
.policy .info-section .txt {
  line-height: 1.4;
}
.policy .info-section .txt:not(:last-child) {
  margin-bottom: 8px;
}
.policy .info-section .txt-date {
  margin-top: 32px;
}
.policy .info-section .txt-date .head {
  font-weight: 500;
}
.policy .info-section .link {
  color: #0088FF;
  text-decoration: underline;
}
.policy .info-section .num-list {
  list-style-type: decimal;
  margin-left: 1.2em;
  line-height: 1.4;
}
.policy .info-section .num-list:not(:last-child) {
  margin-bottom: 16px;
}
.policy .info-section .num-list > li:not(:last-child) {
  margin-bottom: 16px;
}
.policy .info-section .dot-list-small {
  line-height: 1.4;
}
.policy .info-section .dot-list-small:not(:last-child) {
  margin-bottom: 8px;
}
.policy .info-section .dot-list-small > li {
  padding-left: 1.5em;
  position: relative;
}
.policy .info-section .dot-list-small > li::before {
  content: "";
  background: currentColor;
  border-radius: 50%;
  width: 4px;
  height: 4px;
  position: absolute;
  top: 0.6em;
  left: 0.5em;
}
.policy .info-section .dot-list-small > li:not(:last-child) {
  margin-bottom: 8px;
}

/* -----------------------------------------------
* transaction Module
* transactionページ用
-------------------------------------------------- */
.transaction .info-section {
  padding: 30px 0 100px;
}
.transaction .info-section .section {
  counter-reset: num-ttl;
}
.transaction .info-section .section + .section {
  border-top: 1px solid #d9d9d9;
  padding-top: 17px;
  margin-top: 14px;
}
.transaction .info-section .section-inner {
  font-size: 13px;
  margin-top: 16px;
}
.transaction .info-section .txt {
  line-height: 1.4;
}
.transaction .info-section .txt:not(:last-child) {
  margin-bottom: 8px;
}
.transaction .info-section .note {
  font-size: 13px;
}
.transaction .info-section .indent {
  display: block;
  text-indent: -1em;
  padding-left: 1em;
}
.transaction .info-section .link {
  color: #0088FF;
  text-decoration: underline;
}
.transaction .info-section .num-ttl {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.4;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5em;
  margin-bottom: 8px;
}
.transaction .info-section .num-ttl::before {
  counter-increment: num-ttl 1;
  content: counter(num-ttl) ".";
}
.transaction .info-section .num-list {
  list-style-type: decimal;
  margin-left: 1.2em;
}
.transaction .info-section .num-list:not(:last-child) {
  margin-bottom: 8px;
}
.transaction .info-section .num-list > li:not(:last-child) {
  margin-bottom: 8px;
}
.transaction .info-section .dot-list:not(:last-child) {
  margin-bottom: 8px;
}
.transaction .info-section .dot-list > li {
  padding-left: 1em;
  position: relative;
}
.transaction .info-section .dot-list > li::before {
  content: "";
  background: currentColor;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  position: absolute;
  top: 0.7em;
  left: 0;
}
.transaction .info-section .dot-list > li:not(:last-child) {
  margin-bottom: 4px;
}
.transaction .info-section .dot-list-small:not(:last-child) {
  margin-bottom: 8px;
}
.transaction .info-section .dot-list-small > li {
  padding-left: 1.5em;
  position: relative;
}
.transaction .info-section .dot-list-small > li::before {
  content: "";
  background: currentColor;
  border-radius: 50%;
  width: 4px;
  height: 4px;
  position: absolute;
  top: 0.6em;
  left: 0.5em;
}
.transaction .info-section .dot-list-small > li:not(:last-child) {
  margin-bottom: 4px;
}

/* -----------------------------------------------
* news Module
* newsページ用
-------------------------------------------------- */
.archive-section {
  padding: 30px 0 100px;
}

.archive-list a {
  border-bottom: 1px solid #d9d9d9;
  display: block;
  padding: 10px 0;
}
.archive-list .info-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}
.archive-list .info-area .date {
  color: #999999;
  font-size: 10px;
  font-weight: bold;
}
.archive-list .info-area .category {
  border-radius: 100px;
  border: 1px solid currentColor;
  color: #00C8BC;
  font-size: 10px;
  line-height: 1.15;
  padding: 1px 8px;
}
.archive-list .ttl {
  font-size: 13px;
  line-height: 1.8;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.archive-thumb-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 20px 15px;
}
.archive-thumb-list a {
  display: block;
}
.archive-thumb-list .img {
  overflow: hidden;
}
.archive-thumb-list .img img {
  aspect-ratio: 320/229;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.archive-thumb-list .ttl {
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
  margin-block: 10px 8px;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.archive-thumb-list .category {
  border-radius: 100px;
  border: 1px solid currentColor;
  color: #00C8BC;
  font-size: 10px;
  line-height: 1.15;
  padding: 1px 8px;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}

.archive-paging {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  margin-top: 35px;
}
.archive-paging .page-numbers {
  border: 1px solid transparent;
}
.archive-paging .page-numbers.dot {
  color: #00C8BC;
  font-size: 10px;
  font-weight: bold;
}
.archive-paging .page-numbers:not(.dot) {
  border-color: #00C8BC;
  border-radius: 100px;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  line-height: 22px;
  min-width: 24px;
  height: 24px;
}
.archive-paging .page-numbers:not(.dot):not(.prev):not(.next) {
  color: #00C8BC;
}
.archive-paging .page-numbers:not(.dot).current {
  background: #E2FAF9;
  pointer-events: none;
}
.archive-paging .page-numbers:not(.dot).prev, .archive-paging .page-numbers:not(.dot).next {
  background: #00C8BC;
  font-size: 0;
}
.archive-paging .page-numbers:not(.dot).prev::before, .archive-paging .page-numbers:not(.dot).next::before {
  content: "";
  background-color: #fff;
  -webkit-mask: url(../img/common/ico-arrow.svg);
          mask: url(../img/common/ico-arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  display: inline-block;
  vertical-align: middle;
  width: 6px;
  height: 7px;
}
.archive-paging .page-numbers:not(.dot).prev {
  margin-right: 8px;
}
.archive-paging .page-numbers:not(.dot).next {
  margin-left: 8px;
}
.archive-paging .page-numbers:not(.dot).next::before {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
  margin-right: -1px;
}

.article-section {
  padding-block: 30px 100px;
}
.article-section .article-ttl {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 16px;
}
.article-section .article-thumb.column {
  margin-bottom: 20px;
}
.article-section .article-info {
  margin: 16px 0 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 10px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.article-section .article-info .date {
  color: #999999;
  font-size: 10px;
  font-weight: bold;
}
.article-section .article-info .category-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.article-section .article-info .category {
  border-radius: 100px;
  border: 1px solid currentColor;
  color: #00C8BC;
  font-size: 10px;
  line-height: 1.15;
  padding: 1px 8px;
}
.article-section .article-share {
  margin-block: 20px;
  text-align: right;
}
.article-section .c-btn01 {
  margin-block: 20px;
  padding-block: 14px;
}
.article-section .related-section {
  margin-top: 40px;
}

#ez-toc-container,
#toc_container {
  background: #E2FAF9;
  border-radius: 5px;
  margin: 20px 0;
  padding: 10px 16px;
  position: relative;
}
#ez-toc-container .ez-toc-title,
#ez-toc-container .toc_title,
#toc_container .ez-toc-title,
#toc_container .toc_title {
  color: #00C8BC;
  font-size: 13px;
  font-weight: bold;
  line-height: 1.4;
  margin: 0;
}
#ez-toc-container .ez-toc-list,
#ez-toc-container .toc_list,
#toc_container .ez-toc-list,
#toc_container .toc_list {
  margin-top: 10px;
}
#ez-toc-container .ez-toc-list a,
#ez-toc-container .toc_list a,
#toc_container .ez-toc-list a,
#toc_container .toc_list a {
  display: block;
  font-size: 12px;
  line-height: 1.4;
  padding-left: 10px;
  position: relative;
}
#ez-toc-container .ez-toc-list li,
#ez-toc-container .toc_list li,
#toc_container .ez-toc-list li,
#toc_container .toc_list li {
  margin-top: 5px;
}
#ez-toc-container .ez-toc-list > li > a::before,
#ez-toc-container .toc_list > li > a::before,
#toc_container .ez-toc-list > li > a::before,
#toc_container .toc_list > li > a::before {
  content: "";
  border-bottom: 1px solid #00C8BC;
  display: block;
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 7px;
  height: 0;
}
#ez-toc-container .ez-toc-list > li > ul,
#ez-toc-container .toc_list > li > ul,
#toc_container .ez-toc-list > li > ul,
#toc_container .toc_list > li > ul {
  padding-left: 10px;
}
#ez-toc-container .ez-toc-list > li > ul a::before,
#ez-toc-container .toc_list > li > ul a::before,
#toc_container .ez-toc-list > li > ul a::before,
#toc_container .toc_list > li > ul a::before {
  content: "";
  border: solid #00C8BC;
  border-width: 0 0 1px 1px;
  display: block;
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 5px;
  height: 5px;
}
#ez-toc-container .toc_toggle,
#toc_container .toc_toggle {
  background: #00C8BC;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 10px;
  right: 16px;
}
#ez-toc-container .toc_toggle::before,
#toc_container .toc_toggle::before {
  content: "";
  background: #fff;
  -webkit-mask: url(../img/common/ico-arrow.svg);
          mask: url(../img/common/ico-arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  margin-block: 0 1px;
  width: 7px;
  height: 7px;
}
#ez-toc-container .toc_toggle.is-close::before,
#toc_container .toc_toggle.is-close::before {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  margin-block: 1px 0;
}

.c-article-body {
  font-size: 12px;
}
.c-article-body p,
.c-article-body ul:not(#ez-toc-container ul),
.c-article-body ol,
.c-article-body table,
.c-article-body .works-list,
.c-article-body .qa-box {
  margin-block: 1.4em;
}
.c-article-body > *:first-child {
  margin-top: 0;
}
.c-article-body > *:last-child {
  margin-bottom: 0;
}
.c-article-body p {
  line-height: 1.8;
}
.c-article-body h2 {
  margin-top: 20px;
}
.c-article-body ul:not(#ez-toc-container ul) {
  line-height: 1.4;
}
.c-article-body ul:not(#ez-toc-container ul) > li {
  padding-left: 1em;
  position: relative;
}
.c-article-body ul:not(#ez-toc-container ul) > li::before {
  content: "";
  background: #00C8BC;
  border-radius: 50%;
  width: 4px;
  height: 4px;
  position: absolute;
  top: 0.5em;
  left: 0;
}
.c-article-body ol {
  list-style-type: decimal;
  margin-left: 1em;
}
.c-article-body ul:not(#ez-toc-container ul) > li:not(:last-child),
.c-article-body ol > li:not(:last-child) {
  margin-bottom: 2px;
}
.c-article-body ul:not(#ez-toc-container ul).dot-list,
.c-article-body ol.dot-list {
  gap: 0 11px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 0;
}
.c-article-body ul:not(#ez-toc-container ul).dot-list > li,
.c-article-body ol.dot-list > li {
  line-height: 1.6;
  position: relative;
  padding-left: 15px;
  font-weight: 500;
  width: calc((100% - 11px) / 2);
}
.c-article-body ul:not(#ez-toc-container ul).dot-list > li:not(:last-child),
.c-article-body ol.dot-list > li:not(:last-child) {
  margin-bottom: 0;
}
.c-article-body ul:not(#ez-toc-container ul).dot-list > li::before,
.c-article-body ol.dot-list > li::before {
  content: "";
  position: absolute;
  background: #00C8BC;
  display: block;
  width: 5px;
  height: 5px;
  top: 10px;
  left: 0;
  margin: auto;
}
.c-article-body table {
  line-height: 1.4;
  width: 100%;
}
.c-article-body table th,
.c-article-body table td {
  border: 1px solid #d9d9d9;
  padding: 8px;
}
.c-article-body table th {
  background: #E2FAF9;
}
.c-article-body .check-title {
  font-size: 12px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 10px;
  padding-left: 17px;
  position: relative;
}
.c-article-body .check-title::before {
  content: "";
  background: #00C8BC;
  -webkit-mask: url(../img/common/ico-check.svg);
          mask: url(../img/common/ico-check.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  margin-block: 0 1px;
  position: absolute;
  top: 0.1em;
  left: 0;
  width: 15px;
  height: 15px;
}
.c-article-body .wp-block-gallery {
  margin-top: 1.4em;
}
.c-article-body .wp-block-gallery + * {
  margin-top: 10px;
}
.c-article-body .wp-block-gallery + .wp-block-image {
  margin-top: 10px;
}
.c-article-body .wp-block-image {
  margin-top: 1.4em;
}
.c-article-body .wp-block-image + * {
  margin-top: 10px;
}
.c-article-body .wp-block-image img {
  margin: auto;
  display: block;
}
.c-article-body .works-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 10px;
}
.c-article-body .works-list .img {
  text-align: center;
}
.c-article-body .works-list .name {
  color: #999999;
  font-size: 10px;
  line-height: 1.4;
  margin-block: 10px 5px;
  text-align: center;
}
.c-article-body .works-list .txt {
  font-size: 10px;
  line-height: 1.4;
  margin: 0;
}
.c-article-body .gray-box {
  background: #f9f9f9;
  border-radius: 5px;
  margin-bottom: 1.4em;
  padding: 10px;
}
.c-article-body .qa-box .question,
.c-article-body .qa-box .answer {
  margin: 0;
  position: relative;
  padding-left: 30px;
  min-height: 24px;
}
.c-article-body .qa-box .question::before,
.c-article-body .qa-box .answer::before {
  content: "";
  border-radius: 50%;
  border: 1px solid #00C8BC;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  line-height: 22px;
  width: 24px;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
}
.c-article-body .qa-box .question::before {
  content: "Q";
  background: #00C8BC;
  color: #fff;
}
.c-article-body .qa-box .answer {
  margin-top: 8px;
}
.c-article-body .qa-box .answer::before {
  content: "A";
  color: #00C8BC;
}

/* -----------------------------------------------
* qa Module
* qaページ用
-------------------------------------------------- */
.qa .qa-section-wrap {
  background: #E2FAF9;
  padding: 30px 0 100px;
}
.qa .qa-section + .qa-section {
  margin-top: 30px;
}
.qa .qa-box + .qa-box {
  margin-top: 20px;
}
.qa .qa-box .box {
  background: #fff;
  border-radius: 5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  padding: 15px 10px 15px 44px;
  min-height: 54px;
}
.qa .qa-box .box::before {
  content: "";
  border-radius: 50%;
  border: 1px solid #00C8BC;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  line-height: 22px;
  width: 24px;
  text-align: center;
  position: absolute;
  top: 15px;
  left: 10px;
}
.qa .qa-box .question {
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out color;
  transition: 0.3s ease-in-out color;
}
.qa .qa-box .question::before {
  content: "Q";
  background: #00C8BC;
  color: #fff;
}
.qa .qa-box .question::after {
  content: "";
  background: #00C8BC;
  -webkit-mask: url(../img/common/ico-arrow.svg);
          mask: url(../img/common/ico-arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  position: absolute;
  top: 25px;
  right: 10px;
  width: 8px;
  height: 9px;
}
.qa .qa-box .question.is-open::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.qa .qa-box .answer {
  display: none;
  margin-top: 10px;
  padding-right: 26px;
}
.qa .qa-box .answer::before {
  content: "A";
  color: #00C8BC;
}
.qa .qa-box .txt {
  font-size: 12px;
  line-height: 1.4;
}
.qa .qa-box .txt + .txt {
  margin-top: 1.4em;
}
.qa .qa-box .txt .link {
  color: #00C8BC;
  text-decoration: underline;
}

/* -----------------------------------------------
* policy Module
* policyページ用
-------------------------------------------------- */
.customers .customers-section {
  padding: 30px 0 100px;
}
.customers .voice-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(auto, 1fr));
  gap: 15px;
  margin-top: 30px;
}
.customers .voice-list .img-area {
  position: relative;
  padding-top: 75%;
  overflow: hidden;
  border-radius: 5px;
}
.customers .voice-list .img-area img {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.customers .voice-list .voice-ttl {
  font-size: 11px;
  margin-top: 3px;
}
.customers.detail .detail-section {
  padding: 30px 0 100px;
}
.customers.detail .detail-section .inner-block > * + * {
  margin-top: 27px;
}
.customers.detail .detail-section img {
  display: block;
  max-width: 500px;
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
  margin: auto;
}
.customers.detail .detail-section p {
  font-size: 13px;
  line-height: 1.8em;
}
.customers.detail .detail-section .c-share-btn-wrap {
  margin-top: 20px;
}

/* -----------------------------------------------
* transaction Module
* transactionページ用
-------------------------------------------------- */
.customer-gallery .gallery-section, .customer-gallery .detail-section {
  background-color: #f9f9f9;
  padding: 30px 0 100px;
}
.customer-gallery .c-category-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.customer-gallery .c-category-list label {
  background-color: #fff;
  border-radius: 5px;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border: solid 1px #00C8BC;
  padding: 9px 4px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.customer-gallery .c-category-list label input {
  width: 0;
  height: 0;
}
.customer-gallery .c-category-list label .txt {
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.customer-gallery .c-category-list label:has(input:checked) {
  background-color: #00C8BC;
}
.customer-gallery .c-category-list label:has(input:checked) .txt {
  color: #fff;
}
.customer-gallery .product-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 30px;
}
.customer-gallery .product-wrap .img-wrap {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 5px;
  position: relative;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 183, 173, 0.15);
          box-shadow: 0 2px 4px 0 rgba(0, 183, 173, 0.15);
}
.customer-gallery .product-wrap .img-wrap img {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  position: absolute;
  inset: 0;
  display: block;
  background-color: #fff;
  width: 100%;
  margin: auto;
}
.customer-gallery .product-wrap .txt {
  text-align: center;
  margin-top: 7px;
  font-size: 12px;
}
.customer-gallery .detail-section .inner-block > * + * {
  margin-top: 30px;
}
.customer-gallery .detail-section .img-wrap {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 5px;
  position: relative;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 183, 173, 0.15);
          box-shadow: 0 2px 4px 0 rgba(0, 183, 173, 0.15);
  max-width: 500px;
  margin: auto;
}
.customer-gallery .detail-section .img-wrap img {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  position: absolute;
  inset: 0;
  display: block;
  background-color: #fff;
  width: 100%;
  margin: auto;
}
.customer-gallery .detail-section p {
  font-size: 12px;
}

/* -----------------------------------------------
* size Module
* sizeページ用
-------------------------------------------------- */
.size .size-section {
  padding: 30px 0 100px;
}
.size .cont + .cont {
  margin-top: 40px;
}
.size .cont .img-box {
  max-width: 800px;
  margin: 20px auto 0;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}
.size .cont img {
  display: block;
  width: 100%;
  margin: auto;
}
.size .cont img + .txt {
  margin-top: 10px;
}
.size .cont .txt {
  font-size: 13px;
}
.size .cont .txt + img {
  margin-top: 32px;
}
.size .cont .desc {
  margin-bottom: 20px;
  padding-left: 1.5em;
  position: relative;
  font-size: 12px;
}
.size .cont .desc::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}

/* -----------------------------------------------
* qa Module
* qaページ用
-------------------------------------------------- */
.category .rec-section {
  background: -webkit-gradient(linear, left top, left bottom, from(#01C8BC), to(#34BECD));
  background: linear-gradient(#01C8BC 0%, #34BECD 100%);
  padding-block: 30px;
}
.category .rec-section .c-ttl01 {
  margin-bottom: 30px;
}
.category .rec-section .sec-txt {
  font-weight: bold;
  color: #fff;
  text-align: center;
}
.category .rec-section .sec-txt.fz-13 {
  font-size: 13px;
}
.category .rec-section .c-btn01 {
  margin-top: 20px;
}
.category .rec-section .rec-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  margin-top: 30px;
}
.category .rec-section .rec-list > li {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
}
.category .rec-section .rec-list > li .rec-link {
  display: block;
}
.category .rec-section .rec-list > li .name {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
.category .rec-section .rec-list > li .img {
  margin-top: 10px;
  width: 100%;
  max-width: 400px;
  overflow: hidden;
}
.category .rec-section .rec-list > li .img img {
  width: 100%;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.category .rec-section .rec-list > li .img img.price-rec {
  -o-object-position: 50% 20%;
     object-position: 50% 20%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 353/215;
}
.category .rec-section .rec-list > li .price-txt {
  margin-top: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  font-weight: bold;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.category .rec-section .rec-list > li .price-txt .txt {
  font-size: 12px;
}
.category .rec-section .rec-list > li .price-txt .rc {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 3px;
  font-size: 20px;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.category .rec-section .rec-list > li .price-txt .rc .unit {
  font-size: 11px;
  font-family: "Noto Sans JP", sans-serif;
}
.category .rec-section .rec-list > li .note {
  font-size: 10px;
  padding-left: 10px;
  position: relative;
  margin-top: 8px;
}
.category .rec-section .rec-list > li .note + .note {
  margin-top: 0;
}
.category .rec-section .rec-list > li .note::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.category .rec-section .rec-list > li .total-txt {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid #d9d9d9;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  font-weight: bold;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.category .rec-section .rec-list > li .total-txt .txt {
  font-size: 16px;
}
.category .rec-section .rec-list > li .total-txt .rc {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 3px;
  font-size: 30px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.category .rec-section .rec-list > li .total-txt .rc .unit {
  font-size: 11px;
  font-family: "Noto Sans JP", sans-serif;
}
.category .rec-section .rec-list + .sec-txt {
  margin-top: 30px;
}
.category .img-wrap {
  padding-top: 30px;
}
.category .img-wrap .img {
  max-width: 600px;
  width: 100%;
  margin: auto;
}
.category .img-wrap .img img {
  display: block;
  border-radius: 20px;
}
.category .category-area {
  background: #F9F9F9;
}
.category .category-area .banner-wrap .banner {
  padding-inline: 20px;
}
.category .category-area .banner-wrap .banner img {
  display: block;
  width: 100%;
  margin: auto;
}
.category .category-area .banner-wrap .banner + .ranking-wrap {
  margin-top: 30px;
}
.category .category-area .banner-wrap .ranking-wrap {
  background: #00C6F3;
  padding-inline: 20px;
  padding-bottom: 18px;
  overflow: hidden;
  border-radius: 5px;
}
.category .category-area .banner-wrap .ranking-wrap .ttl-wrap {
  padding-top: 18px;
  padding-bottom: 9px;
  position: relative;
}
.category .category-area .banner-wrap .ranking-wrap .ttl-wrap::before {
  content: "";
  position: absolute;
  background: url("../img/category/sweat.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: block;
  width: clamp(70px, 24vw, 200px);
  height: clamp(70px, 24vw, 200px);
  left: -9px;
  bottom: 2px;
}
.category .category-area .banner-wrap .ranking-wrap .ttl-wrap::after {
  content: "";
  position: absolute;
  background: url("../img/category/shirt.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: block;
  width: clamp(70px, 25.3333333333vw, 200px);
  height: clamp(70px, 25.3333333333vw, 200px);
  right: -12px;
  bottom: 0;
}
.category .category-area .banner-wrap .ranking-wrap .ttl-wrap .ttl-img {
  margin-bottom: 1px;
  margin-inline: auto;
  width: clamp(82px, 21.8666666667vw, 150px);
}
.category .category-area .banner-wrap .ranking-wrap .ttl-wrap .ttl-img img {
  width: 100%;
}
.category .category-area .banner-wrap .ranking-wrap .ttl-wrap .c-ttl01 {
  margin-bottom: 0;
}
.category .category-area .banner-wrap .ranking-wrap .ttl-wrap .c-ttl01 .ja {
  text-shadow: 1px 2px 0px #2CA0FF;
}
.category .category-area .banner-wrap .ranking-wrap .c-product-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(5px, 4.5333333333vw, 20px);
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.category .category-area .banner-wrap .ranking-wrap .c-product-list .box {
  width: calc((100% - 9.0666666667vw) / 3);
}
.category .category-area .banner-wrap .ranking-wrap .c-product-list .box .rank-img {
  width: clamp(32px, 8.5333333333vw, 60px);
  margin: auto;
  margin-bottom: 3px;
}
.category .category-area .banner-wrap .ranking-wrap .c-product-list .box .rank-img img {
  width: 100%;
}
.category .category-area .banner-wrap .ranking-wrap .c-product-list .box .c-product-box .product-name {
  margin-top: 4px;
  font-size: 10px;
  font-weight: bold;
}
.category .category-area .banner-wrap .ranking-wrap .c-product-list .box .c-product-box .tag-list {
  margin-top: 4px;
  gap: clamp(1px, 0.8vw, 5px);
}
.category .category-area .banner-wrap .ranking-wrap .c-product-list .box .c-product-box .tag-list dt {
  border-color: #fff;
  color: #fff;
  font-size: 10px;
  padding: 2.5px 4px;
}
.category .category-area .banner-wrap .ranking-wrap .c-product-list .box .c-product-box .tag-list dd {
  color: #333333;
  font-size: 11px;
}
.category .category-area .banner-wrap .ranking-wrap .c-product-list .box .c-product-box .price-area {
  margin-top: 4px;
  color: #fff;
}

.nav-content-wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
}
.nav-content-wrap.result {
  display: block;
  width: 100%;
  margin-inline: auto;
  padding-inline: 40px;
}

.category-nav .search-area {
  width: 100%;
  position: relative;
  margin-bottom: 20px;
}
.category-nav .search-area input {
  padding: 19px 36px 19px 12px;
  border-radius: 5px;
  border: 1px solid #d9d9d9;
  width: 100%;
  font-weight: 400;
  font-size: 16px !important;
  background: #fff;
  line-height: 1.2;
}
.category-nav .search-area .search-btn {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 12px;
  width: 24px;
  height: 24px;
  background: #00C8BC;
  border-radius: 50%;
  border: 1px solid #00C8BC;
}
.category-nav .search-area .search-btn::before {
  content: "";
  position: absolute;
  background: #fff;
  -webkit-mask: url("../img/common/ico-search.svg");
          mask: url("../img/common/ico-search.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  display: block;
  width: 16px;
  height: 16px;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.category-nav-each + .category-nav-each {
  margin-top: 20px;
}
.category-nav-each.mt-30 {
  margin-top: 30px;
  max-width: 500px;
  margin-inline: auto;
}
.category-nav-each {
  border: 1px solid #00C8BC;
  border-radius: 5px;
  overflow: hidden;
}
.category-nav-each .contents-wrap .nav-ttl {
  width: 100%;
}
.category-nav-each .contents-wrap .nav-ttl .nav-acc-btn {
  background: #00C8BC;
  color: #fff;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  padding-block: 15px;
  padding-inline: 15px;
  border: 1px solid #00C8BC;
  border-radius: 5px;
}
.category-nav-each .contents-wrap .nav-ttl .nav-acc-btn.is-active {
  border-radius: 5px 5px 0 0;
}
.category-nav-each .contents-wrap .nav-ttl .nav-acc-btn.is-active .ico::before {
  rotate: 90deg;
}
.category-nav-each .contents-wrap .nav-ttl .inn-txt {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  padding-left: 1.6em;
  position: relative;
}
.category-nav-each .contents-wrap .nav-ttl .inn-txt::before {
  position: absolute;
  content: "";
  -webkit-mask: url("../img/common/ico-tag.svg");
          mask: url("../img/common/ico-tag.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background: currentColor;
  width: 1.2em;
  height: 1.2em;
  aspect-ratio: 1;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.category-nav-each .contents-wrap .nav-ttl .ico {
  background: #fff;
  display: block;
  width: 32px;
  aspect-ratio: 1;
  border-radius: 50%;
  position: relative;
}
.category-nav-each .contents-wrap .nav-ttl .ico::before, .category-nav-each .contents-wrap .nav-ttl .ico::after {
  content: "";
  position: absolute;
  background: #00C8BC;
  display: block;
  width: 2px;
  height: 16px;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  border-radius: 30px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.category-nav-each .contents-wrap .nav-ttl .ico::after {
  rotate: 90deg;
}
.category-nav-each .contents-wrap .nav-content {
  padding-block: 16px;
  padding-inline: 10px;
  background: #fff;
}
.category-nav-each .contents-wrap .itemtype-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 8px 9px;
}
.category-nav-each .contents-wrap .itemtype-list.color {
  gap: 10px;
}
.category-nav-each .contents-wrap .itemtype-list.color > li {
  aspect-ratio: 1/1;
  width: calc((100% - 75px) / 6);
}
.category-nav-each .contents-wrap .itemtype-list > li label input {
  width: 0;
  height: 0;
}
.category-nav-each .contents-wrap .item-tag {
  font-size: 12px;
  font-weight: 500;
  display: block;
  padding-block: 5px;
  padding-inline: 8px;
  color: #00C8BC;
  border: 1px solid #00C8BC;
  border-radius: 100vw;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-transition-property: background, color;
  transition-property: background, color;
}
.category-nav-each .contents-wrap .item-tag:has(input:checked) {
  background: #00C8BC;
  color: #fff;
}
.category-nav-each .contents-wrap .item-tag:has(input:checked):focus-visible {
  background: #fff;
  color: #00C8BC;
}
.category-nav-each .contents-wrap .item-tag:focus-visible {
  background: #00C8BC;
  color: #fff;
}
.category-nav-each .contents-wrap .item-color {
  border: 2px solid #d9d9d9;
  border-radius: 50vw;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  line-height: normal;
  font-weight: 700;
  position: relative;
  background: #fff;
}
.category-nav-each .contents-wrap .item-color:has(input:checked) {
  border-color: #00C8BC;
}
.category-nav-each .contents-wrap .item-color:has(input[value=black]) {
  background: #000;
}
.category-nav-each .contents-wrap .item-color:has(input[value=white]) {
  background: #fff;
}
.category-nav-each .contents-wrap .item-color:has(input[value=red]) {
  background: #FF2C2C;
}
.category-nav-each .contents-wrap .item-color:has(input[value=blue]) {
  background: #0041CE;
}
.category-nav-each .contents-wrap .item-color:has(input[value=yellow]) {
  background: #FC0;
}
.category-nav-each .contents-wrap .item-color:has(input[value=green]) {
  background: #52CC2D;
}
.category-nav-each .contents-wrap .item-color:has(input[value=purple]) {
  background: #B869ED;
}
.category-nav-each .contents-wrap .item-color:has(input[value=light_blue]) {
  background: #65CCFF;
}
.category-nav-each .contents-wrap .item-color:has(input[value=pink]) {
  background: #FF8686;
}
.category-nav-each .contents-wrap .item-color:has(input[value=stripe]) {
  background: repeating-linear-gradient(90deg, #fff, #fff 5px, #6D6D6D 5px, #6D6D6D 11px);
  background-position: -2px center;
  background-repeat: repeat-y;
}
.category-nav-each .contents-wrap .c-btn01 {
  margin-top: 16px;
  width: 100%;
}
.category-nav-each.color .contents-wrap .nav-ttl .inn-txt::before {
  position: absolute;
  content: "";
  -webkit-mask: url("../img/common/ico-color.svg");
          mask: url("../img/common/ico-color.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background: currentColor;
  width: 1.2em;
  height: 1.2em;
  aspect-ratio: 1;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.category-nav-each.yosan .contents-wrap .nav-ttl .inn-txt::before {
  position: absolute;
  content: "";
  -webkit-mask: url("../img/common/ico-money.svg");
          mask: url("../img/common/ico-money.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background: currentColor;
  width: 1.2em;
  height: 1.2em;
  aspect-ratio: 1;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

/* -----------------------------------------------
* firstorder Module
* firstorderページ用
-------------------------------------------------- */
.firstorder .what-section {
  padding: 30px 0 30px;
}
.firstorder .what-section .c-ttl04 {
  margin-top: 30px;
}
.firstorder .what-section .gallery-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 25px;
}
.firstorder .what-section .gallery-wrap img {
  border-radius: 5px;
  display: block;
  width: 100%;
}
.firstorder .flow-section {
  padding: 30px 0 30px;
}
.firstorder .flow-section {
  background-color: #f3f3f3;
}
.firstorder .flow-section .white-box {
  background-color: #fff;
  padding: 13px 40px 14px 15px;
  border-radius: 5px;
  margin-top: 14px;
  margin-bottom: 10px;
}
.firstorder .flow-section .red-box {
  background-color: #FFF2F4;
  margin-bottom: 10px;
  padding: 13px 40px 14px 15px;
  border-radius: 5px;
  font-size: 10px;
}
.firstorder .flow-section .red-box h3 {
  padding-left: 17px;
  font-size: 12px;
  font-weight: bold;
  position: relative;
  color: #F00000;
}
.firstorder .flow-section .red-box h3::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}
.firstorder .flow-section .red-box + p {
  font-size: 10px;
}
.firstorder .flow-section .alert {
  font-weight: bold;
  color: #F00000;
}
.firstorder .flow-section .alert.line {
  text-decoration: underline;
}
.firstorder .delivery-section {
  padding: 30px 0 30px;
}
.firstorder .delivery-section .c-dots-list {
  max-width: 800px;
  margin: 0 auto 30px;
}
.firstorder .delivery-section .map {
  display: block;
  max-width: 500px;
  width: 100%;
  margin: auto;
}
.firstorder .delivery-section .desc {
  max-width: 800px;
  margin: auto;
}
.firstorder .desc {
  padding-left: 16px;
  font-size: 10px;
  position: relative;
}
.firstorder .desc::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}
.firstorder .payment-section {
  padding: 30px 0 30px;
  background-color: #f3f3f3;
}
.firstorder .payment-section p {
  max-width: 800px;
  margin: auto;
}
.firstorder .payment-section p + p {
  margin-top: 10px;
}
.firstorder .qa-section {
  background-color: #E2FAF9;
  padding: 30px 0 100px;
}
.firstorder .qa-section .qa-box + .qa-box {
  margin-top: 20px;
}
.firstorder .qa-section .qa-box .box {
  background: #fff;
  border-radius: 5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  padding: 15px 10px 15px 44px;
  min-height: 54px;
}
.firstorder .qa-section .qa-box .box::before {
  content: "";
  border-radius: 50%;
  border: 1px solid #00C8BC;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  line-height: 22px;
  width: 24px;
  text-align: center;
  position: absolute;
  top: 15px;
  left: 10px;
}
.firstorder .qa-section .qa-box .question {
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out color;
  transition: 0.3s ease-in-out color;
}
.firstorder .qa-section .qa-box .question::before {
  content: "Q";
  background: #00C8BC;
  color: #fff;
}
.firstorder .qa-section .qa-box .question::after {
  content: "";
  background: #00C8BC;
  -webkit-mask: url(../img/common/ico-arrow.svg);
          mask: url(../img/common/ico-arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  position: absolute;
  top: 25px;
  right: 10px;
  width: 8px;
  height: 9px;
}
.firstorder .qa-section .qa-box .question.is-open::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.firstorder .qa-section .qa-box .answer {
  display: none;
  margin-top: 10px;
  padding-right: 26px;
}
.firstorder .qa-section .qa-box .answer::before {
  content: "A";
  color: #00C8BC;
}
.firstorder .qa-section .qa-box .txt {
  font-size: 12px;
  line-height: 1.4;
}
.firstorder .qa-section .qa-box .txt + .txt {
  margin-top: 1.4em;
}
.firstorder .qa-section .c-btn01 {
  margin-top: 20px;
}

.how-to-order .c-anchor-section {
  background: #fff;
}
.how-to-order .c-anchor-section .btn-area {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  margin-bottom: 40px;
}
.how-to-order .c-anchor-section .btn-area .btn {
  border: 1px solid #00C8BC;
  background: #00C8BC;
  color: #fff;
  border-radius: 5px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 183, 173, 0.15);
          box-shadow: 0 2px 5px rgba(0, 183, 173, 0.15);
  font-weight: bold;
  font-size: 12px;
  text-align: center;
  padding: 9.5px 0;
}
.how-to-order .c-num-list {
  counter-reset: num;
}
.how-to-order .c-num-list > li {
  counter-increment: num;
}
.how-to-order .c-num-list > li + li {
  margin-top: 30px;
}
.how-to-order .c-num-list > li .ttl {
  position: relative;
  padding-left: 17px;
  line-height: 1.53;
  font-size: 13px;
  margin-bottom: 10px;
}
.how-to-order .c-num-list > li .ttl::before {
  content: counter(num) ".";
  position: absolute;
  left: 0;
  top: 2px;
  color: #00C8BC;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: bold;
}
.how-to-order .c-num-list img {
  display: block;
  margin: auto;
}
.how-to-order .c-num-list img + .txt,
.how-to-order .c-num-list img + img {
  margin-top: 10px;
}
.how-to-order .c-num-list .txt {
  font-size: 13px;
  line-height: 1.53;
}
.how-to-order .c-num-list .txt .c-red {
  color: #F00000;
}
.how-to-order .c-num-list .txt .c-red.f-bold {
  font-weight: bold;
}
.how-to-order .c-num-list .txt + img {
  margin-top: 10px;
}
.how-to-order .c-num-list .link {
  color: #2CA0FF;
  -webkit-text-decoration-color: currentColor;
          text-decoration-color: currentColor;
  text-decoration: underline;
}
.how-to-order .c-num-list .attention {
  position: relative;
  color: #F00000;
  padding-left: 16px;
  font-size: 12px;
  margin-top: 10px;
  line-height: 1.66;
}
.how-to-order .c-num-list .attention::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.how-to-order .c-num-list .attention + .txt {
  margin-top: 10px;
}
.how-to-order .c-num-list .attention + img {
  margin-top: 10px;
}
.how-to-order .c-num-list .c-ttl04 {
  margin-top: 30px;
}
.how-to-order .line-order-section {
  padding-top: 40px;
  padding-bottom: 50px;
}
.how-to-order .line-order-section .download-btn {
  display: block;
  margin-top: 10px;
  margin-bottom: 20px;
}
.how-to-order .line-order-section .shop-btn {
  position: relative;
  font-size: 16px;
  padding: 8px 20px;
  border-radius: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background: #00C8BC;
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.05em;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 10px;
  border: 1px solid #00C8BC;
}
.how-to-order .line-order-section .shop-btn::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  margin: auto;
  background: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.how-to-order .line-order-section .shop-btn .arrow {
  width: 20px;
  height: 20px;
  margin: auto;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.how-to-order .line-order-section .shop-btn .arrow::after {
  content: "";
  -webkit-mask: url("../img/common/ico-arrow.svg");
          mask: url("../img/common/ico-arrow.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: cover;
          mask-size: cover;
  background: #00C8BC;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 3px;
  height: 6px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.how-to-order .line-order-section .shop-btn:nth-child(1)::before {
  -webkit-mask: url("../img/how-to-order/ico-shop01.svg");
          mask: url("../img/how-to-order/ico-shop01.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: cover;
          mask-size: cover;
  width: 38px;
  height: 30px;
}
.how-to-order .line-order-section .shop-btn:nth-child(2)::before {
  -webkit-mask: url("../img/how-to-order/ico-shop02.svg");
          mask: url("../img/how-to-order/ico-shop02.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: cover;
          mask-size: cover;
  width: 40px;
  height: 32px;
}
.how-to-order .line-order-section .line-btn {
  border-radius: 5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: #2EAC38;
  color: #fff;
  padding: 15px 20px;
  font-size: 18px;
  position: relative;
  font-weight: bold;
  border: 1px solid #2EAC38;
  margin-top: 20px;
}
.how-to-order .line-order-section .line-btn::before {
  content: "";
  -webkit-mask: url("../img/common/ico-line.svg");
          mask: url("../img/common/ico-line.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: cover;
          mask-size: cover;
  background: #fff;
  width: 30px;
  height: 29px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  margin: auto;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.how-to-order .line-order-section .line-btn .arrow {
  width: 20px;
  height: 20px;
  margin: auto;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.how-to-order .line-order-section .line-btn .arrow::after {
  content: "";
  -webkit-mask: url("../img/common/ico-arrow.svg");
          mask: url("../img/common/ico-arrow.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: cover;
          mask-size: cover;
  background: #2EAC38;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 3px;
  height: 6px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.how-to-order .gray-box {
  background: #f3f3f3;
  border-radius: 10px;
  padding: 20px 22px;
  margin-top: 10px;
}
.how-to-order .gray-box .box-ttl {
  font-weight: bold;
  text-align: center;
  font-size: 16px;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
}
.how-to-order .gray-box .icon-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 55px;
}
.how-to-order .gray-box .icon-flex .inn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.how-to-order .gray-box .icon-flex .inn-txt {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.how-to-order .gray-box .box-attention {
  font-size: 12px;
  letter-spacing: 0.05em;
  margin-top: 15px;
  text-align: center;
  line-height: 1.3;
}
.how-to-order .flow-section {
  padding: 30px 0 85px;
}
.how-to-order .flow-section {
  background-color: #f3f3f3;
}
.how-to-order .flow-section .white-box {
  background-color: #fff;
  padding: 13px 40px 14px 15px;
  border-radius: 5px;
  margin-top: 14px;
  margin-bottom: 10px;
}
.how-to-order .flow-section .red-box {
  background-color: #FFF2F4;
  margin-bottom: 10px;
  padding: 13px 40px 14px 15px;
  border-radius: 5px;
  font-size: 10px;
}
.how-to-order .flow-section .red-box h3 {
  padding-left: 17px;
  font-size: 12px;
  font-weight: bold;
  position: relative;
  color: #F00000;
}
.how-to-order .flow-section .red-box h3::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}
.how-to-order .flow-section .red-box + p {
  font-size: 10px;
}
.how-to-order .flow-section .alert {
  font-weight: bold;
  color: #F00000;
}
.how-to-order .flow-section .alert.line {
  text-decoration: underline;
}

/* -----------------------------------------------
* category detail Module
* category detailページ用
-------------------------------------------------- */
.category.detail .price-wrap:not(.ex-wrap .price-wrap):not(.acc-txt-wrap .price-wrap),
.category.detail .ex-table:not(.ex-wrap .ex-table),
.category.detail .point-wrap .img,
.category.detail .plan-wrap .card,
.category.detail .step-wrap .box,
.category.detail .c-size-wrap {
  margin-inline: auto;
  max-width: 600px;
}
.category.detail .detail-wrap {
  padding-bottom: 53px;
}
.category.detail .detail-section {
  overflow: hidden;
  padding-block: 30px;
}
.category.detail .detail-section .bg-contents03 {
  margin: 30px -20px;
  padding: 30px 20px;
}
.category.detail .detail-section .c-price-section {
  background: none;
}
.category.detail .link-txt {
  font-size: 13px;
  font-weight: bold;
  margin-top: 16px;
}
.category.detail .link-txt .link {
  color: #00C8BC;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.category.detail .txt-box {
  max-width: 600px;
  margin-inline: auto;
}
.category.detail .ico-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.category.detail .ico-list li {
  border: currentColor 1px solid;
  border-radius: 100px;
  background: #FFD0D0;
  font-size: 10px;
  font-weight: bold;
  line-height: 1;
  padding: 5px 10px;
}
.category.detail .ico-list li.orange {
  background: #fcc80e;
  -webkit-box-shadow: 0px 2px 0px 0px currentColor;
          box-shadow: 0px 2px 0px 0px currentColor;
}
.category.detail .tag-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(3px, 1.6vw, 8px);
}
.category.detail .tag-list dt {
  border: 1px solid #00C8BC;
  color: #00C8BC;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 50px;
}
.category.detail .tag-list dd {
  color: #333333;
  font-size: 14px;
  font-weight: 500;
  color: #999999;
}
.category.detail .name {
  font-size: 20px;
  font-weight: bold;
  margin-top: 10px;
}
.category.detail .name-top {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
}
.category.detail .summary-txt {
  margin-top: 20px;
}
.category.detail .summary-txt .txt {
  font-size: 13px;
  line-height: 1.8;
}
.category.detail .summary-txt .txt + .txt {
  margin-top: 8px;
}
.category.detail .summary-txt .note + .txt {
  margin-top: 20px;
}
.category.detail .note {
  font-weight: normal;
  line-height: 1.6;
  padding-left: 13px;
  position: relative;
  margin-top: 20px;
  font-size: 14px;
}
.category.detail .note + .note {
  margin-top: 8px;
}
.category.detail .note + .link-txt {
  margin-top: 8px;
}
.category.detail .note::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.category.detail .red {
  margin-top: 16px;
  line-height: 1.6;
  color: #F00000;
}
.category.detail .red + .red {
  margin-top: 4px;
}
.category.detail .price-wrap {
  margin-top: 20px;
  font-weight: bold;
}
.category.detail .price-wrap .inn:not(.vertical) {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.category.detail .price-wrap .inn.left {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.category.detail .price-wrap .inn.right {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.category.detail .price-wrap .inn.right.ico-arrow {
  position: relative;
}
.category.detail .price-wrap .inn.right.ico-arrow::before {
  content: "";
  background: url("../img/common/ico-arrow02.svg") no-repeat center/cover;
  width: 34px;
  height: 25px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -51px;
  margin: auto;
}
.category.detail .price-wrap .inn + .inn {
  margin-top: 4px;
}
.category.detail .price-wrap .inn + .link-txt {
  margin-top: 10px;
}
.category.detail .price-wrap .price {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3px;
}
.category.detail .price-wrap .price .rc {
  font-size: 30px;
}
.category.detail .price-wrap .price .unit {
  font-size: 11px;
}
.category.detail .price-wrap .price.discount {
  background-image: linear-gradient(transparent calc(0.5em + 5px), #F00000 0, #F00000 calc(0.5em + 6px), transparent 0, transparent calc(0.5em + 8px), #F00000 0, #F00000 calc(0.5em + 9px), transparent 0);
}
.category.detail .ex-table {
  margin-top: 20px;
  width: 100%;
}
.category.detail .ex-table tr {
  border-bottom: 1px solid #999999;
}
.category.detail .ex-table th,
.category.detail .ex-table td {
  font-weight: 500;
}
.category.detail .ex-table th {
  width: 29.5%;
  max-width: 150px;
  text-align: start;
  padding-top: 10px;
  vertical-align: top;
}
.category.detail .ex-table td {
  padding: 8.5px 0 8.5px 10px;
}
.category.detail .ex-table td .table-link {
  color: #0088FF;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.category.detail .point-wrap .img + .img {
  margin-top: 20px;
}
.category.detail .point-wrap .img.size01 img {
  max-width: calc(100% + 10px);
}
.category.detail .plan-wrap {
  background: -webkit-gradient(linear, left top, left bottom, from(#01C8BC), to(#34BECD));
  background: linear-gradient(#01C8BC 0%, #34BECD 100%);
  border-radius: 20px;
  margin: 20px -20px;
  padding: 30px 20px;
}
.category.detail .plan-wrap .c-ttl01 {
  color: #fff;
}
.category.detail .plan-wrap .c-ttl01 .en {
  color: #fff;
}
.category.detail .plan-wrap .splide-wrapper {
  overflow: hidden;
  padding: 0 20px;
}
.category.detail .plan-wrap .splide-wrapper:not(:has(.is-active)) {
  padding: 0 20px;
}
.category.detail .plan-wrap .c-item-card-splide {
  position: relative;
  overflow: visible;
}
.category.detail .plan-wrap .c-item-card-splide .splide__track {
  overflow: visible;
}
.category.detail .plan-wrap .c-item-card-splide .card {
  height: 100%;
}
.category.detail .plan-wrap .c-item-card-splide .price-wrap:nth-child(3) {
  margin-top: 32px;
}
.category.detail .plan-wrap .c-item-card-splide .price-wrap + .price-wrap {
  border-top: 1px solid #d9d9d9;
}
.category.detail .plan-wrap .splide-nav {
  position: absolute;
  bottom: 220px;
  right: 0;
  left: 0;
  margin: auto;
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 0 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.category.detail .plan-wrap .splide__arrows {
  position: static;
  display: contents;
}
.category.detail .plan-wrap .splide__arrows .splide__arrow--prev, .category.detail .plan-wrap .splide__arrows .splide__arrow--next {
  position: relative;
}
.category.detail .plan-wrap .splide__arrows .splide__arrow--prev svg, .category.detail .plan-wrap .splide__arrows .splide__arrow--next svg {
  display: none;
}
.category.detail .plan-wrap .splide__arrows .splide__arrow--prev::after, .category.detail .plan-wrap .splide__arrows .splide__arrow--next::after {
  content: "";
  background: #00C8BC;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-mask: url("../img/common/ico-arrow.svg");
          mask: url("../img/common/ico-arrow.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: cover;
          mask-size: cover;
  width: 6px;
  height: 8px;
  display: block;
}
.category.detail .plan-wrap .splide__arrows .splide__arrow--prev {
  grid-column: 1;
  grid-row: 1;
}
.category.detail .plan-wrap .splide__arrows .splide__arrow--next {
  grid-column: 3;
  grid-row: 1;
}
.category.detail .plan-wrap .splide__arrows .splide__arrow--next::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.category.detail .plan-wrap .splide__pagination {
  gap: 10px;
  grid-column: 2;
  position: static;
  margin-top: 0;
}
.category.detail .plan-wrap .splide__pagination > li {
  width: 5px;
  height: 5px;
  position: relative;
}
.category.detail .plan-wrap .splide__pagination > li button {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  background: #d9d9d9;
}
.category.detail .plan-wrap .splide__pagination > li button.is-active {
  background: #00C8BC;
}
.category.detail .plan-wrap .card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
}
.category.detail .plan-wrap .card .ttl {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
}
.category.detail .plan-wrap .card .img {
  margin-block: 10px;
}
.category.detail .plan-wrap .card .price-wrap.small + .small {
  border-top: #d9d9d9 1px solid;
  margin-top: 4px;
  padding-top: 4px;
}
.category.detail .plan-wrap .card .price-wrap.small .inn + .inn {
  margin-top: 0;
}
.category.detail .plan-wrap .card .price-wrap.small .txt {
  font-size: 12px;
}
.category.detail .plan-wrap .card .price-wrap.small .price .rc {
  font-size: 20px;
  line-height: 1.3;
}
.category.detail .plan-wrap .card .price-wrap.small .price .rc.strike {
  position: relative;
}
.category.detail .plan-wrap .card .price-wrap.small .price .rc.strike::before {
  content: "";
  background: url("../img/common/strikethrough.svg") no-repeat center/cover;
  width: 100%;
  height: 5px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  display: block;
}
.category.detail .plan-wrap .card .price-wrap.small .price .unit {
  font-size: 11px;
}
.category.detail .plan-wrap .card .price-wrap.total {
  border-top: #d9d9d9 1px solid;
  margin-top: 4px;
  padding-top: 4px;
}
.category.detail .plan-wrap .card .price-wrap.total .inn {
  --thickness: 8px;
  --bottom: 8px;
  background: linear-gradient(transparent calc(100% - var(--thickness) - var(--bottom) - 0.1px), rgba(0, 200, 188, 0.2) calc(100% - var(--thickness) - var(--bottom)), rgba(0, 200, 188, 0.2) calc(100% - var(--bottom) + 0.1px), transparent calc(100% - var(--bottom)));
  margin-left: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.category.detail .plan-wrap .card .price-wrap.discount {
  border-top: none;
}
.category.detail .plan-wrap .card .price-wrap.discount .inn {
  position: relative;
}
.category.detail .plan-wrap .card .price-wrap.discount .inn::before {
  content: "";
  background: url(../img/common/ico-discount.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  bottom: 10px;
  right: calc(100% + 8px);
  width: 35px;
  height: 26px;
}
.category.detail .step-wrap {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}
.category.detail .step-wrap .box {
  background: #fff;
  border-radius: 5px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 183, 173, 0.15);
          box-shadow: 0 2px 4px rgba(0, 183, 173, 0.15);
  padding: 15px;
}
.category.detail .step-wrap .img {
  margin-block: 10px;
}
.category.detail .step-wrap .img:last-child {
  margin-bottom: 0;
}
.category.detail .step-wrap .ttl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
.category.detail .step-wrap .ttl .num {
  color: #00C8BC;
  font-size: 10px;
  font-weight: bold;
  line-height: 1.4;
}
.category.detail .step-wrap .ttl .txt {
  font-size: 12px;
  font-weight: bold;
  line-height: 1.6666666667;
}
.category.detail .step-wrap .note {
  font-size: 10px;
}
.category.detail .c-btn01.c-primary {
  margin-top: 16px;
}
.category.detail .c-size-wrap {
  margin-top: 20px;
}
.category.detail .ex-table + .c-size-wrap,
.category.detail .step-wrap + .c-size-wrap {
  margin-top: 30px;
}
.category.detail.accessory .detail-section .product-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
.category.detail.accessory .detail-section .img-area {
  border-radius: 10px;
  overflow: hidden;
}
.category.detail.accessory .detail-section .img-area img {
  width: 100%;
}
.category.detail.accessory .detail-section .product-name {
  margin-top: 20px;
}
.category.detail.accessory .product-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.category.detail.accessory .product-box .img-area {
  background-color: #fff;
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  -webkit-box-shadow: 0 2px 4px rgba(0, 183, 173, 0.15);
          box-shadow: 0 2px 4px rgba(0, 183, 173, 0.15);
  border-radius: 10px;
}
.category.detail.accessory .product-box .img-area img {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.category.detail.accessory .product-box .product-name {
  font-size: 20px;
  font-weight: bold;
}
.category.detail.accessory .product-box .desc {
  margin-top: 20px;
  line-height: 1.8em;
}
.category.detail.accessory .product-box .domestic {
  position: absolute;
  left: 9px;
  top: 9px;
  text-align: center;
  line-height: 1;
  font-size: 10px;
  font-weight: bold;
  border: 1px solid #333;
  color: #333;
  border-radius: 50px;
  background: #FFD0D0;
  min-width: 60px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 10px;
  z-index: 1;
}
.category.detail.accessory .c-accessory-section {
  padding-block: 0;
}
.category.detail.accessory .c-accessory-section .acc-txt-wrap {
  display: none;
}
.category.detail.accessory .intro-section .intro-wrap {
  padding-block: 30px;
}
.category.detail.accessory .intro-section .intro-wrap + .intro-wrap {
  border-top: 1px solid #d9d9d9;
}
.category.detail.accessory .intro-section .main-product .price {
  margin-top: 20px;
  font-weight: bold;
  font-size: 14px;
}
.category.detail.accessory .intro-section .main-product .price.tac {
  text-align: center;
}
.category.detail.accessory .intro-section .main-product .price .num {
  font-size: 20px;
}
.category.detail.accessory .intro-section .main-product .price .yen {
  font-size: 11px;
}
.category.detail.accessory .intro-section .main-product .desc {
  font-size: 11px;
  margin-top: 10px;
}
.category.detail.accessory .intro-section .main-product .img-area {
  border-radius: 10px;
  width: 100%;
  overflow: hidden;
}
.category.detail.accessory .intro-section .main-product .img-area img {
  width: 100%;
}
.category.detail.accessory .intro-section .acc-cont .name {
  font-size: 14px;
}
.category.detail.accessory .acc-list {
  margin-top: 40px;
}
.category.detail .c-product-wrap + .point-wrap {
  padding-block: 30px;
}
.category.detail .c-size-wrap + .c-product-list {
  padding-block: 30px;
}
.category.detail .c-accessory-section .acc-list + .c-product-btn-wrap,
.category.detail .c-pants + .c-product-btn-wrap,
.category.detail .c-product-list + .c-product-btn-wrap,
.category.detail .c-size-wrap + .c-product-btn-wrap {
  margin-top: 30px;
}
.category.detail .detail-wrap .detail-section:last-child,
.category.detail .detail-wrap .c-accessory-section:last-child {
  padding-bottom: 65px;
}

.print-font .print-section {
  padding-top: 30px;
  background: #F2F2F7;
  padding-bottom: 30px;
}
.print-font .print-section .print-ttl-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 15px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.print-font .print-section .print-ttl-area .ttl {
  font-weight: bold;
  font-size: 18px;
}
.print-font .print-section .print-ttl-area .tag-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}
.print-font .print-section .print-ttl-area .tag {
  display: inline-block;
  background: #FFD0D0;
  border: 1px solid #333;
  border-radius: 50px;
  font-weight: bold;
  font-size: 10px;
  line-height: 1;
  padding: 4px 9px;
}
.print-font .print-section .print-list {
  margin-bottom: 22px;
}
.print-font .print-section .print-list > li + li {
  border-top: 1px solid #d9d9d9;
  margin-top: 20px;
  padding-top: 16px;
}
.print-font .print-section .content-wrapper {
  display: grid;
  gap: 15px;
}
.print-font .print-section .content-wrapper .white-box {
  background: #fff;
  border-radius: 20px;
  padding: 25px 0;
}
.print-font .print-section .content-wrapper .white-box img {
  max-width: 214px;
  display: block;
  margin: auto;
  max-height: 150px;
}
.print-font .print-section .content-wrapper.grid-2 {
  grid-template-columns: 1fr 1fr;
}
.print-font .print-section .content-wrapper.grid-2 .white-box {
  padding: 0;
  border-radius: 5px;
}
.print-font .print-section .content-wrapper.grid-2 img {
  max-width: 100%;
  max-height: 100%;
}
.print-font .print-section .content-wrapper + .content-wrapper {
  margin-top: 20px;
}
.print-font .print-section .content-wrapper .print-ttl {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  margin-top: 8px;
}
.print-font .print-section .content-wrapper .price-list {
  margin-top: 3px;
  margin-bottom: 20px;
}
.print-font .print-section .content-wrapper .price-list > li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.print-font .print-section .content-wrapper .price-list .ttl {
  font-weight: 500;
  font-size: 12px;
  line-height: 1.75;
}
.print-font .print-section .content-wrapper .price-list .price {
  font-size: 16px;
  font-weight: bold;
  font-family: "Poppins", sans-serif;
  line-height: 1.4;
}
.print-font .print-section .content-wrapper .price-list .yen {
  font-size: 11px;
  font-weight: bold;
}
.print-font .print-section .print-txt {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 17px;
}
.print-font .print-section .attention {
  position: relative;
  font-size: 10px;
  line-height: 1.6;
  padding-left: 16px;
}
.print-font .print-section .attention::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.print-font .print-section .color-ttl {
  font-weight: bold;
  text-align: center;
  font-size: 18px;
  margin-bottom: 18px;
}
.print-font .print-section .color-list {
  display: grid;
  grid-template-columns: repeat(7, minmax(auto, 1fr));
  gap: 10px 0;
  margin-bottom: 16px;
}
.print-font .print-section .color-list > li {
  font-size: 10px;
  text-align: center;
  font-weight: bold;
  line-height: 1.8;
}
.print-font .print-section .color-list .icon {
  border: 2px solid #d9d9d9;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: block;
  margin: auto;
}
.print-font .print-section .color-list .icon.white {
  background: #fff;
}
.print-font .print-section .color-list .icon.black {
  background: #000;
}
.print-font .print-section .color-list .icon.red {
  background: #FF2C2C;
}
.print-font .print-section .color-list .icon.blue {
  background: #0041CE;
}
.print-font .print-section .color-list .icon.yellow {
  background: #FFCC00;
}
.print-font .print-section .color-list .icon.d-blue {
  background: #001E69;
}
.print-font .print-section .color-list .icon.orange {
  background: #FF6A00;
}
.print-font .print-section .color-list .icon.green {
  background: #52CC2D;
}
.print-font .print-section .color-list .icon.l-blue {
  background: #65CCFF;
}
.print-font .print-section .color-list .icon.pink {
  background: #FF8686;
}
.print-font .print-section .color-list .icon.purple {
  background: #B869ED;
}
.print-font .print-section .color-list .icon.gray {
  background: #A6A6A6;
}
.print-font .print-section .color-list .icon.gold {
  background: #CEAB69;
}
.print-font .print-section .color-list .icon.silver {
  background: #E8E8E8;
}
.print-font .print-section .glitter-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px 10px;
  max-width: 230px;
  margin: auto;
}
.print-font .print-section .glitter-list > li {
  font-size: 10px;
  line-height: 1.8;
  font-weight: bold;
  text-align: center;
}
.print-font .print-section .glitter-list .icon {
  width: 50px;
  height: 50px;
  display: block;
  margin: auto;
}
.print-font .font-section {
  padding-top: 30px;
  padding-bottom: 130px;
}
.print-font .font-section .font-list {
  max-width: 500px;
  margin: auto;
}
.print-font .font-section .font-list > li + li {
  margin-top: 27px;
}
.print-font .font-section .font-list .ttl {
  font-weight: bold;
  font-size: 18px;
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 2px;
  margin-bottom: 20px;
}
.print-font .font-section .font-list .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 15px;
}
.print-font .font-section .font-list .item + .item {
  margin-top: 15px;
}
.print-font .font-section .font-list .item img:not(.item-ttl) {
  width: 81%;
}
.print-font .font-section .attention-list {
  margin-top: 20px;
}
.print-font .font-section .attention-list > li {
  position: relative;
  line-height: 1.6;
  font-size: 10px;
  padding-left: 15px;
}
.print-font .font-section .attention-list > li::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.print-font .font-section .gray-box {
  border-radius: 10px;
  background: #F2F2F7;
  margin-top: 30px;
  padding: 10px 10px;
}
.print-font .font-section .gray-box .txt {
  letter-spacing: -0.06em;
}
.print-font .font-section .l-green-box {
  background: #E2FAF9;
  border-radius: 10px;
  margin-top: 20px;
  padding: 10px;
}
.print-font .font-section .l-green-box .txt {
  font-size: 12px;
  line-height: 1.8;
}

.emblem-logo .c-anchor-section .txt {
  margin-bottom: 25px;
  font-size: 13px;
  line-height: 1.8;
}
.emblem-logo .c-anchor-section .txt + img {
  margin-left: auto;
  max-width: 90%;
  display: block;
}
.emblem-logo .c-anchor-section .alert-area {
  background: #FF516E;
  border-radius: 5px;
  text-align: center;
  padding: 5px 0;
  margin-top: 12px;
}
.emblem-logo .c-anchor-section .alert-area .alert-txt {
  font-size: 12px;
  color: #fff;
  text-align: center;
  position: relative;
  padding-left: 23px;
  display: inline-block;
  line-height: 1.4;
  font-weight: bold;
}
.emblem-logo .c-anchor-section .alert-area .alert-txt::before {
  content: "";
  background: url("../img/common/ico-alert.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
}
.emblem-logo .c-anchor-section .f-red {
  text-align: center;
  color: #F00000;
  font-size: 12px;
  line-height: 1.4;
  margin-top: 4px;
}
.emblem-logo .c-anchor-section .attention {
  position: relative;
  font-size: 10px;
  line-height: 1.6;
  padding-left: 14px;
  margin-top: 22px;
  margin-bottom: 25px;
}
.emblem-logo .c-anchor-section .attention::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.emblem-logo .c-alert-area {
  background: #FF516E;
  color: #fff;
  font-weight: bold;
  position: relative;
  margin: auto;
  text-align: center;
  border-radius: 5px;
  padding: 14px 0px;
  cursor: pointer;
  border: 1px solid #FF516E;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.emblem-logo .c-alert-area.is-active .arrow::before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.emblem-logo .c-alert-area .alert-txt {
  position: relative;
  font-size: 12px;
  line-height: 1.4;
  display: inline-block;
  margin-bottom: 0;
  width: calc(100% - 35px);
}
.emblem-logo .c-alert-area .alert-txt::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 10px;
  -webkit-mask: url("../img/common/ico-alert.svg");
          mask: url("../img/common/ico-alert.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: cover;
          mask-size: cover;
  width: 20px;
  height: 20px;
  background: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.emblem-logo .c-alert-area .arrow {
  border-radius: 50%;
  width: 20px;
  height: 20px;
  background: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: min(27px, 7.2vw);
  display: inline-block;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.emblem-logo .c-alert-area .arrow::before {
  content: "";
  -webkit-mask: url("../img/common/ico-arrow.svg");
          mask: url("../img/common/ico-arrow.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: cover;
          mask-size: cover;
  width: 5px;
  height: 6px;
  background: #FF516E;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  margin: auto;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.emblem-logo .c-price-area .num {
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-weight: bold;
}
.emblem-logo .c-price-area .yen {
  font-weight: bold;
  font-size: 11px;
  vertical-align: super;
}
.emblem-logo .red-box {
  border-radius: 5px;
  background: #FFF2F4;
  padding: 20px;
  display: none;
  margin-top: 10px;
}
.emblem-logo .red-box .txt {
  font-size: 13px;
  margin-bottom: 10px;
  line-height: 1.8;
}
.emblem-logo .red-box .txt.f-red {
  color: #F00000;
}
.emblem-logo .free-emblem-section {
  background: #F2F2F7;
  padding-top: 30px;
}
.emblem-logo .free-emblem-section .txt {
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 1.8;
}
.emblem-logo .free-emblem-section .txt.f-red {
  color: #F00000;
}
.emblem-logo .free-emblem-section img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.emblem-logo .free-emblem-section .c-alert-area {
  margin-top: 20px;
}
.emblem-logo .custom-emblem-section {
  padding-top: 30px;
  background: #F2F2F7;
}
.emblem-logo .custom-emblem-section .txt {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 10px;
}
.emblem-logo .custom-emblem-section img {
  display: block;
  margin: auto;
}
.emblem-logo .custom-emblem-section .ttl {
  font-weight: bold;
  line-height: 1.8;
  font-size: 14px;
  text-align: center;
  margin-bottom: 16px;
}
.emblem-logo .custom-emblem-section .c-flow-list {
  margin-bottom: 25px;
}
.emblem-logo .custom-emblem-section .c-flow-list + .ttl {
  margin-bottom: 7px;
}
.emblem-logo .custom-emblem-section .flex-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 10px;
  gap: 10px;
}
.emblem-logo .custom-emblem-section .flex-box img {
  max-width: 80px;
  margin: 0;
}
.emblem-logo .custom-emblem-section .flex-box .flex-txt {
  font-size: 8px;
}
.emblem-logo .original-emblem-section {
  padding-top: 20px;
  background: #F2F2F7;
}
.emblem-logo .original-emblem-section .attention-area {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 13px;
  line-height: 1.8;
  gap: 10px;
  margin-bottom: 3px;
}
.emblem-logo .original-emblem-section .ex-txt {
  position: relative;
  font-size: 10px;
  line-height: 1.6;
  padding-left: 15px;
}
.emblem-logo .original-emblem-section .ex-txt + .ex-txt {
  margin-top: 5px;
}
.emblem-logo .original-emblem-section .ex-txt + .txt {
  margin-top: 10px;
}
.emblem-logo .original-emblem-section .ex-txt::before {
  content: "例)";
  position: absolute;
  top: 0;
  left: 0;
}
.emblem-logo .original-emblem-section .txt {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 10px;
}
.emblem-logo .original-emblem-section .c-flow-list .content-area .img-box.white {
  background: #fff;
}
.emblem-logo .original-emblem-section .c-flow-list .content-area .img-box.white img {
  max-width: 88px;
}
.emblem-logo .original-emblem-section .c-flow-list .content-area .img-box.none {
  padding: 0;
}
.emblem-logo .original-emblem-section .c-flow-list .content-area .img-box.none img {
  max-width: 100%;
  border-radius: 10px;
}
.emblem-logo .original-emblem-section .c-flow-list .content-area .img-box img {
  max-width: 116px;
}
.emblem-logo .free-logo-section {
  padding-top: 30px;
  background: #F2F2F7;
  padding-bottom: 113px;
}
.emblem-logo .free-logo-section .txt {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 10px;
}
.emblem-logo .free-logo-section img {
  margin: auto;
  display: block;
}
.emblem-logo .free-logo-section .attention {
  margin-bottom: 10px;
  position: relative;
  font-size: 10px;
  line-height: 1.6;
  padding-left: 16px;
}
.emblem-logo .free-logo-section .attention.red {
  color: #F00000;
}
.emblem-logo .free-logo-section .attention::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.emblem-logo .free-logo-section .attention + img {
  margin-bottom: 10px;
}
.emblem-logo .free-logo-section .c-alert-area {
  margin: 20px 0 0px;
  cursor: pointer;
}
.emblem-logo .free-logo-section .c-alert-area .alert-txt::before {
  left: max(-3px, -0.8vw);
}
.emblem-logo .free-logo-section .c-alert-area .sp-small {
  display: none;
}
.emblem-logo .free-logo-section .c-alert-area .arrow {
  right: min(17px, 4.5333333333vw);
}

.category-top {
  background: #f9f9f9;
  padding-bottom: 50px;
}
.category-top .detail-section .attention {
  position: relative;
  font-size: 12px;
  line-height: 1.8;
  padding-left: 16px;
  margin-top: 8px;
}
.category-top .detail-section .attention::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.category-top .plan-wrap + .inner-block .c-btn01 {
  margin: 20px auto;
}
.category-top .plan-wrap + .inner-block .banner {
  margin-bottom: 20px;
  display: block;
}
.category-top .plan-wrap + .inner-block .banner img {
  display: block;
  margin: auto;
  border-radius: 5px;
}
.category-top .line-contact-txt {
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.5;
  margin: 30px 0 0px;
}

.category-top.detail .plan-wrap {
  margin: 30px -20px;
}
.category-top .detail-section {
  padding-bottom: 0;
  -webkit-padding-after: 0 !important;
          padding-block-end: 0 !important;
}
.category-top .c-accessory-section .acc-txt-wrap {
  border-top: 1px solid #d9d9d9;
  padding-top: 20px;
}
.category-top .c-accessory-section .c-product-box {
  margin-top: 20px;
}
.category-top .c-accessory-section .c-product-box .tax {
  font-weight: bold;
}

.aclassuniform.category .plan-wrap .splide-nav {
  bottom: 165px;
}
.customuniform .detail-section .price-wrap {
  margin-top: 0;
}
.customuniform .point-section {
  background: -webkit-gradient(linear, left top, left bottom, from(#01C8BC), to(#34BECD));
  background: linear-gradient(#01C8BC 0%, #34BECD 100%);
  border-radius: 20px;
  padding: 30px 20px;
  margin: 30px 0 0;
  color: #fff;
}
.customuniform .point-section .inner-block {
  padding: 0;
}
.customuniform .point-section .circle-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.customuniform .point-section .circle-list > li {
  text-align: center;
}
.customuniform .point-section .circle-list .circle {
  border-radius: 50%;
  background: #fff;
  width: 90px;
  height: 90px;
  position: relative;
  margin: auto;
}
.customuniform .point-section .circle-list .circle img {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.customuniform .point-section .circle-list .txt {
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 12px;
  line-height: 1.2;
  display: block;
  margin-top: 5px;
}
.customuniform .point-section .banner {
  display: block;
  margin: 10px auto 24px;
}
.customuniform .point-section .banner a {
  display: block;
}
.customuniform .point-section .banner img {
  display: block;
  margin: auto;
}
.customuniform .point-section .worry-ttl {
  font-weight: bold;
  font-size: 14px;
  text-align: center;
  margin-bottom: 10px;
}
.customuniform .point-section .worry-ttl .dot-deco {
  position: relative;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
.customuniform .point-section .worry-ttl .dot-deco::before {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  top: -5px;
  background: #fff;
  width: 4px;
  height: 4px;
  border-radius: 50%;
}
.customuniform .point-section .white-box {
  background: #fff;
  border-radius: 5px;
  color: #333;
  padding: 16px;
}
.customuniform .point-section .white-box + img {
  display: block;
  margin: 5px auto 23px;
}
.customuniform .point-section .light-ttl {
  font-weight: bold;
  text-align: center;
  position: relative;
  padding-top: 10px;
  line-height: 1.4;
  margin-bottom: 10px;
}
.customuniform .point-section .light-ttl::before {
  content: "";
  background: url("../img/common/ico-light.svg") no-repeat center/cover;
  width: 16px;
  height: 25px;
  position: absolute;
  top: -13px;
  right: 0;
  left: 0;
  margin: auto;
}
.customuniform .point-section .light-ttl .strong {
  font-size: 20px;
  font-weight: bold;
}
.customuniform .lineup-block {
  background: #F2F2F7;
  padding-top: 30px;
  padding-bottom: 30px;
}
.customuniform .lineup-block .lineup-box {
  background: #fff;
  border-radius: 5px;
  padding: 5px;
  display: block;
  position: relative;
}
.customuniform .lineup-block .lineup-box + .lineup-box {
  margin-top: 22px;
}
.customuniform .lineup-block .lineup-box .inn {
  border-radius: 5px;
  background: #E2FAF9;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
  position: relative;
  overflow: hidden;
}
.customuniform .lineup-block .lineup-box .ttl {
  font-weight: bold;
  line-height: 1.5;
  font-size: 16px;
}
.customuniform .lineup-block .lineup-box img {
  display: block;
  max-width: 95px;
  margin-left: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 25px;
  margin: auto;
  margin-right: 0;
}
.customuniform .lineup-block .lineup-box .num {
  color: #00C8BC;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.1;
  font-family: "Poppins", sans-serif;
  display: inline-block;
  margin-right: -3px;
}
.customuniform .lineup-block .lineup-box .yen {
  font-size: 12px;
  font-weight: 900;
  line-height: 1.5;
  color: #00C8BC;
}
.customuniform .set-block {
  padding-top: 30px;
  padding-bottom: 30px;
}
.customuniform .set-block .c-ttl04 {
  color: #00C8BC;
  font-size: 16px;
}
.customuniform .set-block .c-product-box .ttl {
  text-align: center;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.2;
  margin-top: 20px;
}
.customuniform .feature-block {
  background: #fff;
  padding-top: 30px;
  padding-bottom: 30px;
}
.customuniform .feature-block .c-ttl04 {
  color: #00C8BC;
  font-size: 15px;
}
.customuniform .feature-block .txt {
  font-size: 13px;
  line-height: 1.8;
  margin-top: 10px;
}
.customuniform .feature-block .txt + .c-ttl04 {
  margin-top: 30px;
}
.customuniform .feature-block .alert-area {
  background: #FF516E;
  border-radius: 5px;
  color: #fff;
  font-size: 12px;
  line-height: 1.4;
  padding: 5px;
  position: relative;
  font-weight: bold;
  margin: 0 25px 30px;
}
.customuniform .feature-block .alert-area .alert-txt {
  position: relative;
  padding-left: 30px;
  text-align: left;
  display: inline-block;
}
.customuniform .feature-block .alert-area .alert-txt::before {
  content: "";
  background: url("../img/common/ico-alert.svg") no-repeat center/cover;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  left: 0;
}
.customuniform .feature-block img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.customuniform .feature-block .ms-20 {
  max-width: 85%;
  display: block;
}
.customuniform .feature-block .logo {
  display: block;
  max-width: 117px;
  margin-bottom: 20px;
}
.customuniform .feature-block .step-list {
  margin-top: 20px;
}
.customuniform .feature-block .step-list > li {
  text-align: center;
}
.customuniform .feature-block .step-list > li + li {
  border-top: 1px solid #d9d9d9;
  margin-top: 28px;
  padding-top: 20px;
}
.customuniform .feature-block .step-list .step {
  color: #00C8BC;
  font-weight: bold;
  font-size: 13px;
  line-height: 1.53;
}
.customuniform .feature-block .step-list .ttl {
  font-size: 12px;
  font-weight: bold;
  line-height: 1.66;
  display: block;
  margin-top: -2px;
}
.customuniform .feature-block .img-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 16px;
  margin-bottom: 8px;
}
.customuniform .feature-block .img-list img {
  width: 82px;
  height: 82px;
}
.customuniform .feature-block .img-list .txt {
  font-size: 10px;
  line-height: 1.2;
  margin-top: 2px;
  display: inline-block;
}
.customuniform .feature-block .c-dots-list {
  text-align: left;
  font-size: 13px;
}
.customuniform .feature-block .attention {
  color: #F00000;
  font-size: 13px;
  text-align: left;
  padding-left: 25px;
  position: relative;
  line-height: 1.2;
  margin-top: 8px;
}
.customuniform .feature-block .attention::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 7px;
}
.customuniform .feature-block .desc {
  text-align: left;
}
.customuniform .size-block {
  background: #E2FAF9;
  padding-top: 40px;
  padding-bottom: 40px;
  overflow: hidden;
}
.customuniform .size-block .c-size-wrap {
  overflow-x: auto;
  white-space: nowrap;
  margin-right: -20px;
  padding-right: 20px;
}
.customuniform .size-block .c-size-wrap .c-size-table {
  min-width: 571px;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}
.customuniform .qa-section {
  background-color: #E2FAF9;
  padding: 30px 0 30px;
}
.customuniform .qa-section .qa-box + .qa-box {
  margin-top: 20px;
}
.customuniform .qa-section .qa-box .box {
  background: #fff;
  border-radius: 5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  padding: 15px 20px 15px 44px;
  min-height: 54px;
}
.customuniform .qa-section .qa-box .box::before {
  content: "";
  border-radius: 50%;
  border: 1px solid #00C8BC;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  line-height: 22px;
  width: 24px;
  text-align: center;
  position: absolute;
  top: 15px;
  left: 10px;
}
.customuniform .qa-section .qa-box .question {
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out color;
  transition: 0.3s ease-in-out color;
}
.customuniform .qa-section .qa-box .question::before {
  content: "Q";
  background: #00C8BC;
  color: #fff;
}
.customuniform .qa-section .qa-box .question::after {
  content: "";
  background: #00C8BC;
  -webkit-mask: url(../img/common/ico-arrow.svg);
          mask: url(../img/common/ico-arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  position: absolute;
  top: 25px;
  right: 10px;
  width: 8px;
  height: 9px;
}
.customuniform .qa-section .qa-box .question.is-open::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.customuniform .qa-section .qa-box .answer {
  display: none;
  margin-top: 10px;
  padding-right: 26px;
}
.customuniform .qa-section .qa-box .answer::before {
  content: "A";
  color: #00C8BC;
}
.customuniform .qa-section .qa-box .txt {
  font-size: 12px;
  line-height: 1.4;
}
.customuniform .qa-section .qa-box .txt + .txt {
  margin-top: 1.4em;
}
.customuniform .qa-section .c-btn01.c-primary {
  margin-top: 30px;
}
.customuniform .c-voice-section {
  background: #fff;
}
.customuniform .flow-section {
  background: #f9f9f9;
  padding-top: 40px;
  padding-bottom: 40px;
}
.customuniform .flow-section .c-flow-list .txt {
  font-size: 10px;
  line-height: 1.6;
}
.customuniform .flow-section .c-flow-list .step-area {
  -webkit-writing-mode: initial;
      -ms-writing-mode: initial;
          writing-mode: initial;
  text-align: left;
  position: static;
  height: auto;
  padding-left: 0;
}
.customuniform .flow-section .c-flow-list .step-area::before {
  display: none;
}
.customuniform .flow-section .c-flow-list .c-num-list {
  counter-reset: num;
  margin-top: 12px;
}
.customuniform .flow-section .c-flow-list .c-num-list .list-txt {
  counter-increment: num 1;
  font-size: 10px;
  line-height: 1.6;
  position: relative;
  padding-left: 15px;
}
.customuniform .flow-section .c-flow-list .c-num-list .list-txt::before {
  content: counter(num) ".";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 10px;
  line-height: 1.4;
  color: #00C8BC;
  font-weight: 600;
}
.customuniform .flow-section .c-flow-list .c-num-list .attention {
  margin-top: 2px;
}
.customuniform .flow-section .c-flow-list .attention {
  position: relative;
  padding-left: 10px;
  text-align: left;
  margin-top: 0;
}
.customuniform .flow-section .c-flow-list .attention::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.customuniform .flow-section .c-flow-list .attention a {
  text-decoration: underline;
  -webkit-text-decoration-color: currentColor;
          text-decoration-color: currentColor;
}
.customuniform .flow-section .c-flow-list .txt-area .txt {
  font-size: 12px;
}
.customuniform .bottom-banner {
  padding: 30px 20px 30px;
}
.customuniform .bottom-banner a {
  display: block;
  margin: auto;
}
.customuniform .bottom-banner a img {
  display: block;
  margin: auto;
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 14px;
  }
  body {
    position: relative;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
  }
  input,
  select,
  textarea {
    font-size: 16px !important;
  }
  #wrapper {
    min-width: 320px;
  }
  .inner-block {
    padding-left: 20px;
    padding-right: 20px;
  }
  .pc {
    display: none !important;
  }
  .c-header .menu-list > li > div, .c-header .menu-list > li a {
    padding: 0;
  }
  .c-header .menu-list > li .item {
    position: relative;
    padding: 20px 30px 20px 20px;
  }
  .c-header .menu-list .child-menu-list-wrap {
    display: none;
  }
  .c-header .menu-list .child-menu-list {
    display: block;
    -webkit-box-align: start;
    -webkit-align-items: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .c-flow-list .list-item.green {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .c-price-section .price-list > li .txt-wrap .txt {
    font-size: 12px;
  }
  .c-price-section .price-list > li .txt-wrap .price {
    font-size: 12px;
  }
  .c-accessory-section .acc-txt-wrap .lead .price .unit {
    font-size: 11px;
  }
  .c-accessory-section .acc-txt-wrap .size-box .txt {
    font-size: 12px;
  }
  .c-accessory-section .acc-txt-wrap .size-box .size-list li {
    font-size: 11px;
  }
  .c-accessory-section .acc-list > li .name {
    font-size: 12px;
  }
  .c-accessory-section .inn {
    margin-inline: auto;
  }
  .c-accessory-section .inn .acc-cont + .acc-cont {
    margin-top: 20px;
  }
  .c-product-splide {
    padding-bottom: 18px;
    max-width: 500px;
    margin: auto;
  }
  .not-found {
    padding-block: 30px 100px;
  }
  .not-found .center {
    font-size: 16px;
  }
  .c-contact input[type=text],
  .c-contact input[type=tel],
  .c-contact input[type=email],
  .c-contact input[type=date],
  .c-contact textarea,
  .c-contact select {
    padding: 12px 10px;
  }
  .c-contact .radio-group, .c-contact .checkbox-group {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-contact .radio-group .wpcf7-radio, .c-contact .radio-group .wpcf7-checkbox, .c-contact .checkbox-group .wpcf7-radio, .c-contact .checkbox-group .wpcf7-checkbox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .home .pickup-section .c-ttl01 {
    margin-bottom: 15px;
  }
  .home .item-section .c-ttl01 {
    margin-bottom: 16px;
  }
  .home .item-section .product-list .img-area img {
    max-width: 130px;
  }
  .home .case-section .c-ttl01 {
    margin-bottom: 13px;
  }
  .home .flow-section .c-ttl01 {
    margin-bottom: 17px;
  }
  .home .popular-section .c-ttl01 {
    margin-bottom: 17px;
  }
  .home .popular-section .list-item .img-area {
    max-width: 113px;
  }
  .blog-article-block .ttl-wrap .date {
    font-size: 13px;
  }
  .blog-article-block .ttl-wrap .ttl {
    font-size: 24px;
    padding-bottom: 12px;
  }
  .blog-article-block .ttl-wrap .tag {
    padding: 4px 15px;
  }
  .blog-article-block .thumb {
    margin: 25px 0 30px;
  }
  .blog-article-block .article-content {
    padding-bottom: 30px;
  }
  .blog-article-block .article-content h2 {
    font-size: 22px;
  }
  .blog-article-block .article-content h3 {
    font-size: 18px;
  }
  .blog-article-block .article-content h4 {
    font-size: 16px;
  }
  .blog-article-block .article-content h5 {
    font-size: 14px;
    padding: 8px 10px;
  }
  .blog-article-block .article-content ul li + li,
  .blog-article-block .article-content ol li + li {
    margin-top: 10px;
  }
  .blog-article-block .article-content ul li::before {
    width: 5px;
    height: 5px;
    top: 7px;
  }
  .blog-article-block .article-content .wp-block-button__link {
    display: block;
    text-align: center;
  }
  .blog-article-block .article-content .wp-block-columns {
    margin-top: 20px;
  }
  .blog-article-block .article-content .wp-block-columns .wp-block-column + .wp-block-column {
    margin-top: 25px;
  }
  .blog-article-block .article-content .wp-block-columns .wp-block-image {
    margin: 0;
  }
  .blog-article-block .article-content .wp-block-columns.sp-col2 .wp-block-column {
    width: calc((100% - 20px) / 2);
    margin: 0;
  }
  .blog-article-block .article-content .wp-block-columns.sp-col2 .wp-block-column:nth-child(even) {
    margin-left: 20px;
  }
  .blog-article-block .article-content .wp-block-columns.sp-col2 .wp-block-column:nth-child(n+3) {
    margin-top: 20px;
  }
  .blog-article-block .article-content .wp-block-media-text .wp-block-media-text__content {
    margin-top: 15px;
  }
  .blog-article-block .article-content .sp-scroll {
    overflow-x: scroll;
  }
  .blog-article-block .article-content .sp-scroll table {
    width: 100%;
    min-width: 600px;
  }
  .blog-article-block .article-content .wp-block-table.sp-block {
    width: 100%;
  }
  .blog-article-block .article-content .wp-block-table.sp-block th, .blog-article-block .article-content .wp-block-table.sp-block td {
    display: block;
  }
  .blog-article-block .article-content .wp-block-table.sp-block td {
    border-top: none;
  }
  .blog-article-block .article-content table th,
  .blog-article-block .article-content table td {
    padding: 10px;
  }
  .blog-article-block .article-content table.sp-block {
    width: 100%;
  }
  .blog-article-block .article-content table.sp-block th, .blog-article-block .article-content table.sp-block td {
    display: block;
  }
  .blog-article-block .article-content table.sp-block td {
    border-top: none;
  }
  .blog-article-block .article-content .iframe-wrap.twitter iframe {
    width: 100% !important;
    height: 400px !important;
  }
  .blog-article-block .article-content .iframe-wrap.youtube {
    width: 100% !important;
    height: 0 !important;
    padding-top: 56% !important;
  }
  .blog-article-block .article-content .iframe-wrap.youtube iframe {
    position: absolute;
    top: 0;
    left: 0;
    height: 100% !important;
  }
  .blog-article-block .article-content * + h2,
  .blog-article-block .article-content * + h3,
  .blog-article-block .article-content * + h4,
  .blog-article-block .article-content * + h5,
  .blog-article-block .article-content * + ul,
  .blog-article-block .article-content * + ol,
  .blog-article-block .article-content * + .wp-block-buttons {
    margin-top: 20px;
  }
  .blog-article-block .article-content h2 {
    margin-bottom: 20px;
  }
  .contact .c-contact .btn-wrap {
    gap: 5px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact .complete-wrap .bold {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .article-section .related-section .c-ttl02 {
    margin-bottom: 10px;
  }
  .c-article-body ul:not(#ez-toc-container ul).dot-list > li,
  .c-article-body ol.dot-list > li {
    font-size: 10px;
    margin-bottom: 0;
    padding-left: 10px;
  }
  .c-article-body ul:not(#ez-toc-container ul).dot-list > li::before,
  .c-article-body ol.dot-list > li::before {
    top: 6px;
  }
  .category .rec-section .rec-list > li {
    max-width: 500px;
    margin: auto;
  }
  .category .category-area .banner-wrap {
    padding-top: 30px;
  }
  .category .category-area .banner-wrap .banner img {
    max-width: 500px;
  }
  .category .category-area .banner-wrap .ranking-wrap .c-product-list .box .c-product-box .img-area .domestic {
    width: 50px;
    top: 5px;
    left: 5px;
  }
  .category .category-area .banner-wrap .ranking-wrap .c-product-list .box .c-product-box .img-area .c-btn-arrow {
    width: 19px;
    height: 19px;
    border-radius: 12px 0 5px 0px;
  }
  .category .category-area .banner-wrap .ranking-wrap .c-product-list .box .c-product-box .img-area .c-btn-arrow::after {
    width: 4px;
    height: 5px;
  }
  .category .category-area .banner-wrap .ranking-wrap .c-product-list .box .c-product-box .price-area .price {
    font-size: 18.7px;
  }
  .category .category-area .banner-wrap .ranking-wrap .c-product-list .box .c-product-box .price-area .unit .tax,
  .category .category-area .banner-wrap .ranking-wrap .c-product-list .box .c-product-box .price-area .unit .yen {
    font-size: 6.8px;
  }
  .nav-area {
    max-width: 500px;
    margin: auto;
  }
  .nav-content-wrap {
    padding-inline: 0;
    grid-template-columns: auto;
    grid-template-rows: repeat(2, auto);
    padding-bottom: 100px;
    gap: 30px;
  }
  .nav-content-wrap.result {
    padding-inline: 0;
    padding-top: 30px;
  }
  .nav-content-wrap .side-box {
    background: #F6FFFF;
    padding-inline: 20px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .nav-content-wrap .cont-wrap {
    padding-inline: 20px;
  }
  .category.detail .ico-list {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .category.detail .name-top {
    text-align: center;
  }
  .category.detail .note {
    font-size: 12px;
  }
  .category.detail .red {
    font-size: 13px;
  }
  .category.detail .ex-table th,
  .category.detail .ex-table td {
    font-size: 12px;
  }
  .category.detail .c-product-wrap .img + .ex-wrap {
    padding-top: 18px;
  }
}
@media only screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
  .inner-block {
    padding-left: 40px;
    padding-right: 40px;
    max-width: 1280px;
  }
  a,
  a::before,
  a::after,
  button,
  button::before,
  button::after {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .sp {
    display: none !important;
  }
  .c-header .logo {
    padding: 47px min(40px, 2.0833333333vw);
    width: auto;
  }
  .c-header .logo img {
    width: min(193px, 10.0520833333vw);
    display: block;
  }
  .c-header .r-area {
    padding-right: min(40px, 2.0833333333vw);
    gap: min(30px, 1.5625vw);
  }
  .c-header .menu-btn:nth-child(3) img {
    width: 30px;
  }
  .c-header .menu-btn:nth-child(4) img {
    width: auto;
  }
  .c-header .menu-btn img {
    margin-top: 0;
    margin-bottom: 0;
  }
  .c-header .menu-btn .txt {
    font-size: 14px;
  }
  .c-header .toggle-btn {
    display: none;
  }
  .c-header .menu-area {
    position: static;
    width: initial;
    height: initial;
    padding-bottom: 0;
    -webkit-transform: none;
            transform: none;
    border: none;
    background: transparent;
    margin-right: min(54px, 2.8125vw);
  }
  .c-header .menu-area .menu-inn {
    min-height: auto;
    overflow: initial;
  }
  .c-header .menu-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 16px;
    gap: min(50px, 2.6041666667vw);
    margin-right: 20px;
    height: -webkit-fill-available;
  }
  .c-header .menu-list > li {
    position: static;
  }
  .c-header .menu-list > li > div, .c-header .menu-list > li a {
    position: static;
    padding: 61px 0;
    border-top: none;
  }
  .c-header .menu-list > li > div {
    border-bottom: none;
    position: static;
  }
  .c-header .menu-list > li > div::after {
    display: none;
  }
  .c-header .menu-list > li .item {
    border: none;
  }
  .c-header .menu-list > li .item::after {
    right: 0;
    display: none;
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }
  .c-header .menu-list > li > a {
    border-bottom: none;
  }
  .c-header .menu-list .child-menu-list-wrap {
    background: #fff;
    opacity: 0;
    pointer-events: none;
    width: 100%;
    position: fixed;
    top: 134px;
    left: 0;
    z-index: 999;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .c-header .menu-list .child-menu-list {
    background: #fff;
    gap: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    max-width: 1048px;
    margin: auto;
    pointer-events: none;
  }
  .c-header .menu-list .child-menu-list > li {
    max-width: 350px;
    width: 100%;
    font-size: 14px;
  }
  .c-header .menu-list .child-menu-list a {
    height: 100%;
    padding: 17px 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .c-header .menu-list .child-menu-list a .has-bracket {
    margin-left: -1em;
  }
  .c-header .sns-list {
    gap: 10px;
    display: none;
  }
  .c-header .sns-list > a {
    width: 80px;
    height: 80px;
  }
  .c-header .sns-list > a img {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  .c-footer .c-cta-area .cta-btn {
    padding: 16px 0;
  }
  .c-footer .c-cta-area .cta-btn .txt {
    font-size: 14px;
  }
  .c-footer .c-fixed-btn .txt {
    font-size: 16px;
  }
  .c-footer .sns-list {
    gap: 10px;
  }
  .c-footer .sns-list > a {
    width: 80px;
    height: 80px;
  }
  .c-footer .sns-list > a img {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  .c-footer .txt {
    font-size: 16px;
  }
  .c-footer .tel {
    font-size: 24px;
  }
  .c-footer .num {
    font-size: 24px;
    padding-left: 9px;
  }
  .c-footer .open-time {
    font-size: 16px;
  }
  .c-footer .open-time .tag {
    font-size: 14px;
    padding: 2px 16px 3px;
  }
  .c-footer .mail-txt {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .c-footer .copyright {
    font-size: 14px;
    padding: 15px 0;
  }
  .c-ttl01 {
    margin-bottom: 40px;
  }
  .c-ttl01 .en {
    font-size: 20px;
  }
  .c-ttl01 .ja {
    font-size: 30px;
  }
  .c-ttl02 {
    font-size: 16px;
  }
  .c-ttl03,
  .c-article-body h2 {
    font-size: 18px;
    padding-bottom: 12px;
  }
  .c-ttl03.aco-btn::before,
  .c-article-body h2.aco-btn::before {
    top: 8px;
    width: 10px;
    height: 12px;
  }
  .c-ttl04 {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .c-ttl04::after {
    width: 80px;
    height: 4px;
  }
  .c-product-box .img-area .txt {
    font-size: 18px;
  }
  .c-flow-list::before {
    width: 8px;
  }
  .c-flow-list .list-item {
    padding: 10px 10px 10px 10px;
  }
  .c-flow-list .list-item .icon-area {
    width: 80px;
    height: 80px;
  }
  .c-flow-list .list-item .icon-area img {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  .c-flow-list .list-item .txt-area {
    font-size: 16px;
  }
  .c-flow-list .list-item .txt-area .small {
    font-size: 12px;
  }
  .c-flow-list .list-item .step-area {
    font-size: 14px;
  }
  .c-flow-list .list-item .content-area .content-txt {
    font-size: 14px;
    margin-top: 20px;
  }
  .c-flow-list .list-item .content-area .attention {
    font-size: 14px;
  }
  .c-flow-list .list-item .img-box {
    max-width: 400px;
  }
  .c-anchor-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .c-anchor-list.row-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .c-anchor-list.row-3 > li {
    max-width: 285px;
    margin: auto;
    width: 100%;
  }
  .c-anchor-list li a {
    font-size: 16px;
  }
  .c-dots-list li {
    font-size: 16px;
  }
  .c-dots-list li::before {
    top: 12px;
  }
  .c-price-section {
    padding-block: 50px;
  }
  .c-price-section .price-list > li .img {
    width: 100px;
  }
  .c-accessory-section {
    padding-block: 50px;
  }
  .c-accessory-section .acc-txt-wrap .lead {
    font-size: 20px;
  }
  .c-accessory-section .acc-txt-wrap .lead .price {
    font-size: 22px;
  }
  .c-accessory-section .acc-txt-wrap .note {
    font-size: 14px;
  }
  .c-accessory-section .acc-txt-wrap .size-box .size-list li {
    font-size: 14px;
  }
  .c-accessory-section .acc-list {
    grid-template-columns: repeat(auto-fit, minmax(clamp(200px, 16.6666666667vw, 240px), 1fr));
    gap: 30px 30px;
  }
  .c-accessory-section .acc-list > li .tag-list dt {
    font-size: 14px;
  }
  .c-accessory-section .acc-list > li .tag-list dd {
    font-size: 16px;
  }
  .c-accessory-section .inn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    max-width: 1200px;
  }
  .c-product-splide .splide__controls {
    padding-inline: 20px;
  }
  .c-product-splide .splide__arrows .splide__arrow {
    width: 10px;
    height: 14px;
  }
  .c-product-splide .splide__pagination li .splide__pagination__page {
    width: 8px;
    height: 8px;
  }
  .c-product-wrap {
    display: grid;
    grid-template-columns: min(400px, 35.7142857143vw) 1fr;
    gap: 3em;
  }
  .c-size-wrap .ttl {
    font-size: 20px;
  }
  .c-size-wrap .c-size-table th,
  .c-size-wrap .c-size-table td {
    font-size: 14px;
  }
  .c-product-btn-wrap .pri-btn .txt {
    font-size: 16px;
  }
  .c-voice-section {
    padding: 50px 0;
  }
  .c-voice-section .voice-list {
    grid-template-columns: repeat(4, minmax(auto, 1fr));
  }
  .c-voice-section .voice-list .voice-ttl {
    font-size: 16px;
    margin-top: 10px;
  }
  .c-btn01 {
    max-width: 500px;
    margin: auto;
  }
  .c-btn01 .txt {
    font-size: 16px;
  }
  .c-btn01.c-white .txt {
    text-align: center;
  }
  .c-share-link {
    font-size: 14px;
  }
  .c-share-btn-wrap .c-btn01 .txt {
    font-size: 16px;
  }
  .c-breadcrumb {
    font-size: 12px;
  }
  .c-breadcrumb .list li:not(:last-child)::after {
    margin-top: -2px;
    width: 5px;
  }
  .c-kv .ttl {
    gap: 15px;
    padding: 30px 0 60px;
  }
  .c-kv .ttl .ja {
    font-size: 30px;
  }
  .c-kv .ttl .en {
    font-size: 14px;
  }
  .c-menu-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .c-contact .q-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }
  .c-contact .q-wrap .label-area {
    width: 250px;
  }
  .c-contact .radio-group .wpcf7-radio, .c-contact .radio-group .wpcf7-checkbox, .c-contact .checkbox-group .wpcf7-radio, .c-contact .checkbox-group .wpcf7-checkbox {
    margin-top: 7px;
  }
  .c-contact .file-area button {
    font-size: 12px;
    width: 110px;
  }
  .c-contact .file-area label {
    width: calc(100% - 110px);
  }
  .c-product-list {
    grid-template-columns: repeat(auto-fit, minmax(clamp(170px, 16.6666666667vw, 240px), 1fr));
    gap: 30px 30px;
  }
  .c-product-list .c-product-box .tag-list dt {
    font-size: 14px;
  }
  .c-product-list .c-product-box .tag-list dd {
    font-size: 16px;
  }
  .home .mv-section .splide-outer {
    overflow: visible;
  }
  .home .mv-section .mv-splide .splide__slide img {
    min-height: 400px;
  }
  .home .mv-section .mv-splide .splide-navi {
    margin-top: 40px;
    gap: 0 30px;
  }
  .home .mv-section .mv-splide .splide__arrows .splide__arrow--prev::after {
    width: 8px;
    height: 12px;
  }
  .home .mv-section .mv-splide .splide__arrows .splide__arrow--next::after {
    width: 8px;
    height: 12px;
  }
  .home .mv-section .mv-splide .splide__pagination {
    gap: 15px;
  }
  .home .mv-section .mv-splide .splide__pagination li {
    width: 10px;
    height: 10px;
  }
  .home .mv-section .mv-splide .splide__pagination button {
    width: 10px;
    height: 10px;
  }
  .home .pickup-section .content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 1043px;
    margin: auto;
  }
  .home .pickup-section .point-box {
    padding: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .home .pickup-section .point-box + .point-box {
    margin-top: 0px;
  }
  .home .pickup-section .content-inn {
    display: grid;
    grid-template-areas: "icon txt" "desc desc";
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }
  .home .pickup-section .icon-area {
    grid-area: icon;
  }
  .home .pickup-section .txt-area {
    grid-area: txt;
    text-align: left;
    width: 100%;
  }
  .home .pickup-section .txt-area .small {
    font-size: 14px;
  }
  .home .pickup-section .txt-area .main {
    font-size: 24px;
  }
  .home .pickup-section .point {
    font-size: 14px;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    -webkit-writing-mode: initial;
        -ms-writing-mode: initial;
            writing-mode: initial;
    text-align: left;
    display: block;
    grid-area: point;
  }
  .home .pickup-section .point::before {
    width: 2px;
  }
  .home .pickup-section .desc-area {
    grid-area: desc;
    border-top: 1px dashed #fff;
    padding-top: 10px;
  }
  .home .item-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .home .item-section::before {
    background: url("../img/home/sec-bg-pc.jpg.webp") no-repeat center/cover;
  }
  .home .item-section .pickup-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
  }
  .home .item-section .pickup-item {
    padding: 10px;
    width: 100%;
    height: 100%;
  }
  .home .item-section .pickup-item + .pickup-item {
    margin-top: 0;
  }
  .home .item-section .pickup-item .pickup {
    width: 100px;
    font-size: 14px;
  }
  .home .item-section .pickup-item .info-area {
    padding: 10px 10px 0px;
  }
  .home .item-section .pickup-item .price-area {
    margin-top: 10px;
  }
  .home .item-section .pickup-item .price-area .tax, .home .item-section .pickup-item .price-area .yen {
    font-size: 16px;
  }
  .home .item-section .product-list {
    gap: 20px;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    margin-top: 40px;
  }
  .home .item-section .product-list .img-area {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .home .item-section .product-list .product-name {
    font-size: 14px;
    margin-top: 10px;
  }
  .home .item-section .product-list .tax, .home .item-section .product-list .yen {
    font-size: 14px;
  }
  .home .item-section .c-btn01 {
    margin-top: 40px;
    max-width: 335px;
  }
  .home .case-section {
    padding: 50px 0;
  }
  .home .budget-section .content {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .home .budget-section .content .ttl {
    text-align: center;
    font-size: 16px;
  }
  .home .budget-section .content .ttl-inn {
    text-align: left;
    margin: auto;
    display: inline-block;
    margin-right: 60px;
  }
  .home .budget-section .content .budget {
    font-size: 12px;
  }
  .home .budget-section .content .num {
    font-size: 24px;
  }
  .home .budget-section .content .yen {
    font-size: 12px;
  }
  .home .budget-section .content .small {
    font-size: 14px;
  }
  .home .color-section .color-list {
    max-width: 800px;
    margin: auto;
  }
  .home .color-section .line {
    text-align: center;
  }
  .home .color-section .color-icon {
    width: 30px;
    height: 30px;
  }
  .home .flow-section {
    padding: 50px 0;
  }
  .home .flow-section .attention {
    font-size: 14px;
    padding-left: 30px;
    margin-top: 20px;
  }
  .home .flow-section .attention::after {
    left: 15px;
  }
  .home .popular-section {
    padding: 50px 0;
  }
  .home .popular-section .list-item {
    padding: 20px;
    gap: 20px;
  }
  .home .popular-section .list-item + .list-item {
    margin-top: 20px;
  }
  .home .popular-section .list-item .ttl {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .home .popular-section .list-item .txt {
    font-size: 16px;
  }
  .home .popular-section .c-btn01 {
    margin-top: 30px;
  }
  .home .news-section {
    padding: 50px 0 150px;
  }
  .home .news-section .list-item {
    padding-bottom: 10px;
  }
  .home .news-section .list-item + .list-item {
    margin-top: 10px;
  }
  .home .news-section .list-item .date {
    font-size: 14px;
  }
  .home .news-section .list-item .tag {
    font-size: 14px;
  }
  .home .news-section .list-item .ttl {
    font-size: 18px;
  }
  .home .news-section .c-btn01 {
    margin-top: 40px;
  }
  .blog-article-block .article-content ul li + li,
  .blog-article-block .article-content ol li + li {
    margin-top: 3px;
  }
  .blog-article-block .article-content a:hover {
    text-decoration: none;
  }
  .blog-article-block .article-content .wp-block-columns {
    margin: 30px -15px;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
  }
  .blog-article-block .article-content .wp-block-columns .wp-block-column {
    -webkit-flex-basis: 0;
        -ms-flex-preferred-size: 0;
            flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .blog-article-block .article-content .wp-block-columns .wp-block-column:not(:first-child) {
    margin-left: 0;
  }
  .blog-article-block .article-content .wp-block-media-text {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .blog-article-block .article-content .wp-block-media-text .wp-block-media-text__media {
    width: 252px;
  }
  .blog-article-block .article-content .wp-block-media-text .wp-block-media-text__content {
    padding-left: 30px;
    width: calc(100% - 252px);
  }
  .blog-article-block .article-content .wp-block-table.sp-block tr:nth-child(n+2) th {
    border-top-color: #fff;
  }
  .blog-article-block .article-content .wp-block-table.sp-block tr:not(:last-child) th {
    border-bottom-color: #fff;
  }
  .blog-article-block .article-content table.sp-block tr:nth-child(n+2) th {
    border-top-color: #fff;
  }
  .blog-article-block .article-content table.sp-block tr:not(:last-child) th {
    border-bottom-color: #fff;
  }
  .blog-article-block .article-content .iframe-wrap.youtube .wp-block-embed__wrapper iframe {
    width: 100%;
    height: 490px;
  }
  .contact {
    font-size: 15px;
  }
  .contact .contact-section {
    padding: 50px 0 150px;
  }
  .contact .contact-section .note {
    font-size: 14px;
  }
  .contact .c-contact {
    margin-top: 60px;
  }
  .contact .c-contact .btn-wrap {
    margin-top: 60px;
    gap: 10px;
  }
  .policy {
    font-size: 15px;
  }
  .policy .info-section {
    padding: 50px 0 150px;
  }
  .transaction .info-section {
    padding: 50px 0 150px;
  }
  .transaction .info-section .section + .section {
    padding-top: 30px;
    margin-top: 30px;
  }
  .transaction .info-section .section-inner {
    font-size: 14px;
    margin-top: 30px;
  }
  .transaction .info-section .txt:not(:last-child) {
    margin-bottom: 16px;
  }
  .transaction .info-section .note {
    font-size: 14px;
  }
  .transaction .info-section .num-ttl {
    font-size: 16px;
    margin-bottom: 16px;
  }
  .transaction .info-section .num-list > li:not(:last-child) {
    margin-bottom: 16px;
  }
  .archive-section {
    padding: 50px 0 150px;
  }
  .archive-list a {
    padding: 15px 0;
  }
  .archive-list .info-area .date {
    font-size: 12px;
  }
  .archive-list .info-area .category {
    font-size: 12px;
  }
  .archive-list .ttl {
    font-size: 15px;
  }
  .archive-thumb-list {
    gap: 30px 20px;
  }
  .archive-thumb-list .ttl {
    font-size: 14px;
    margin-block: 12px;
  }
  .archive-thumb-list .category {
    font-size: 12px;
  }
  .archive-paging {
    gap: 12px;
  }
  .archive-paging .page-numbers.dot {
    font-size: 12px;
  }
  .archive-paging .page-numbers:not(.dot) {
    font-size: 14px;
    line-height: 38px;
    min-width: 40px;
    height: 40px;
  }
  .archive-paging .page-numbers:not(.dot).prev::before, .archive-paging .page-numbers:not(.dot).next::before {
    width: 8px;
    height: 10px;
  }
  .archive-paging .page-numbers:not(.dot).prev {
    margin-right: 12px;
  }
  .archive-paging .page-numbers:not(.dot).next {
    margin-left: 12px;
  }
  .article-section {
    padding-block: 50px 150px;
    max-width: 750px;
  }
  .article-section .article-ttl {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .article-section .article-info .date {
    font-size: 12px;
  }
  .article-section .article-info .category-list {
    gap: 10px;
  }
  .article-section .article-info .category {
    font-size: 12px;
  }
  .article-section .article-share {
    margin-top: 40px;
  }
  #ez-toc-container .ez-toc-list a,
  #ez-toc-container .toc_list a,
  #toc_container .ez-toc-list a,
  #toc_container .toc_list a {
    font-size: 13px;
  }
  .c-article-body {
    font-size: 15px;
  }
  .c-article-body h2 {
    margin-top: 30px;
  }
  .c-article-body ul:not(#ez-toc-container ul) > li:not(:last-child),
  .c-article-body ol > li:not(:last-child) {
    margin-bottom: 8px;
  }
  .c-article-body ul:not(#ez-toc-container ul).dot-list > li:not(:last-child),
  .c-article-body ol.dot-list > li:not(:last-child) {
    margin-bottom: 0;
  }
  .c-article-body .check-title {
    font-size: 16px;
    padding-left: 25px;
  }
  .c-article-body .check-title::before {
    top: 0.2em;
    width: 20px;
    height: 20px;
  }
  .c-article-body .works-list {
    gap: 50px 30px;
  }
  .c-article-body .works-list .name {
    font-size: 13px;
    margin-block: 15px 10px;
  }
  .c-article-body .works-list .txt {
    font-size: 13px;
  }
  .qa .qa-section-wrap {
    padding: 50px 0 150px;
  }
  .qa .qa-section + .qa-section {
    margin-top: 60px;
  }
  .qa .qa-box .box {
    padding: 30px 20px 30px 60px;
  }
  .qa .qa-box .box::before {
    top: 28px;
    left: 20px;
  }
  .qa .qa-box .question::after {
    top: 35px;
    right: 20px;
    width: 10px;
    height: 12px;
  }
  .qa .qa-box .txt {
    font-size: 16px;
  }
  .customers .customers-section {
    padding: 50px 0 150px;
  }
  .customers .customers-section .txt {
    text-align: center;
  }
  .customers .voice-list {
    grid-template-columns: repeat(4, minmax(auto, 1fr));
    gap: 40px 20px;
  }
  .customers .voice-list .voice-ttl {
    font-size: 16px;
    margin-top: 10px;
  }
  .customers.detail .detail-section {
    padding: 50px 0 150px;
  }
  .customers.detail .detail-section p {
    font-size: 16px;
  }
  .customer-gallery .gallery-section, .customer-gallery .detail-section {
    padding: 50px 0 150px;
  }
  .customer-gallery .c-category-list label {
    padding: 20px;
  }
  .customer-gallery .c-category-list label .txt {
    font-size: 16px;
  }
  .customer-gallery .product-wrap {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .customer-gallery .product-wrap .txt {
    margin-top: 16px;
    font-size: 16px;
  }
  .customer-gallery .detail-section p {
    font-size: 16px;
  }
  .size .size-section {
    padding: 50px 0 150px;
  }
  .size .cont + .cont {
    margin-top: 80px;
  }
  .size .cont .img-box {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
  }
  .size .cont .img-box:has(> :only-child) {
    grid-template-columns: repeat(2, 1fr);
  }
  .size .cont .img-box > :only-child {
    grid-column: 1/-1;
    justify-self: center;
    max-width: 400px;
  }
  .size .cont img + .txt {
    margin-top: 20px;
  }
  .size .cont .txt {
    font-size: 16px;
  }
  .size .cont .desc {
    max-width: 600px;
    margin: auto;
    font-size: 14px;
  }
  .category .rec-section .sec-txt.fz-13 {
    font-size: 15px;
  }
  .category .rec-section .rec-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .category .rec-section .rec-list > li {
    width: calc((100% - 20px) / 3);
    min-width: 300px;
  }
  .category .rec-section .rec-list > li .price-txt .txt {
    font-size: 14px;
  }
  .category .rec-section .rec-list > li .price-txt .rc .unit {
    font-size: 13px;
  }
  .category .rec-section .rec-list > li .note {
    font-size: 14px;
  }
  .category .rec-section .rec-list > li .total-txt .txt {
    font-size: 18px;
  }
  .category .rec-section .rec-list > li .total-txt .rc .unit {
    font-size: 13px;
  }
  .category .img-wrap {
    padding-top: 50px;
  }
  .category .category-area {
    padding: 50px 0 150px;
  }
  .category .category-area.pt-0 {
    padding-top: 0;
  }
  .category .category-area .banner-wrap {
    padding-bottom: 80px;
  }
  .category .category-area .banner-wrap .banner {
    max-width: 1280px;
    padding-inline: 40px;
    margin: auto;
  }
  .category .category-area .banner-wrap .banner img {
    max-width: 600px;
  }
  .category .category-area .banner-wrap .ranking-wrap {
    max-width: 1200px;
    padding-inline: 60px;
    margin: auto;
    border-radius: 20px;
  }
  .category .category-area .banner-wrap .ranking-wrap .c-product-list .box .c-product-box .product-name {
    font-size: 16px;
  }
  .category .category-area .banner-wrap .ranking-wrap .c-product-list .box .c-product-box .tag-list dt {
    font-size: 14px;
  }
  .category .category-area .banner-wrap .ranking-wrap .c-product-list .box .c-product-box .tag-list dd {
    font-size: 16px;
  }
  .nav-content-wrap {
    max-width: 1280px;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    margin: auto;
  }
  .nav-content-wrap .side-box {
    padding-left: 40px;
    min-width: 300px;
    width: min(25%, 400px);
  }
  .nav-content-wrap .cont-wrap.pr-40 {
    padding-right: 40px;
  }
  .category-nav .search-area input {
    font-size: 20px !important;
  }
  .category-nav-each .contents-wrap .nav-ttl .inn-txt {
    font-size: 20px;
  }
  .category-nav-each .contents-wrap .nav-content {
    padding-block: 24px;
  }
  .category-nav-each .contents-wrap .c-btn01 {
    margin-top: 24px;
  }
  .firstorder .what-section {
    padding: 50px 0 50px;
  }
  .firstorder .what-section .c-ttl04 {
    margin-top: 60px;
  }
  .firstorder .what-section .gallery-wrap {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .firstorder .flow-section {
    padding: 50px 0 50px;
  }
  .firstorder .flow-section .white-box {
    margin-top: 20px;
  }
  .firstorder .flow-section .red-box {
    font-size: 16px;
  }
  .firstorder .flow-section .red-box h3 {
    font-size: 18px;
  }
  .firstorder .flow-section .red-box + p {
    font-size: 16px;
  }
  .firstorder .delivery-section {
    padding: 50px 0 50px;
  }
  .firstorder .delivery-section .c-dots-list {
    margin-bottom: 60px;
  }
  .firstorder .desc {
    font-size: 16px;
  }
  .firstorder .payment-section {
    padding: 50px 0 50px;
  }
  .firstorder .payment-section p + p {
    margin-top: 20px;
  }
  .firstorder .qa-section {
    padding: 50px 0 150px;
  }
  .firstorder .qa-section .qa-box .box {
    padding: 30px 20px 30px 60px;
  }
  .firstorder .qa-section .qa-box .box::before {
    top: 28px;
    left: 20px;
  }
  .firstorder .qa-section .qa-box .question::after {
    top: 35px;
    right: 20px;
    width: 10px;
    height: 12px;
  }
  .firstorder .qa-section .qa-box .txt {
    font-size: 16px;
  }
  .firstorder .qa-section .c-btn01 {
    margin-top: 40px;
  }
  .how-to-order .c-anchor-section {
    padding-top: 50px;
  }
  .how-to-order .c-anchor-section .btn-area .btn {
    padding: 12px 0;
    font-size: 14px;
  }
  .how-to-order .c-num-list {
    max-width: 600px;
    margin: auto;
  }
  .how-to-order .c-num-list > li + li {
    margin-top: 40px;
  }
  .how-to-order .c-num-list > li .ttl {
    font-size: 20px;
    padding-left: 22px;
  }
  .how-to-order .c-num-list > li .ttl::before {
    font-size: 20px;
  }
  .how-to-order .c-num-list img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .how-to-order .c-num-list img + .txt,
  .how-to-order .c-num-list img + img {
    margin-top: 20px;
  }
  .how-to-order .c-num-list .txt {
    font-size: 16px;
  }
  .how-to-order .c-num-list .txt + img {
    margin-top: 20px;
  }
  .how-to-order .c-num-list .attention {
    font-size: 14px;
  }
  .how-to-order .c-num-list .attention + .txt {
    margin-top: 20px;
  }
  .how-to-order .webform-section {
    padding-top: 50px;
  }
  .how-to-order .line-order-section .btn-area {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
  }
  .how-to-order .line-order-section .shop-btn {
    font-size: 16px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    width: 100%;
    padding: 8px 10px;
  }
  .how-to-order .line-order-section .shop-btn::before {
    left: 10px;
  }
  .how-to-order .line-order-section .shop-btn:nth-child(1)::before {
    width: 34px;
    height: 26px;
  }
  .how-to-order .line-order-section .shop-btn:nth-child(2)::before {
    width: 36px;
    height: 28px;
  }
  .how-to-order .line-order-section .line-btn {
    font-size: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .how-to-order .gray-box {
    margin-top: 20px;
  }
  .how-to-order .gray-box .box-ttl {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .how-to-order .gray-box .icon-flex .inn-txt {
    font-size: 18px;
  }
  .how-to-order .gray-box .box-attention {
    font-size: 14px;
  }
  .how-to-order .gray-box img {
    width: auto;
  }
  .how-to-order .flow-section {
    padding: 50px 0 135px;
  }
  .how-to-order .flow-section .white-box {
    margin-top: 20px;
  }
  .how-to-order .flow-section .red-box {
    font-size: 16px;
  }
  .how-to-order .flow-section .red-box h3 {
    font-size: 18px;
  }
  .how-to-order .flow-section .red-box + p {
    font-size: 16px;
  }
  .category.detail .detail-wrap {
    padding-bottom: 67px;
  }
  .category.detail .detail-section {
    padding-block: 50px;
  }
  .category.detail .detail-section .bg-contents03 {
    margin: 50px calc(50% - 50vw) 0;
    padding: 50px calc(50vw - 50%);
  }
  .category.detail .link-txt {
    font-size: 16px;
  }
  .category.detail .ico-list {
    margin-bottom: 30px;
  }
  .category.detail .ico-list li {
    font-size: 12px;
  }
  .category.detail .tag-list dt {
    font-size: 16px;
  }
  .category.detail .tag-list dd {
    font-size: 18px;
  }
  .category.detail .name-top {
    font-size: 28px;
    margin-bottom: 15px;
  }
  .category.detail .summary-txt .txt {
    font-size: 16px;
  }
  .category.detail .price-wrap .price .unit {
    font-size: 14px;
  }
  .category.detail .point-wrap .img.size01 img {
    max-width: calc(100% + 20px);
  }
  .category.detail .plan-wrap {
    margin: 50px auto;
  }
  .category.detail .plan-wrap .c-item-card-splide:not(.is-active) .splide__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
  }
  .category.detail .plan-wrap .splide-nav {
    bottom: 220px;
    top: initial;
  }
  .category.detail .plan-wrap .splide__arrows {
    display: none;
  }
  .category.detail .step-wrap {
    margin-top: 50px;
  }
  .category.detail .step-wrap .box {
    padding: 30px;
  }
  .category.detail .step-wrap .img {
    margin-block: 20px;
  }
  .category.detail .step-wrap .ttl .num {
    font-size: 14px;
  }
  .category.detail .step-wrap .ttl .txt {
    font-size: 16px;
  }
  .category.detail .step-wrap .note {
    font-size: 12px;
  }
  .category.detail .c-btn01.c-primary {
    margin-top: 30px;
  }
  .category.detail .c-btn01.c-primary + .c-size-wrap {
    margin-top: 50px;
  }
  .category.detail .ex-table + .c-size-wrap,
  .category.detail .step-wrap + .c-size-wrap {
    margin-top: 50px;
  }
  .category.detail.accessory .detail-section .product-wrap {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
  }
  .category.detail.accessory .product-box .product-name {
    margin-top: 20px;
    font-size: 24px;
  }
  .category.detail.accessory .product-box .desc {
    margin-bottom: 30px;
  }
  .category.detail.accessory .product-box .c-btn01 {
    margin-bottom: 0;
    margin-top: auto;
  }
  .category.detail.accessory .intro-section .intro-wrap {
    padding-block: 60px;
  }
  .category.detail.accessory .intro-section .main-product {
    width: 100%;
    margin: auto;
    max-width: 500px;
  }
  .category.detail.accessory .intro-section .main-product .price {
    font-size: 16px;
  }
  .category.detail.accessory .intro-section .main-product .price .num {
    font-size: 24px;
  }
  .category.detail.accessory .intro-section .main-product .price .yen {
    font-size: 14px;
  }
  .category.detail.accessory .intro-section .main-product .desc {
    font-size: 14px;
  }
  .category.detail.accessory .intro-section .acc-cont .name {
    font-size: 18px;
  }
  .category.detail .c-product-wrap + .point-wrap {
    padding-bottom: 50px;
  }
  .category.detail .c-size-wrap + .c-product-list {
    padding-block: 50px;
  }
  .category.detail .detail-wrap .detail-section:last-child,
  .category.detail .detail-wrap .c-accessory-section:last-child {
    padding-bottom: 80px;
  }
  .print-font .print-section {
    padding: 50px 0;
  }
  .print-font .print-section .print-ttl-area {
    margin-bottom: 20px;
  }
  .print-font .print-section .print-ttl-area .ttl {
    font-size: 24px;
  }
  .print-font .print-section .print-ttl-area .tag-list {
    gap: 8px;
  }
  .print-font .print-section .print-ttl-area .tag {
    font-size: 14px;
    padding: 5px 9px;
  }
  .print-font .print-section .print-list {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
  }
  .print-font .print-section .print-list > li + li {
    margin-top: 50px;
  }
  .print-font .print-section .content-wrapper {
    gap: 20px;
  }
  .print-font .print-section .content-wrapper .white-box img {
    max-width: none;
    max-height: none;
  }
  .print-font .print-section .content-wrapper.grid-2 img {
    max-width: 290px;
  }
  .print-font .print-section .content-wrapper + .content-wrapper {
    margin-top: 30px;
  }
  .print-font .print-section .content-wrapper .print-ttl {
    font-size: 18px;
  }
  .print-font .print-section .content-wrapper .price-list .ttl {
    font-size: 16px;
  }
  .print-font .print-section .content-wrapper .price-list .price {
    font-size: 20px;
  }
  .print-font .print-section .content-wrapper .price-list .yen {
    font-size: 13px;
  }
  .print-font .print-section .print-txt {
    font-size: 16px;
  }
  .print-font .print-section .attention {
    font-size: 12px;
  }
  .print-font .print-section .color-ttl {
    font-size: 22px;
    margin-bottom: 25px;
  }
  .print-font .print-section .color-list {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
  }
  .print-font .print-section .color-list > li {
    font-size: 14px;
  }
  .print-font .print-section .color-list .icon {
    width: 50px;
    height: 50px;
  }
  .print-font .print-section .glitter-list {
    max-width: none;
    gap: 20px;
  }
  .print-font .print-section .glitter-list > li {
    font-size: 14px;
  }
  .print-font .print-section .glitter-list .icon {
    width: 70px;
    height: 70px;
  }
  .print-font .font-section {
    padding-top: 50px;
    padding-bottom: 154px;
  }
  .print-font .font-section .font-list {
    max-width: 1000px;
  }
  .print-font .font-section .font-list .ttl {
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 5px;
  }
  .print-font .font-section .font-list .item-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .print-font .font-section .font-list .item {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .print-font .font-section .font-list .item + .item {
    margin-top: 0;
  }
  .print-font .font-section .font-list .item img:not(.item-ttl) {
    width: auto;
  }
  .print-font .font-section .attention-list > li {
    font-size: 14px;
    padding-left: 20px;
  }
  .print-font .font-section .gray-box {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
  }
  .print-font .font-section .l-green-box {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
  }
  .print-font .font-section .l-green-box .txt {
    font-size: 16px;
  }
  .emblem-logo .c-anchor-section .txt {
    font-size: 16px;
  }
  .emblem-logo .c-anchor-section .txt + img {
    max-width: 100%;
    margin-right: auto;
  }
  .emblem-logo .c-anchor-section .alert-area {
    padding: 10px 0;
  }
  .emblem-logo .c-anchor-section .alert-area .alert-txt {
    font-size: 16px;
    padding-left: 40px;
  }
  .emblem-logo .c-anchor-section .alert-area .alert-txt::before {
    top: -2px;
    width: 30px;
    height: 30px;
  }
  .emblem-logo .c-anchor-section .f-red {
    font-size: 14px;
    margin-top: 10px;
  }
  .emblem-logo .c-anchor-section .attention {
    font-size: 14px;
    padding-left: 20px;
  }
  .emblem-logo .c-alert-area .alert-txt {
    font-size: 16px;
  }
  .emblem-logo .c-alert-area .alert-txt::before {
    width: 30px;
    height: 30px;
  }
  .emblem-logo .c-price-area .num {
    font-size: 30px;
    margin-right: 3px;
  }
  .emblem-logo .c-price-area .yen {
    font-size: 14px;
  }
  .emblem-logo .red-box .txt {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .emblem-logo .free-emblem-section {
    padding-top: 50px;
  }
  .emblem-logo .free-emblem-section .inner-block {
    max-width: 600px;
  }
  .emblem-logo .free-emblem-section .txt {
    margin-bottom: 20px;
    font-size: 16px;
  }
  .emblem-logo .custom-emblem-section {
    padding-top: 50px;
  }
  .emblem-logo .custom-emblem-section .inner-block {
    max-width: 600px;
  }
  .emblem-logo .custom-emblem-section .txt {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .emblem-logo .custom-emblem-section .ttl {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .emblem-logo .custom-emblem-section .flex-box {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  .emblem-logo .custom-emblem-section .flex-box img {
    max-width: 100%;
  }
  .emblem-logo .custom-emblem-section .flex-box .flex-txt {
    font-size: 16px;
  }
  .emblem-logo .original-emblem-section {
    padding-top: 50px;
  }
  .emblem-logo .original-emblem-section .inner-block {
    max-width: 600px;
  }
  .emblem-logo .original-emblem-section .attention-area {
    font-size: 16px;
  }
  .emblem-logo .original-emblem-section .ex-txt {
    font-size: 14px;
    padding-left: 20px;
  }
  .emblem-logo .original-emblem-section .ex-txt + .ex-txt {
    margin-top: 10px;
  }
  .emblem-logo .original-emblem-section .ex-txt + .txt {
    margin-top: 20px;
  }
  .emblem-logo .original-emblem-section .txt {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .emblem-logo .original-emblem-section .c-flow-list .content-area .img-box.white img {
    max-width: 100%;
  }
  .emblem-logo .original-emblem-section .c-flow-list .content-area .img-box img {
    max-width: 100%;
  }
  .emblem-logo .free-logo-section {
    padding-top: 50px;
    padding-bottom: 143px;
  }
  .emblem-logo .free-logo-section .inner-block {
    max-width: 600px;
  }
  .emblem-logo .free-logo-section .txt {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .emblem-logo .free-logo-section .attention {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .category-top {
    padding-bottom: 130px;
  }
  .category-top .line-contact-txt {
    font-size: 18px;
  }
  .customuniform .detail-section .outer {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .customuniform .detail-section .c-product-wrap {
    display: inline-grid;
  }
  .customuniform .point-section {
    margin: 50px auto 0;
    padding: 50px 0;
  }
  .customuniform .point-section .circle-list .circle {
    width: 120px;
    height: 120px;
  }
  .customuniform .point-section .circle-list .txt {
    font-size: 14px;
    margin-top: 10px;
  }
  .customuniform .point-section .banner {
    margin: 30px auto 30px;
  }
  .customuniform .point-section .worry-ttl {
    margin-bottom: 20px;
    font-size: 18px;
  }
  .customuniform .point-section .white-box {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;
  }
  .customuniform .point-section .white-box + img {
    margin: 20px auto 35px;
  }
  .customuniform .point-section .light-ttl {
    font-size: 16px;
  }
  .customuniform .point-section .light-ttl::before {
    top: -16px;
    width: 20px;
    height: 29px;
  }
  .customuniform .point-section .light-ttl .strong {
    font-size: 24px;
  }
  .customuniform .lineup-block {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .customuniform .lineup-block .lineup-box {
    max-width: 600px;
    margin: auto;
  }
  .customuniform .lineup-block .lineup-box .inn {
    padding: 20px 15px;
  }
  .customuniform .lineup-block .lineup-box .ttl {
    font-size: 18px;
  }
  .customuniform .lineup-block .lineup-box img {
    max-width: 120px;
  }
  .customuniform .lineup-block .lineup-box .num {
    font-size: 40px;
  }
  .customuniform .lineup-block .lineup-box .yen {
    font-size: 14px;
  }
  .customuniform .set-block {
    padding: 50px 0;
  }
  .customuniform .set-block .c-ttl04 {
    font-size: 20px;
  }
  .customuniform .set-block .c-product-list {
    max-width: 600px;
    margin: auto;
  }
  .customuniform .set-block .c-product-box .ttl {
    font-size: 14px;
  }
  .customuniform .feature-block {
    padding: 50px 0;
  }
  .customuniform .feature-block .c-ttl04 {
    font-size: 20px;
  }
  .customuniform .feature-block .txt {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
  }
  .customuniform .feature-block .alert-area {
    max-width: 600px;
    margin: auto;
    margin-bottom: 30px;
    padding: 10px;
    font-size: 14px;
  }
  .customuniform .feature-block img {
    max-width: 600px;
  }
  .customuniform .feature-block .step-list {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .customuniform .feature-block .step-list .step {
    font-size: 14px;
  }
  .customuniform .feature-block .step-list .ttl {
    font-size: 15px;
  }
  .customuniform .feature-block .img-list {
    margin-top: 25px;
    margin-bottom: 10px;
  }
  .customuniform .feature-block .img-list img {
    width: auto;
    height: auto;
  }
  .customuniform .feature-block .img-list .txt {
    font-size: 14px;
    margin-top: 5px;
  }
  .customuniform .feature-block .c-dots-list {
    margin-left: auto;
    margin-right: auto;
  }
  .customuniform .feature-block .attention {
    font-size: 14px;
    padding-left: 20px;
  }
  .customuniform .feature-block .attention::before {
    left: 0;
  }
  .customuniform .qa-section {
    padding: 50px 0 50px;
  }
  .customuniform .qa-section .qa-box .box {
    padding: 30px 20px 30px 60px;
  }
  .customuniform .qa-section .qa-box .box::before {
    top: 28px;
    left: 20px;
  }
  .customuniform .qa-section .qa-box .question::after {
    top: 35px;
    right: 20px;
    width: 10px;
    height: 12px;
  }
  .customuniform .qa-section .qa-box .txt {
    font-size: 16px;
  }
  .customuniform .qa-section .c-btn01.c-primary {
    margin-top: 40px;
  }
  .customuniform .flow-section {
    padding: 50px 0;
  }
  .customuniform .flow-section .c-flow-list .list-item {
    padding: 10px 20px;
  }
  .customuniform .flow-section .c-flow-list .txt {
    font-size: 14px;
  }
  .customuniform .flow-section .c-flow-list .c-num-list .list-txt {
    font-size: 14px;
  }
  .customuniform .flow-section .c-flow-list .c-num-list .list-txt::before {
    font-size: 14px;
    top: 2px;
  }
  .customuniform .flow-section .c-flow-list .attention {
    font-size: 14px;
    padding-left: 20px;
  }
  .customuniform .flow-section .c-flow-list .txt-area .txt {
    font-size: 16px;
  }
  .customuniform .bottom-banner {
    padding: 50px 20px 0px;
  }
}
@media only screen and (max-width: 1300px) {
  .c-header {
    max-height: 120px;
  }
  main {
    padding-top: 120px;
  }
}
@media only screen and (max-width: 1300px) and (max-width: 767px) {
  .c-header {
    max-height: 60px;
  }
  main {
    padding-top: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1300px) {
  .c-header .logo img {
    width: 130px;
  }
  .c-header .toggle-btn {
    display: block;
  }
  .c-header .menu-list {
    display: block;
    margin-right: 0;
  }
  .c-header .menu-list > li {
    position: relative;
  }
  .c-header .menu-list > li > div, .c-header .menu-list > li a {
    padding: 0;
    border-bottom: none;
  }
  .c-header .menu-list > li .item {
    padding: 20px 30px 20px 20px;
    position: relative;
    border-bottom: 1px solid #d9d9d9;
  }
  .c-header .menu-list > li .item::after {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    right: 20px;
    display: block;
  }
  .c-header .menu-list > li > a::after {
    display: none !important;
  }
  .c-header .menu-list .child-menu-list-wrap {
    display: none;
    opacity: 1;
    pointer-events: all;
    position: static;
    -webkit-transition: none;
    transition: none;
  }
  .c-header .menu-list .child-menu-list {
    background: #F2F2F7;
    display: block;
    position: static;
    opacity: 1;
    min-width: auto;
    -webkit-transition: none;
    transition: none;
    pointer-events: all;
    max-width: none;
  }
  .c-header .menu-list .child-menu-list > li {
    max-width: none;
    height: auto;
  }
  .c-header .menu-list .child-menu-list a {
    display: block;
    border-right: none;
    padding: 16px 30px 16px 20px;
  }
  .category.detail .plan-wrap .c-item-card-splide:not(.is-active) .splide__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 767px) and (max-width: 350px) {
  .c-header .logo img {
    width: min(160px, 45.7142857143vw);
  }
  .c-header .r-area {
    gap: 8px;
  }
  .home .item-section .product-list {
    grid-template-columns: 1fr;
  }
  .home .budget-section .content .ttl {
    font-size: 12px;
  }
  .how-to-order .line-order-section .shop-btn {
    font-size: 14px;
  }
  .how-to-order .line-order-section .shop-btn:nth-child(1)::before {
    width: 34px;
    height: 26px;
  }
  .how-to-order .line-order-section .shop-btn:nth-child(2)::before {
    width: 36px;
    height: 28px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1400px) {
  .c-header .r-area {
    padding-right: 20px;
  }
  .c-header .search-area input[type=text] {
    width: 200px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1600px) {
  .c-header .menu-area {
    margin-right: 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1600px) and (max-width: 1300px) {
  .c-header .menu-area {
    position: fixed;
    top: 116px;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    width: 100%;
    height: 100%;
    border-top: 1px solid #d9d9d9;
    margin-right: 0;
    background: #fff;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1000px) {
  .c-header .menu-area .menu-inn {
    overflow-y: auto;
    min-height: calc(var(--vh, 1vh) * 100 - 75px);
  }
  .home .budget-section .content {
    grid-template-columns: 1fr 1fr;
  }
  .category.detail .plan-wrap .splide-wrapper {
    padding: 0 150px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1420px) {
  .c-header .menu-list {
    gap: 2.1126760563vw;
  }
}
@media only screen and (any-hover: hover) and (min-width: 1300px) {
  .c-header .menu-list > li .hover-area:hover .item {
    color: #00C8BC;
  }
  .c-header .menu-list > li .hover-area:hover .child-menu-list-wrap {
    opacity: 1;
    pointer-events: all;
  }
  .c-header .menu-list > li .hover-area:hover .child-menu-list-wrap .child-menu-list {
    pointer-events: all;
  }
}
@media (any-hover: hover) {
  .c-header .menu-list > li > a:hover {
    color: #00C8BC;
  }
  .c-header .menu-list .child-menu-list a:hover {
    color: #00C8BC;
  }
  .c-header .sns-list > a:hover {
    background: #E2FAF9;
  }
  .c-footer .c-cta-area .cta-btn.line:hover {
    background: #fff;
  }
  .c-footer .c-cta-area .cta-btn.line:hover::before {
    background: #00C8BC;
  }
  .c-footer .c-cta-area .cta-btn.line:hover .txt {
    color: #00C8BC;
  }
  .c-footer .c-cta-area .cta-btn.tel:hover {
    background: #fff;
  }
  .c-footer .c-cta-area .cta-btn.tel:hover::before {
    background: #00C8BC;
  }
  .c-footer .c-cta-area .cta-btn.tel:hover .txt {
    color: #00C8BC;
  }
  .c-footer .c-cta-area .cta-btn.mail:hover {
    background: #fff;
  }
  .c-footer .c-cta-area .cta-btn.mail:hover::before {
    background: #00C8BC;
  }
  .c-footer .c-cta-area .cta-btn.mail:hover .txt {
    color: #00C8BC;
  }
  .c-footer .c-fixed-btn:hover {
    background: #fff;
    color: #00C8BC;
  }
  .c-footer .c-fixed-btn:hover::after {
    background: #00C8BC;
  }
  .c-footer #pagetop a:hover {
    background: #fff;
  }
  .c-footer #pagetop a:hover::after {
    background: #333;
  }
  .c-footer .sns-list > a:hover {
    background: #E2FAF9;
  }
  .c-ttl03.aco-btn:hover,
  .c-article-body h2.aco-btn:hover {
    color: #00C8BC;
  }
  .c-product-box:not(.no-hover):hover .img-area {
    background: #E2FAF9;
  }
  .c-product-box:not(.no-hover):hover .img-area img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .c-product-box:not(.no-hover):hover .c-btn-arrow::after {
    -webkit-transform: rotate(-180deg) scale(1.3);
            transform: rotate(-180deg) scale(1.3);
  }
  .c-anchor-list li a:hover {
    background: #00C8BC;
    color: #fff;
  }
  .c-anchor-list li a:hover::before {
    background: #00C8BC;
  }
  .c-anchor-list li a:hover::after {
    background: #fff;
  }
  .c-product-btn-wrap .pri-btn:hover {
    background: #fff;
  }
  .c-product-btn-wrap .pri-btn:hover .txt {
    color: #00C8BC;
  }
  .c-voice-section .voice-list .list-item:hover .img-area img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .sns-modal .sns-modal-close:hover {
    background: #999999;
  }
  .sns-modal .sns-list > li a:hover .img {
    border: 2px solid #999999;
  }
  .c-btn01:hover {
    background: #00C8BC;
  }
  .c-btn01:hover .txt {
    color: #fff;
  }
  .c-btn01:hover [class*=ico-] {
    background: #fff;
  }
  .c-btn01:hover [class*=ico-]::after {
    background: #00C8BC;
  }
  .c-btn01.c-primary:hover {
    background: #fff;
  }
  .c-btn01.c-primary:hover .txt {
    color: #00C8BC;
  }
  .c-btn01.c-primary:hover .ico-arrow {
    background: #00C8BC;
  }
  .c-btn01.c-primary:hover .ico-arrow::after {
    background: #fff;
  }
  .c-btn01.c-back:hover {
    background: #fff;
  }
  .c-btn01.c-back:hover .txt {
    color: #999999;
  }
  .c-btn01.c-back:hover .ico-arrow {
    background: #999999;
  }
  .c-btn01.c-back:hover .ico-arrow::after {
    background: #fff;
  }
  .c-btn01.c-back.primary:hover .txt {
    color: #00C8BC;
  }
  .c-btn01.c-back.primary:hover .ico-arrow {
    background: #00C8BC;
  }
  .c-btn01.c-black:hover {
    background: #fff;
  }
  .c-btn01.c-black:hover .txt {
    color: #333333;
  }
  .c-btn01.c-black:hover .ico-arrow {
    background: #333333;
  }
  .c-btn01.c-black:hover .ico-arrow::after {
    background: #fff;
  }
  .c-share-link:hover {
    color: #00C8BC;
  }
  .c-breadcrumb .list a:hover {
    text-decoration: underline;
  }
  .c-menu-list a:hover {
    background: #E2FAF9;
  }
  .home .mv-section .mv-splide .splide__slide .slide-link:hover {
    opacity: 0.7;
  }
  .home .item-section .pickup-item:hover {
    background: #E2FAF9;
  }
  .home .item-section .pickup-item:hover .c-btn-arrow::after {
    -webkit-transform: rotate(-180deg) scale(1.3);
            transform: rotate(-180deg) scale(1.3);
  }
  .home .color-section .line:hover {
    background: #E2FAF9;
  }
  .home .catalog-banner:hover {
    opacity: 0.8;
  }
  .home .popular-section .list-item:hover .img-area img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .home .news-section .list-item:hover .ttl {
    -webkit-text-decoration-color: currentColor;
            text-decoration-color: currentColor;
  }
  .contact .contact-section .link:hover {
    text-decoration: none;
  }
  .policy .info-section .link:hover {
    text-decoration: none;
  }
  .transaction .info-section .link:hover {
    text-decoration: none;
  }
  .archive-list a:hover {
    background: #E2FAF9;
  }
  .archive-thumb-list a:hover .img img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .archive-paging .page-numbers:not(.dot):not(.prev):not(.next):hover {
    background: #00C8BC;
    color: #fff;
  }
  .archive-paging .page-numbers:not(.dot).prev:hover, .archive-paging .page-numbers:not(.dot).next:hover {
    background: #fff;
  }
  .archive-paging .page-numbers:not(.dot).prev:hover::before, .archive-paging .page-numbers:not(.dot).next:hover::before {
    background: #00C8BC;
  }
  #ez-toc-container .ez-toc-list a:hover,
  #ez-toc-container .toc_list a:hover,
  #toc_container .ez-toc-list a:hover,
  #toc_container .toc_list a:hover {
    text-decoration: underline;
  }
  .qa .qa-box .question:hover {
    color: #00C8BC;
  }
  .qa .qa-box .txt .link:hover {
    -webkit-text-decoration-color: transparent;
            text-decoration-color: transparent;
  }
  .customers .voice-list .list-item:hover {
    color: #00C8BC;
  }
  .customers .voice-list .list-item:hover .img-area img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .customer-gallery .c-category-list label:hover {
    background-color: #00C8BC;
    color: #fff;
  }
  .customer-gallery .product-wrap .cont:hover .img-wrap img {
    scale: 1.1;
  }
  .customer-gallery .product-wrap .cont:hover .txt {
    color: #00C8BC;
  }
  .category .rec-section .rec-list > li .rec-link:hover .img img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .category-nav .search-area .search-btn:hover {
    background: #fff;
  }
  .category-nav .search-area .search-btn:hover::before {
    background: #00C8BC;
  }
  .category-nav-each .contents-wrap .nav-ttl .nav-acc-btn:hover {
    background: #E2FAF9;
    color: #00C8BC;
  }
  .category-nav-each .contents-wrap .item-tag:has(input:checked):hover {
    background: #fff;
    color: #00C8BC;
  }
  .category-nav-each .contents-wrap .item-tag:hover {
    background: #00C8BC;
    color: #fff;
  }
  .firstorder .qa-section .qa-box .question:hover {
    color: #00C8BC;
  }
  .how-to-order .c-anchor-section .btn-area .btn:hover {
    background: #fff;
    color: #00C8BC;
  }
  .how-to-order .c-num-list .link:hover {
    -webkit-text-decoration-color: transparent;
            text-decoration-color: transparent;
  }
  .how-to-order .line-order-section .download-btn:hover {
    opacity: 0.8;
  }
  .how-to-order .line-order-section .shop-btn:hover {
    background: #fff;
    color: #00C8BC;
  }
  .how-to-order .line-order-section .shop-btn:hover::before {
    background: #00C8BC;
  }
  .how-to-order .line-order-section .shop-btn:hover .arrow {
    background: #00C8BC;
  }
  .how-to-order .line-order-section .shop-btn:hover .arrow::after {
    background: #fff;
  }
  .how-to-order .line-order-section .line-btn:hover {
    background: #fff;
    color: #2EAC38;
  }
  .how-to-order .line-order-section .line-btn:hover::before {
    background: #2EAC38;
  }
  .how-to-order .line-order-section .line-btn:hover .arrow {
    background: #2EAC38;
  }
  .how-to-order .line-order-section .line-btn:hover .arrow::after {
    background: #fff;
  }
  .category.detail .link-txt .link:hover {
    -webkit-text-decoration-color: transparent;
            text-decoration-color: transparent;
  }
  .category.detail .ex-table td .table-link:hover {
    -webkit-text-decoration-color: transparent;
            text-decoration-color: transparent;
  }
  .emblem-logo .c-alert-area:hover {
    background: white;
    color: #FF516E;
  }
  .emblem-logo .c-alert-area:hover .alert-txt::before {
    background: #FF516E;
  }
  .emblem-logo .c-alert-area:hover .arrow {
    background: #FF516E;
  }
  .emblem-logo .c-alert-area:hover .arrow::before {
    background: #fff;
  }
  .customuniform .point-section .banner a:hover {
    opacity: 0.6;
  }
  .customuniform .qa-section .qa-box .question:hover {
    color: #00C8BC;
  }
  .customuniform .flow-section .c-flow-list .attention a:hover {
    -webkit-text-decoration-color: transparent;
            text-decoration-color: transparent;
  }
  .customuniform .bottom-banner a:hover {
    opacity: 0.6;
  }
}
@media only screen and (any-hover: hover) and (max-width: 1300px) {
  .c-header .menu-list .child-menu-list-wrap:hover {
    opacity: 1;
    pointer-events: all;
  }
  .c-header .menu-list .child-menu-list-wrap:hover .child-menu-list {
    pointer-events: all;
  }
}
@media only screen and (min-width: 1101px) {
  .c-price-section .inn {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 1280px !important;
  }
}
@media only screen and (max-width: 1100px) {
  .c-price-section .acc-box + .acc-box {
    margin-top: 52px;
  }
}
@media only screen and (max-width: 374px) {
  .c-contact input[name^=size] {
    width: 120px;
  }
  .c-contact input[name^=quantity] {
    width: 90px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1100px) {
  .home .item-section .product-list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media only screen and (min-width: 768px) and (any-hover: hover) {
  .home .check-banner:hover {
    opacity: 0.8;
  }
}
@media only screen and (max-width: 360px) {
  .category .category-area .banner-wrap .ranking-wrap .ttl-wrap::before {
    left: -15px;
  }
  .category .category-area .banner-wrap .ranking-wrap .ttl-wrap::after {
    right: -25px;
  }
  .emblem-logo .free-emblem-section .c-alert-area .alert-txt::before {
    left: -10px;
  }
  .emblem-logo .free-emblem-section .c-alert-area .arrow {
    right: 5px;
  }
}
@media only screen and (min-width: 500px) {
  .category .category-area .banner-wrap .ranking-wrap .ttl-wrap::before {
    bottom: -5px;
  }
  .category .category-area .banner-wrap .ranking-wrap .ttl-wrap::after {
    bottom: -5px;
  }
}
@media only screen and (min-width: 500px) and (min-width: 600px) {
  .category .category-area .banner-wrap .ranking-wrap .ttl-wrap::before {
    bottom: -15px;
  }
  .category .category-area .banner-wrap .ranking-wrap .ttl-wrap::after {
    bottom: -15px;
  }
}
@media only screen and (min-width: 500px) and (min-width: 600px) and (min-width: 700px) {
  .category .category-area .banner-wrap .ranking-wrap .ttl-wrap::before {
    left: 2.6041666667vw;
    bottom: -25px;
  }
  .category .category-area .banner-wrap .ranking-wrap .ttl-wrap::after {
    right: 2.6041666667vw;
    bottom: -20px;
  }
}
@media only screen and (min-width: 375px) {
  .category .category-area .banner-wrap .ranking-wrap .c-product-list .box {
    width: calc((100% - 40px) / 3);
  }
}
@media only screen and (max-width: 767px) and (max-width: 360px) {
  .how-to-order .line-order-section .line-btn {
    font-size: 14px;
  }
}
@media only screen and (max-width: 350px) {
  .category.detail .plan-wrap .c-item-card-splide .card .ttl {
    font-size: 15px;
  }
  .print-font .font-section .font-list .item img:not(.item-ttl) {
    width: 71%;
  }
  .emblem-logo .original-emblem-section .attention-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 0;
  }
}
@media only screen and (min-width: 1100px) {
  .category.detail .step-wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 370px) {
  .emblem-logo .free-logo-section .c-alert-area .alert-txt::before {
    left: -15px;
  }
  .emblem-logo .free-logo-section .c-alert-area .sp-small {
    display: block;
  }
  .emblem-logo .free-logo-section .c-alert-area .arrow {
    right: 10px;
  }
}
@media (any-hover) {
  .category-top .plan-wrap + .inner-block .banner:not(.no-hover):hover {
    opacity: 0.6;
  }
}
@media only screen and (min-width: 571px) {
  .customuniform .size-block .c-size-wrap {
    margin-right: auto;
    padding-right: 0;
    max-width: none;
  }
}
/*# sourceMappingURL=style.css.map */
/*# sourceMappingURL=style.css.map */