@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
      text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  -webkit-margin-after: 0;
          margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.8;
}

/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1, h2,
h3, h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  font: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

*,
*::after,
*::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  text-rendering: optimizeSpeed;
  font-weight: 400;
  line-height: 1.8;
  font-size: 16px;
  color: #222222;
}

a {
  text-decoration: none;
}
a:hover {
  -webkit-transition: color ease 0.3s;
  transition: color ease 0.3s;
}

img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

main {
  display: block;
}

table {
  border-collapse: collapse;
}

textarea {
  font-family: "Noto Sans JP", Helvetica Neue, Arial, Hiragino Sans, Hiragino Kaku Gothic ProN, BIZ UDPGothic, Meiryo, sans-serif;
  font-size: 1rem;
}

ul, ol {
  list-style: none;
}

input[type=button] {
  display: block;
  border: none;
}

input[type=button]:hover {
  cursor: pointer;
}

button {
  cursor: pointer;
  padding: 0;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled=true] {
  cursor: default;
}

.header {
  width: 100%;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.header__inner {
  max-width: 1150px;
  margin: auto;
  padding: 30px 30px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}
@media (max-width: 768px) {
  .header__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding: 12px 15px;
  }
}
.header ul {
  padding-left: 0;
}
@media (max-width: 768px) {
  .header {
    position: fixed;
    z-index: 20;
  }
}

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  max-width: 490px;
}
.logo__img {
  max-width: 390px;
}
@media (max-width: 768px) {
  .logo {
    max-width: 257px;
    margin: 0 0 0 auto;
  }
}

.anniversary {
  max-width: 70px;
}
@media (max-width: 768px) {
  .anniversary {
    display: none;
  }
}

.navi-container {
  margin-bottom: 14px;
}
@media (max-width: 768px) {
  .navi-container {
    margin-bottom: 12px;
  }
}

.navi-search {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
@media (max-width: 768px) {
  .navi-search {
    max-width: unset;
    width: 100%;
  }
}

.navi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 17px;
     -moz-column-gap: 17px;
          column-gap: 17px;
  font-weight: 700;
}
.navi__item {
  position: relative;
}
@media (hover: hover) {
  .navi__item::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    margin: auto;
    -webkit-transform-origin: center top;
            transform-origin: center top;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    background: #222222;
  }
}
.navi__item:hover::before {
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
@media (max-width: 768px) {
  .navi {
    display: none;
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
    max-width: 257px;
    margin: 0 0 0 auto;
  }
  .navi__item {
    font-size: 13px;
    line-height: 1;
  }
}

.search__box {
  position: relative;
  width: 100%;
}
.search__name {
  display: block;
  width: 100%;
  padding: 6px 16px;
  border-radius: 10px;
  border: 1px solid #213A70;
  line-height: 1;
}
.search__button {
  position: absolute;
  top: 6px;
  right: 16px;
  border: none;
  background: unset;
}
@media (max-width: 768px) {
  .search._pc {
    display: none;
  }
}

@media (max-width: 768px) {
  .cart-link-sp {
    padding: 16px 0;
    border-bottom: 1px solid #cccccc;
  }
  .cart-link-sp a {
    display: block;
    font-weight: 700;
  }
  .menu-nav__item._service {
    font-weight: 700;
  }
}
.footer {
  padding: 80px 30px;
  background: #F6F6F6;
}
.footer ul {
  padding: 0;
}
@media (max-width: 768px) {
  .footer {
    padding: 30px 15px 20px;
  }
}

.footer-nav-container {
  width: 100%;
}

.footer-nav {
  max-width: 1090px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 14px;
  font-weight: 500;
  line-height: 2.6;
}
.footer-nav__lists {
  cursor: pointer;
}
@media (max-width: 768px) {
  .footer-nav__lists-container:not(:first-of-type) {
    display: none;
  }
}
.footer-nav__item a {
  position: relative;
}
@media (hover: hover) {
  .footer-nav__item a::before {
    background: #222222;
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    margin: auto;
    -webkit-transform-origin: center top;
            transform-origin: center top;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
}
.footer-nav__item a:hover::before {
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.footer-nav__item.slide {
  position: relative;
}
.footer-nav__item.slide:hover .footer-nav__categorie-container {
  opacity: 1;
  z-index: 10;
  padding: 0 1rem;
  left: 100%;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
}
.footer-nav__item.slide .footer-nav__categorie-container {
  position: absolute;
  top: 0;
  left: 100%;
  padding-bottom: 10px !important;
  opacity: 0;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  background: #ffffff;
  display: none;
}

.sns-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 80px auto 50px;
}
@media (max-width: 768px) {
  .sns-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 10px;
    margin: 30px auto;
  }
}

.sns-text {
  color: #213A70;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .sns-text {
    font-size: 20px;
  }
}

.sns-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}
.sns-icons__img._01 {
  width: 30px;
}
.sns-icons__img._02 {
  width: 40px;
}
@media (max-width: 768px) {
  .sns-icons {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.footer-anv-img {
  margin: 50px auto;
  width: 200px;
}
@media (max-width: 768px) {
  .footer-anv-img {
    width: 150px;
    margin: 30px auto;
  }
}

.footer-logo {
  max-width: 390px;
  width: 100%;
  margin: 50px auto 10px;
}
@media (max-width: 768px) {
  .footer-logo {
    max-width: 300px;
  }
}

.copy {
  font-size: 13px;
  text-align: center;
}

/* ハンバーガーメニュー */
.menu-button {
  display: none;
}
@media (max-width: 768px) {
  .menu-button {
    position: fixed;
    top: 0;
    left: 0;
    display: grid;
    place-items: center;
    place-content: center;
    width: 60px;
    height: 60px;
    border: none;
    cursor: pointer;
    z-index: 200;
    background-color: transparent;
  }
}

/* バー */
.bar,
.bar::before,
.bar::after {
  width: 16px;
  height: 2px;
  border-radius: 1px;
  background-color: #213A70;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.bar {
  display: grid;
}
.bar::before, .bar::after {
  content: "";
  grid-area: 1/1;
}
.bar::before {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}
.bar::after {
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
}

/* オープン時のバー */
.menu-open .bar {
  background-color: transparent;
}
.menu-open .bar::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background: #ffffff;
}
.menu-open .bar::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background: #ffffff;
}

/* メニューラベル */
.menu-label {
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  font-size: 10px;
  color: #ffffff;
}

/* オーバーレイ */
.overlay {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  /* オープン時のオーバーレイ */
}
.menu-open .overlay {
  visibility: visible;
  opacity: 1;
}

/* メニュー、ナビゲーションのコンテナ */
.menu {
  position: fixed;
  height: 100%;
  width: 80%;
  background-color: #fff;
  right: 0;
  top: 0;
  z-index: 300;
  overflow-y: auto;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.menu__inner {
  padding: 20px 15px;
}

/* オープン時のメニュー */
.menu-open .menu {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

/* オープン時のbody */
.menu-open {
  overflow: clip;
}

.menu-open .menu-button {
  top: 8px;
}

.buttons-conteiner {
  display: grid;
  grid-gap: 20px;
}

.button-conteiner {
  max-width: 300px;
  width: 100%;
  margin: auto;
}

.button {
  position: relative;
  display: block;
  width: 100%;
  padding: 17px;
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 500;
  border-radius: 10px;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.button::before {
  content: "";
  position: absolute;
  right: 20px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.button._button-primary {
  background: #213A70;
  color: #ffffff;
  border: 2px solid #213A70;
}
@media (hover: hover) {
  .button._button-primary:hover {
    background: #ffffff;
    color: #213A70;
  }
  .button._button-primary:hover::before {
    border-top: 2px solid #213A70;
    border-right: 2px solid #213A70;
  }
}
.button._button-secondary {
  background: #E15A28;
  color: #ffffff;
  border: 2px solid #E15A28;
}
@media (hover: hover) {
  .button._button-secondary:hover {
    background: #ffffff;
    color: #E15A28;
  }
  .button._button-secondary:hover::before {
    border-top: 2px solid #E15A28;
    border-right: 2px solid #E15A28;
  }
}
.button._button-tertiary {
  background: #ffffff;
  color: #213A70;
  border: 2px solid #213A70;
}
.button._button-tertiary::before {
  border-top: 2px solid #213A70;
  border-right: 2px solid #213A70;
}
@media (hover: hover) {
  .button._button-tertiary:hover {
    background: #213A70;
    color: #ffffff;
  }
  .button._button-tertiary:hover::before {
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
  }
}
@media (max-width: 768px) {
  .button {
    padding: 9px;
    font-size: 16px;
    font-weight: 700;
  }
}

.estimate-button-container {
  max-width: 300px;
  width: 100%;
  margin: 50px auto;
}
@media (max-width: 768px) {
  .estimate-button-container:last-of-type {
    margin: 0 auto;
  }
}

.estimate-button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  padding: 15px;
  border-radius: 10px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.estimate-button.submit {
  border: 2px solid #E15A28;
  background: #E15A28;
}
.estimate-button.back {
  border: 2px solid #213A70;
  background: #213A70;
}
.estimate-button::before {
  content: "";
  position: absolute;
  right: 20px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
@media (hover: hover) {
  .estimate-button.submit:hover {
    background: #ffffff;
    color: #E15A28;
  }
  .estimate-button.submit:hover::before {
    border-top: 2px solid #E15A28;
    border-right: 2px solid #E15A28;
  }
}
@media (hover: hover) {
  .estimate-button.back:hover {
    background: #ffffff;
    color: #213A70;
  }
  .estimate-button.back:hover::before {
    border-top: 2px solid #213A70;
    border-right: 2px solid #213A70;
  }
}

.main-contents .item-lists {
  margin-bottom: 40px;
}

.item-lists {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 40px;
}
@media (max-width: 768px) {
  .item-lists {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}
.item-lists .item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  row-gap: 6px;
}

@media (hover: hover) {
  .item:hover .item__img {
    border: 1px solid #213A70;
  }
}
.item__img {
  border: 1px solid #dddddd;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.item__img img {
  aspect-ratio: 18/15;
  -o-object-fit: cover;
     object-fit: cover;
}
.item__trade-name {
  margin-top: 8px !important;
  min-height: 33px;
  font-size: 15px;
  font-weight: 700;
  color: #222222;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.item__price {
  font-size: 14px;
  font-weight: 700;
  color: #C60000;
}
.item__minimum-order {
  font-size: 13px;
  color: #222222;
}

.item-lists .item__price-general,
.item-lists .item__price-nomal,
.item-lists .item__price-sale {
  font-size: 13px;
  color: #222222;
}
.item-lists .item__price-nomal span,
.item-lists .item__price-sale span {
  color: #c60000;
  font-weight: 700;
}
.item-lists .item__price-sale {
  position: relative;
  left: 30px;
}
.item-lists .item__price-sale ::before {
  content: "⇒";
  position: absolute;
  top: -6px;
  left: -30px;
  font-size: 20px;
}
.item-lists .item__price-normal {
  color: #222222;
}
.item-lists .ec-productRole__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4px;
  font-weight: 500;
}
.item-lists .ec-productRole__tags li {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  height: 16px;
  font-size: 12px;
}
.item-lists .button {
  margin-top: 8px;
  padding: 0;
  border-radius: 4px;
  font-size: 15px;
}

.ec-topicpath .ec-topicpath__item a {
  color: #213A70;
}

.menu-header {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 700;
}

.menu-nav-container {
  margin: 0 0 30px;
}

.menu-nav {
  padding-left: 0;
}
.menu-nav ul {
  padding-left: 0;
}
.menu-nav__item {
  font-weight: 500;
  border-bottom: 1px solid #dddddd;
  -webkit-transition: background ease 0.3s;
  transition: background ease 0.3s;
}
@media (max-width: 768px) {
  .menu-nav__item {
    font-size: 15px;
  }
}
.menu-nav__item a {
  display: block;
  padding: 16px 0;
}
@media (hover: hover) {
  .menu-nav__item:hover {
    background: #F6F6F6;
  }
}
.menu-nav__item.drop {
  position: relative;
  cursor: pointer;
  padding: 16px 0;
}
.menu-nav__item.drop .menu-nav__categorie-container {
  padding-left: 20px;
}
.menu-nav__item.drop::after {
  content: "";
  position: absolute;
  top: 26px;
  right: 0;
  width: 13px;
  height: 7px;
  background: url(./../svg/arrow.svg);
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.menu-nav__categorie {
  font-size: 15px;
  font-weight: 700;
}
.menu-nav__categorie a {
  position: relative;
  display: inline-block;
}
@media (hover: hover) {
  .menu-nav__categorie a::before {
    background: #222222;
    content: "";
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 16px;
    margin: auto;
    -webkit-transform-origin: center top;
            transform-origin: center top;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
}
.menu-nav__categorie a:hover::before {
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.menu-nav__categorie-container {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.5s ease;
  transition: max-height 0.5s ease;
}

.menu-nav__item.open.drop::after {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}

.ec-layoutRole .ec-layoutRole__left {
  max-width: 250px;
  width: 100%;
  margin: 20px 30px 0;
  font-size: 15px;
}

.aside-nav {
  width: 100%;
}
@media (max-width: 768px) {
  .aside-nav {
    display: none;
  }
}

.aside-header {
  margin: 0 0 16px;
  font-weight: 700;
  font-size: 20px;
}

.menu-nav__lists-container._02,
.menu-nav__lists-container._03 {
  margin-top: 60px;
}

.hero {
  padding-top: 10px;
}
.hero img {
  aspect-ratio: 109/30;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .hero img {
    aspect-ratio: 375/160;
  }
}
@media (max-width: 768px) {
  .hero {
    padding-top: 68px;
  }
}

.information__text {
  padding: 12px;
  background: #213A70;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  line-height: 1;
}
@media (max-width: 768px) {
  .information__text {
    text-align: left;
    font-size: 12px;
    line-height: 2;
  }
}

.head-01 {
  padding-bottom: 4px;
  font-size: 26px;
  font-weight: 700;
  color: #213A70;
  text-align: center;
  line-height: 1.38;
  border-bottom: 1px solid #213A70;
}
@media (max-width: 768px) {
  .head-01 {
    font-size: 18px;
    margin: 0;
  }
}

.head-02 {
  padding: 12px;
  font-size: 26px;
  font-weight: 700;
  color: #213A70;
  text-align: center;
  line-height: 1.38;
  background: color(srgb 0.82 0.87 0.96 / 0.19);
  border-bottom: 4px solid #213A70;
  border-top: 4px solid #213A70;
}
@media (max-width: 768px) {
  .head-02 {
    font-size: 18px;
    margin: 0;
  }
}

.head-03 {
  position: relative;
  margin-bottom: 38px;
  font-size: 26px;
  font-weight: 700;
  color: #213A70;
  text-align: center;
  line-height: 1.38;
}
.head-03::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -8px;
  width: 60px;
  height: 1px;
  background: #213A70;
}
@media (max-width: 768px) {
  .head-03 {
    font-size: 18px;
    margin-bottom: 30px;
  }
}

.sub-link {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
  padding-left: 0;
}
.sub-link._hgroup {
  margin-top: 16px;
}

.sub-link__item a {
  position: relative;
  color: #213A70;
  font-weight: 500;
  -webkit-transition: color ease 0.3s;
  transition: color ease 0.3s;
}
@media (hover: hover) {
  .sub-link__item a:hover {
    color: #bc1864;
  }
}
.sub-link__item a::before, .sub-link__item a::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 2px;
  background: #213A70;
}
@media (max-width: 768px) {
  .sub-link__item a::before, .sub-link__item a::after {
    width: 60px;
  }
}
.sub-link__item a::before {
  top: -8px;
  left: -20px;
}
@media (max-width: 768px) {
  .sub-link__item a::before {
    left: -10px;
  }
}
.sub-link__item a::after {
  bottom: -8px;
  right: -20px;
}
@media (max-width: 768px) {
  .sub-link__item a::after {
    right: -10px;
  }
}
@media (max-width: 768px) {
  .sub-link__item a {
    font-size: 14px;
  }
}

.headding-label {
  position: relative;
  margin-bottom: 16px;
  padding: 6px 20px;
  background: #bc1864;
  color: #ffffff;
  font-weight: 700;
}
.headding-label::before {
  content: "";
  position: absolute;
  height: 0;
  width: 0;
  border: solid transparent;
  left: 30px;
  top: 100%;
  border-color: transparent;
  border-top-color: #bc1864;
  border-right-color: #bc1864;
  border-width: 6.5px;
}

.page-front-head__text {
  text-align: center;
  padding-top: 8px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .page-front-head__text {
    font-size: 14px;
    text-align: left;
  }
}

.news {
  margin-top: -30px;
}
.news__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  padding: 30px 10px;
  border-bottom: 1px solid #dddddd;
  font-weight: 500;
  -webkit-transition: background ease 0.3s;
  transition: background ease 0.3s;
}
@media (hover: hover) {
  .news__item a:hover {
    background: #f6f6f6;
  }
}
@media (max-width: 768px) {
  .news__item a {
    display: block;
    padding: 20px 10px;
  }
}
.news__date {
  font-size: 13px;
}
.news__all {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 30px 0 0 auto;
  font-weight: 500;
}
@media (hover: hover) {
  .news__all::before {
    background: #222222;
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    margin: auto;
    -webkit-transform-origin: center top;
            transform-origin: center top;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
}
.news__all:hover::before {
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.news__all a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 2rem;
}
.news__all a::before {
  content: "";
  position: absolute;
  right: 0;
  width: 10px;
  height: 10px;
  border-top: 2px solid #222222;
  border-right: 2px solid #222222;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.news__link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  color: #222222;
}
.news__link::after {
  content: "";
  position: absolute;
  bottom: 30px;
  right: 0;
  width: 20px;
  height: 20px;
  background-image: url(../svg/link.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.topics-container {
  margin-top: 50px;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .topics-container {
    padding: 0 15px;
  }
}
.topics-container .head-01 {
  margin-top: 0;
}
.topics-container .block-container {
  margin: 40px 0 0;
}

.topics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 40px 20px;
  justify-items: center;
  width: 100%;
}
.topics__item {
  max-width: 170px;
  width: 100%;
  border: 1px solid #dddddd;
}
.topics__item a {
  opacity: 1;
  -webkit-transition: opacity ease 0.3s;
  transition: opacity ease 0.3s;
}
@media (hover: hover) {
  .topics__item a:hover {
    opacity: 0.7;
  }
}
@media (max-width: 768px) {
  .topics {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
}

.page-contact-container {
  width: 100vw;
  margin: 100px calc(50% - 50vw) 0;
  padding: 30px;
  background: #FBFCF6;
}
@media (max-width: 768px) {
  .page-contact-container {
    margin: 50px calc(50% - 50vw) 0;
    padding: 30px 15px;
  }
}

.page-contact {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
.page-contact__head h2 {
  margin-top: 0;
  line-height: 1;
  font-size: 26px;
  font-weight: 700;
  color: #213A70;
  text-align: center;
  letter-spacing: 0.036rem;
}
@media (max-width: 768px) {
  .page-contact__head h2 {
    font-size: 20px;
  }
}
.page-contact__head p {
  margin-top: 20px;
  font-size: 20px;
}
.page-contact__head p br {
  display: none;
}
@media (max-width: 768px) {
  .page-contact__head p {
    margin-top: 15px;
    font-size: 16px;
  }
  .page-contact__head p br {
    display: block;
  }
}
.page-contact__text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  font-weight: 500;
}
@media (max-width: 768px) {
  .page-contact__text {
    font-size: 13px;
  }
}

.reception {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px auto;
  font-size: 20px;
  font-weight: 700;
}
.reception__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  .reception {
    margin: 15px auto;
    font-size: 18px;
  }
}

.page-contact-button-container {
  max-width: 360px;
  width: 100%;
  margin: 30px auto 0;
}

.page-contact-button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 25px 0;
  border-radius: 10px;
  border: 2px solid #E15A28;
  background: #E15A28;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.page-contact-button:hover {
  background: rgba(225, 90, 40, 0.08);
  color: #E15A28;
}
@media (max-width: 768px) {
  .page-contact-button {
    padding: 15px 0;
  }
}
.page-contact-button::before {
  content: "";
  position: absolute;
  right: 20px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
@media (hover: hover) {
  .page-contact-button:hover {
    background: #ffffff;
    color: #213A70;
  }
  .page-contact-button:hover::before {
    border-top: 2px solid #213A70;
    border-right: 2px solid #213A70;
  }
}

.pq_detail .ec-productRole__tags {
  padding-bottom: 0;
}

.ec-productRole__tag {
  width: 90px;
  padding: 2px;
  color: #ffffff !important;
  font-weight: 500 !important;
  border-radius: 3px;
  line-height: 1;
  text-align: center;
}
@media (max-width: 768px) {
  .ec-productRole__tag {
    font-size: 14px;
  }
}

.ec-layoutRole .tag_1 {
  background: linear-gradient(135deg, #ffd700 0%, #8b4513 100%);
  border: unset;
}
.ec-layoutRole .tag_2 {
  background: #bf0b5e;
  border: unset;
}
.ec-layoutRole .tag_3 {
  background: #457d51;
  border: unset;
}
.ec-layoutRole .tag_4 {
  background: #612fbe;
  border: unset;
}
.ec-layoutRole .tag_5 {
  background: linear-gradient(135deg, #ff8724 0%, #e91e63 50%, #ff8724 100%);
  border: unset;
}
.ec-layoutRole .tag_6 {
  background: #0264ce;
  border: unset;
}
.ec-layoutRole .tag_7 {
  background: #bf0404;
  border: unset;
}

.breadcrumb {
  margin-bottom: 0;
}

.breadcrumb-container {
  max-width: 1130px;
  width: 100%;
  margin: auto;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 500;
}
.breadcrumb-container a {
  color: #213A70;
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media (max-width: 768px) {
  .breadcrumb-container {
    padding: 60px 15px 0;
    font-size: 11px;
  }
}

.media {
  display: grid;
  row-gap: 40px;
  margin: 40px auto;
}
@media (max-width: 768px) {
  .media {
    row-gap: 30px;
    margin: 20px auto;
  }
}

.media-item {
  display: grid;
  grid-template-columns: minmax(0, 150px) 1fr;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}
@media (max-width: 768px) {
  .media-item {
    grid-template-columns: 1fr;
    row-gap: 8px;
  }
}

.media-item__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}

.media-item__title {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}
.media-item__title a {
  position: relative;
  color: #213A70;
}
@media (hover: hover) {
  .media-item__title a::before {
    background: #213A70;
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    margin: auto;
    -webkit-transform-origin: center top;
            transform-origin: center top;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
}
.media-item__title a:hover::before {
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.media-item__summary {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 768px) {
  .media-item__summary {
    font-size: 14px;
  }
}

.media__category-tag {
  position: relative;
  color: #213A70;
}
@media (hover: hover) {
  .media__category-tag::before {
    background: #213A70;
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    margin: auto;
    -webkit-transform-origin: center top;
            transform-origin: center top;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
}
.media__category-tag:hover::before {
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.media-item__img {
  width: 100%;
  max-width: 150px;
  aspect-ratio: 1/1;
  border: 2px solid rgba(225, 89, 40, 0);
  -webkit-transition: border ease 0.3s;
  transition: border ease 0.3s;
}
@media (hover: hover) {
  .media-item__img:hover {
    border: 2px solid #e15928;
  }
}
@media (max-width: 768px) {
  .media-item__img {
    margin: auto;
  }
}

.pagination-container {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 30px 0 30px auto;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 4px;
     -moz-column-gap: 4px;
          column-gap: 4px;
}
.pagination__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 8px 12px;
  border: 1px solid #dddddd;
  line-height: 1;
  background: #ffffff;
  color: #222222;
}
@media (hover: hover) {
  .pagination__item a:hover {
    background: #f9c5b2;
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
  }
}
.pagination .active {
  background: #E15A28;
  color: #ffffff;
  pointer-events: none;
}

.cta-container {
  margin: 100px 0;
}
@media (max-width: 768px) {
  .cta-container {
    margin: 60px 0;
  }
}

.cta {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 520px));
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 50px 10px;
}
.cta__item img {
  max-width: 520px;
  max-width: 100%;
  height: auto;
  -webkit-transition: outline ease 0.3s;
  transition: outline ease 0.3s;
  outline: 2px solid rgba(255, 255, 255, 0);
}
@media (hover: hover) {
  .cta__item img:hover {
    outline: 2px solid #E15A28;
  }
}
@media (max-width: 1090px) {
  .cta {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}
@media (max-width: 768px) {
  .cta {
    row-gap: 30px;
  }
}

.sample-image {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 1/1;
  margin: 60px auto 0;
}
@media (max-width: 768px) {
  .sample-image {
    margin: 20px auto;
  }
}
.sample-image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid #cccccc;
}

.sample-item {
  padding-bottom: 20px;
  border-bottom: 1px solid #dddddd;
}
.sample-item:not(:first-of-type) {
  padding-top: 20px;
}

.sample-item__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  .sample-item__body {
    display: block;
  }
}

.sample-item__title {
  min-width: 200px;
  font-weight: 700;
}

.sample-item__note {
  font-size: 14px;
  font-weight: 700;
}

.sample-item__payment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}

.sample-quantity-input {
  width: 50px;
  height: 25px;
  margin-top: 8px;
  padding-right: 4px;
  border: 1px solid #dddddd;
  text-align: right;
}

.sample_request .estimate-button-container {
  margin: 50px auto 30px;
}
.sample_request .estimate-button__note {
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 768px) {
  .sample_request .estimate-button__note {
    text-align: left;
  }
}
.sample_request .sample-notice {
  padding: 50px;
  background: #f9f9f9;
  line-height: 2.5;
}
@media (max-width: 768px) {
  .sample_request .sample-notice {
    padding: 15px;
  }
}
.sample_request .sample-notice__item {
  position: relative;
  padding-left: 16px;
}
@media (max-width: 768px) {
  .sample_request .sample-notice__item {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.8;
  }
}
.sample_request .sample-notice__item::before {
  content: "・";
  position: absolute;
  left: 0;
}
.sample_request .sample-notice__item a {
  position: relative;
  color: #213A70;
  font-weight: 700;
}
@media (hover: hover) {
  .sample_request .sample-notice__item a::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 0;
    margin: auto;
    -webkit-transform-origin: center top;
            transform-origin: center top;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    background: #213A70;
  }
}
.sample_request .sample-notice__item a:hover::before {
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.sample_request .estimate-role {
  padding: 50px 0 0;
}

._pq-orderDelivery .ec-rectHeading h2 {
  margin-top: 0;
  padding: 17px;
  background: #f4f3f0;
  color: #222222;
  font-size: 16px;
}
._pq-orderDelivery .ec-imageGrid .ec-imageGrid__img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
._pq-orderDelivery .ec-imageGrid .ec-imageGrid__img img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
._pq-orderDelivery .ec-imageGrid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 8px 0;
  border-top: unset;
  color: #222222;
}
._pq-orderDelivery .ec-imageGrid .ec-imageGrid__content {
  display: grid;
  row-gap: 2px;
}
._pq-orderDelivery .ec-borderedList li {
  border-bottom: 1px solid #dddddd;
}
._pq-orderDelivery .ec-nameRequest {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}
._pq-orderDelivery .ec-orderDelivery__item {
  font-size: 15px;
}
._pq-orderDelivery .ec-estimatedNumber {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
._pq-orderDelivery .ec-estimatedNumber input {
  width: 60px;
  text-align: center;
}

._pq-orderConfirm .ec-rectHeading h2 {
  padding: 17px;
  background: #f4f3f0;
  color: #222222;
  font-size: 16px;
}
._pq-orderConfirm .ec-orderConfirm__note {
  margin-top: 8px;
  color: #222222;
  font-size: 15px;
  font-weight: 700;
}

._pq-orderSummary .ec-totalBox {
  background: #f4f3f0;
}
._pq-orderSummary .ec-totalBox__btn .ec-blockBtn--action {
  background: #E15A28;
  border: 2px solid #E15A28;
  border-radius: 10px;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
@media (hover: hover) {
  ._pq-orderSummary .ec-totalBox__btn .ec-blockBtn--action:hover {
    background: #ffffff;
    color: #E15A28;
  }
}
._pq-orderSummary .ec-totalBox__btn .ec-blockBtn--cancel {
  background: #213A70;
  border: 2px solid #213A70;
  border-radius: 10px;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
@media (hover: hover) {
  ._pq-orderSummary .ec-totalBox__btn .ec-blockBtn--cancel:hover {
    background: #ffffff;
    color: #213A70;
  }
}

.review_list .icon-guide {
  max-width: 1090px;
  margin: 0 auto;
  padding: 30px;
  background: #fbfcf6;
}

.review-list__item {
  width: 100%;
  margin: 30px auto 0;
  padding-bottom: 30px;
  border-bottom: 1px solid #dddddd;
}
.review-list__item .button-conteiner {
  max-width: 200px;
}
.review-list__item .button._button-secondary {
  padding: 4px;
  font-size: 16px;
}

.review-list__detail {
  display: grid;
  grid-template-columns: minmax(100px, 130px) auto;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
@media (max-width: 768px) {
  .review-list__detail {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}

.review-list__img {
  width: 100%;
  max-width: 130px;
}
.review-list__img img {
  border: 1px solid #dddddd;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

.review-list__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  padding: 8px 16px;
  border-bottom: 1px solid #f6f6f6;
}
.review-list__container:nth-of-type(even) {
  background: #fbfcf6;
}
.review-list__container > div:first-of-type {
  min-width: 90px;
}

.review-item-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .review-item-container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.review-item-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media (max-width: 768px) {
  .review-item-tags {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 8px;
  }
}
.review-item-tags [class^=tag_] {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 2px;
  font-size: 11px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1;
  border-radius: 3px;
}
.review-item-tags .tag_1 {
  background: linear-gradient(135deg, #ffd700 0%, #8b4513 100%);
  border: unset;
}
.review-item-tags .tag_2 {
  background: #bf0b5e;
  border: unset;
}
.review-item-tags .tag_3 {
  background: #457d51;
  border: unset;
}
.review-item-tags .tag_4 {
  background: #612fbe;
  border: unset;
}
.review-item-tags .tag_5 {
  background: linear-gradient(135deg, #ff8724 0%, #e91e63 50%, #ff8724 100%);
  border: unset;
}
.review-item-tags .tag_6 {
  background: #0264ce;
  border: unset;
}
.review-item-tags .tag_7 {
  background: #bf0404;
  border: unset;
}

.evaluation-container {
  display: grid;
  row-gap: 8px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px auto;
  padding: 16px;
  background: color(srgb 0.82 0.87 0.96 / 0.2);
}
@media (max-width: 768px) {
  .evaluation-container {
    width: 100%;
  }
  .evaluation-container > div {
    padding-bottom: 8px;
    border-bottom: 1px solid #dddddd;
  }
}

.evaluation {
  display: grid;
  grid-template-columns: 1fr auto 80px;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}
@media (max-width: 768px) {
  .evaluation {
    grid-template-columns: 1fr;
    row-gap: 8px;
  }
}

.evaluation__lank {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.evaluation__lank img {
  width: 20px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.evaluation__item {
  max-width: 200px;
  width: 100%;
}

.customer-message {
  margin: 20px auto;
}

.customer-message__head {
  font-weight: 700;
}

.pagination-info {
  margin-top: 30px;
  text-align: right;
}

.about-review {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 40px auto;
}
.about-review a {
  padding: 10px 20px;
  color: #213A70;
  font-weight: 700;
  border: 2px solid #213A70;
  border-radius: 4px;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
@media (hover: hover) {
  .about-review a:hover {
    background: #213A70;
    color: #ffffff;
  }
}

.search-keyword-block {
  padding: 30px;
  background: rgba(209, 222, 245, 0.2);
}
@media (max-width: 768px) {
  .search-keyword-block {
    padding: 20px;
  }
}

.search-keyword-block__title {
  font-size: 18px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .search-keyword-block__title {
    font-size: 16px;
  }
}

.search-keyword-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  padding-bottom: 20px;
}
.search-keyword-list a {
  position: relative;
  color: #213A70;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
@media (hover: hover) {
  .search-keyword-list a::before {
    background: #213A70;
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    margin: auto;
    -webkit-transform-origin: center top;
            transform-origin: center top;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
}
.search-keyword-list a:hover::before {
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.search-keyword-list a::after {
  content: "|";
  position: absolute;
  right: -20px;
  color: #dddddd;
}
@media (max-width: 768px) {
  .search-keyword-list a {
    font-size: 14px;
  }
}

.search-feature-list {
  display: grid;
  row-gap: 8px;
  padding-top: 20px;
  border-top: 1px solid #dddddd;
}
@media (max-width: 768px) {
  .search-feature-list {
    row-gap: 14px;
  }
}

.search-feature-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
@media (max-width: 768px) {
  .search-feature-list__item {
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
  }
}

.search-feature-list__note {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 768px) {
  .search-feature-list__note {
    font-size: 14px;
  }
}

.search-feature-list__title a {
  position: relative;
  color: #213A70;
}
@media (hover: hover) {
  .search-feature-list__title a::before {
    background: #213A70;
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    margin: auto;
    -webkit-transform-origin: center top;
            transform-origin: center top;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
}
.search-feature-list__title a:hover::before {
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
@media (max-width: 768px) {
  .search-feature-list__title {
    font-size: 14px;
    line-height: 1.6;
  }
}

.report_list .report-category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  width: 100%;
  padding: 30px;
  background: #fbfcf6;
}
@media (max-width: 768px) {
  .report_list .report-category {
    padding: 15px;
  }
}
.report_list .category-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 30px;
  color: #213A70;
  font-size: 24px;
  line-height: 1.4;
  padding-left: 10px;
  border-left: 5px solid #213A70;
}
@media (max-width: 768px) {
  .report_list .category-title {
    margin-top: 20px;
    font-size: 18px;
  }
}

.report-category__item {
  position: relative;
  font-size: 14px;
  font-weight: 500;
}
.report-category__item a {
  position: relative;
  color: #213A70;
}
@media (hover: hover) {
  .report-category__item a::before {
    background: #213A70;
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    margin: auto;
    -webkit-transform-origin: center top;
            transform-origin: center top;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
}
.report-category__item a:hover::before {
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.report-category__item:not(:last-of-type)::after {
  content: "|";
  position: absolute;
  right: -15px;
  color: #dddddd;
}

.report_item h3,
.report_item h4 {
  line-height: 1.2;
}
.report_item .red {
  color: #c60000;
}
.report_item .pink {
  color: #bc1864;
}
.report_item .orange {
  color: #e15a28;
}
.report_item .blue {
  color: #0264ce;
}
.report_item .green {
  color: #457d51;
}
.report_item .bold {
  font-weight: 700;
}
.report_item em {
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
}
@media (max-width: 768px) {
  .report_item em {
    font-size: 22px;
  }
}
.report_item .fs_L {
  font-size: 20px;
}
@media (max-width: 768px) {
  .report_item .fs_L {
    font-size: 18px;
  }
}
.report_item .fs_XL {
  font-size: 30px;
}
@media (max-width: 768px) {
  .report_item .fs_XL {
    font-size: 20px;
  }
}
.report_item .spaser_30 {
  width: 100%;
  height: 30px;
}
.report_item .spaser_16 {
  width: 100%;
  height: 16px;
}
.report_item .report_content_img {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px auto;
}
.report_item .report-item__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  margin: 20px 0 10px;
  line-height: 1;
}
.report_item .report-item__category {
  font-size: 14px;
  padding: 4px;
  background: #e1eef5;
  border-radius: 2px;
  font-weight: 500;
}
.report_item .report-item__date {
  font-size: 14px;
}
.report_item .report-content-head {
  position: relative;
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 700;
  overflow-wrap: anywhere;
  word-break: normal;
  border-bottom: 2px solid #dfdfdf;
}
.report_item .report-content-head::after {
  content: "";
  position: absolute;
  background-color: #E15A28;
  width: 60px;
  height: 3px;
  left: 0;
  bottom: -2px;
  z-index: 1;
}
@media (max-width: 768px) {
  .report_item .report-content-head {
    font-size: 22px;
  }
}
.report_item .report_head_01 {
  margin: 20px 0;
  border-bottom: 2px solid #213A70;
  font-size: 24px;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}
.report_item .report_head_01::first-letter {
  font-size: 30px;
  color: #213A70;
  font-weight: 700;
}
@media (max-width: 768px) {
  .report_item .report_head_01 {
    font-size: 20px;
  }
  .report_item .report_head_01::first-letter {
    font-size: 24px;
  }
}
.report_item .report_head_02 {
  position: relative;
  padding: 8px;
  background-color: #e1eef5;
}
.report_item .report_head_02::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  border-width: 0 20px 20px 0;
  border-style: solid;
  border-color: #72c4d2 #fff #72c4d2;
  -webkit-box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.15);
          box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
  .report_item .report_head_02 {
    font-size: 20px;
  }
}
.report_item .report_head_03 {
  margin: 20px 0;
  padding-left: 18px;
  font-size: 20px;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #72c4d2), color-stop(50%, #213a70));
  background-image: linear-gradient(#72c4d2 50%, #213a70 50%);
  background-size: 8px 100%;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .report_item .report_head_03 {
    font-size: 18px;
  }
}
.report_item .report_head_04 {
  margin: 20px 0;
  padding-left: 18px;
  font-size: 20px;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #f2f591), color-stop(50%, #e15a28));
  background-image: linear-gradient(#f2f591 50%, #e15a28 50%);
  background-size: 8px 100%;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .report_item .report_head_04 {
    font-size: 18px;
  }
}
.report_item .report_list {
  margin: 20px 0;
}
.report_item .report_list li {
  position: relative;
  padding-left: 16px;
  line-height: 2;
}
.report_item .report_list li::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  width: 5px;
  height: 5px;
  background: #213A70;
}
.report_item .report_list_num {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  counter-reset: report-num;
}
.report_item .report_list_num li {
  position: relative;
  padding-left: 30px;
  line-height: 2;
}
@media (max-width: 768px) {
  .report_item .report_list_num li {
    padding-left: 24px;
  }
}
.report_item .report_list_num li::before {
  counter-increment: report-num;
  content: counter(report-num);
  position: absolute;
  left: 0;
  top: 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 18px;
  height: 18px;
  background: #213a70;
  color: #ffffff;
  border-radius: 50%;
  font-weight: 500;
  font-size: 13px;
}
.report_item .link {
  position: relative;
  color: #213A70;
  font-weight: 500;
}
@media (hover: hover) {
  .report_item .link::before {
    background: #213A70;
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    margin: auto;
    -webkit-transform-origin: center top;
            transform-origin: center top;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
}
.report_item .link:hover::before {
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.report_item .profile {
  position: relative;
  width: 90%;
  margin: 40px auto;
  padding: 15px;
  font-weight: 500;
  border: 3px solid #213A70;
  -webkit-box-shadow: 5px 5px #a4adc0;
          box-shadow: 5px 5px #a4adc0;
}
.report_item .profile::before {
  content: "ライタープロフィール";
  position: absolute;
  top: -30px;
  left: 0;
  font-size: 18px;
}

.ec-topicpath .ec-topicpath__item--active a {
  color: #2977ac;
}

@media (max-width: 768px) {
  .ec-layoutRole .ec-layoutRole__main {
    margin-top: 70px;
  }
}

@media (max-width: 768px) {
  .ec-searchnavRole__topicpath {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .product_page .ec-layoutRole .ec-layoutRole__main {
    margin-top: 0;
  }
}

.youtube {
  max-width: 560px;
  margin: 40px auto;
  aspect-ratio: 16/9;
}
.youtube iframe {
  width: 100%;
}

.print-container {
  width: 100%;
  margin: 60px auto;
  padding: 40px;
  background: #fbfcf6;
}
@media (max-width: 768px) {
  .print-container {
    margin: 30px auto;
    padding: 30px 15px;
  }
}

.print-container__inner {
  max-width: 960px;
  margin: auto;
}

.print-img {
  max-width: 560px;
  margin: 40px auto;
}
.print-img figcaption {
  padding-top: 8px;
}

q::before,
q::after {
  content: none;
}

.print-head {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 700;
  color: #213A70;
  border-bottom: 3px solid;
  -o-border-image: linear-gradient(90deg, #213A70 0%, #87ceeb 100%) 1;
     border-image: -webkit-gradient(linear, left top, right top, from(#213A70), to(#87ceeb)) 1;
     border-image: linear-gradient(90deg, #213A70 0%, #87ceeb 100%) 1;
}

.print-text {
  margin-bottom: 16px;
}
.print-text._head {
  font-weight: 700;
}

.printing q, .printing cite {
  font-size: 12px;
  font-style: normal;
}

.agreement-container {
  width: 100%;
  margin: 60px auto;
  padding: 40px;
  background: #fbfcf6;
}
@media (max-width: 768px) {
  .agreement-container {
    margin: 30px auto;
    padding: 30px 15px;
  }
}

.agreement-container__inner {
  max-width: 960px;
  margin: auto;
}

@media (max-width: 768px) {
  .agreement-text {
    font-size: 15px;
  }
}

.agreement {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .agreement {
    margin-top: 20px;
  }
}

.agreement__head {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 700;
}

.agreement__list {
  counter-reset: list;
  list-style: none;
  margin-bottom: 20px;
  padding-left: 0;
}

.agreement__list-item {
  position: relative;
  padding-left: 40px;
  font-size: 14px;
}
@media (max-width: 768px) {
  .agreement__list-item {
    padding-left: 20px;
  }
}
.agreement__list-item::before {
  content: counter(list) ".";
  counter-increment: list;
  position: absolute;
  left: 0;
  top: 0;
  min-width: 30px;
  font-size: 14px;
  text-align: right;
}
@media (max-width: 768px) {
  .agreement__list-item::before {
    min-width: unset;
    left: 5px;
    font-size: 15px;
  }
}

.agreement-revision {
  font-size: 14px;
}

.agreement-revision__notice {
  margin-top: 20px;
}

.privacy-container {
  width: 100%;
  margin: 60px auto;
  padding: 40px;
  background: #fbfcf6;
}
@media (max-width: 768px) {
  .privacy-container {
    margin: 30px auto;
    padding: 30px 15px;
  }
}

.privacy-container__inner {
  max-width: 960px;
  margin: auto;
}

.privacy__tem {
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #dddddd;
}
@media (max-width: 768px) {
  .privacy__tem {
    grid-template-columns: 1fr;
  }
}

.suppliers-container {
  width: 100%;
  margin: 60px auto;
  padding: 40px;
  background: #fbfcf6;
}
@media (max-width: 768px) {
  .suppliers-container {
    margin: 30px auto;
    padding: 30px 15px;
  }
}

.suppliers-container__inner {
  max-width: 960px;
  margin: auto;
}

.suppliers-text {
  font-weight: 700;
}
@media (max-width: 768px) {
  .suppliers-text {
    font-size: 15px;
  }
}

.suppliers-page .suppliers__list {
  margin: 40px 0;
}
@media (max-width: 768px) {
  .suppliers-page .suppliers__list {
    margin: 20px 0;
  }
}

.suppliers__list-item {
  position: relative;
  padding-left: 32px;
}
.suppliers__list-item::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 16px;
  width: 5px;
  height: 5px;
  background: #213A70;
  border-radius: 50%;
}

.suppliers-info {
  margin: 40px 0;
}
@media (max-width: 768px) {
  .suppliers-info {
    margin: 20px 0;
  }
}

.sitemap-container {
  width: 100%;
  margin: 60px auto;
  padding: 40px;
  background: #fbfcf6;
}
@media (max-width: 768px) {
  .sitemap-container {
    margin: 30px auto;
    padding: 30px 15px;
  }
}

.sitemap-container__inner {
  max-width: 960px;
  margin: auto;
}

.sitemap {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, auto));
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 30px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.sitemap__list-item {
  font-size: 15px;
  margin-bottom: 10px;
}
.sitemap__list-item a {
  position: relative;
}
@media (hover: hover) {
  .sitemap__list-item a::before {
    background: #222222;
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    margin: auto;
    -webkit-transform-origin: center top;
            transform-origin: center top;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
}
.sitemap__list-item a:hover::before {
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.sitemap__head {
  position: relative;
  margin-bottom: 20px;
  padding-left: 10px;
  font-size: 16px;
  font-weight: 700;
}
.sitemap__head::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 4px;
  height: 20px;
  background: #213A70;
}

.about-sample-container {
  width: 100%;
  margin: 60px auto;
  padding: 40px;
  background: #fbfcf6;
}
@media (max-width: 768px) {
  .about-sample-container {
    margin: 30px auto;
    padding: 30px 15px;
  }
}

.about-sample-container__inner {
  max-width: 960px;
  margin: auto;
}

.about-sample-info {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 700;
}

.about-sample-img {
  width: 100%;
  margin-top: 20px;
}

.about-sample__item {
  position: relative;
  padding-left: 30px;
  line-height: 2;
}
.about-sample__item::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #213A70;
  left: 0;
  top: 13px;
}
.about-sample__item a {
  position: relative;
  color: #213A70;
  font-weight: 500;
}
@media (hover: hover) {
  .about-sample__item a::before {
    background: #213A70;
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    margin: auto;
    -webkit-transform-origin: center top;
            transform-origin: center top;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
}
.about-sample__item a:hover::before {
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.about-report-container {
  width: 100%;
  margin: 60px auto;
  padding: 40px;
  background: #fbfcf6;
}
@media (max-width: 768px) {
  .about-report-container {
    margin: 30px auto;
    padding: 30px 15px;
  }
}

.about-report-container__inner {
  max-width: 960px;
  margin: auto;
}

.about-report-read {
  font-size: 18px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .about-report-read {
    font-size: 16px;
  }
}

.about-report-text {
  margin-top: 20px;
}

.about-report {
  margin-top: 20px;
}
.about-report div {
  margin-bottom: 20px;
}

.about-report-head {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 700;
  color: #213A70;
  border-bottom: 3px solid;
  -o-border-image: linear-gradient(90deg, #213A70 0%, #87ceeb 100%) 1;
     border-image: -webkit-gradient(linear, left top, right top, from(#213A70), to(#87ceeb)) 1;
     border-image: linear-gradient(90deg, #213A70 0%, #87ceeb 100%) 1;
}

.about-report-list__item {
  position: relative;
  padding-left: 30px;
  line-height: 2;
}
@media (max-width: 768px) {
  .about-report-list__item {
    padding-left: 20px;
  }
}
.about-report-list__item::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #213A70;
  left: 0;
  top: 13px;
}

.about-report-page em {
  color: #213A70;
  font-size: 24px;
  font-weight: 700;
  font-style: normal;
}
@media (max-width: 768px) {
  .about-report-page em {
    font-size: 18px;
  }
}

.page-nav {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 8px 0 0 auto;
}

.page-nav__list {
  display: grid;
  grid-template-columns: auto auto auto auto auto;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  font-size: 14px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .page-nav__list {
    font-size: 12px;
    line-height: 1.2;
  }
}

.page-nav__item {
  padding: 0 8px;
}
@media (max-width: 768px) {
  .page-nav__item {
    padding: 0;
  }
}
.page-nav__item:not(:last-of-type) {
  position: relative;
}
.page-nav__item:not(:last-of-type)::after {
  content: "|";
  position: absolute;
  top: 0;
  right: -8px;
}
.page-nav__item a {
  position: relative;
  color: #213A70;
}
@media (hover: hover) {
  .page-nav__item a::before {
    background: #213A70;
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    margin: auto;
    -webkit-transform-origin: center top;
            transform-origin: center top;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
}
.page-nav__item a:hover::before {
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.page-nav__item._active {
  padding: 0 8px;
  color: #222222;
}
@media (max-width: 768px) {
  .page-nav__item._active {
    padding: 0;
  }
}

.ec-layoutRole {
  overflow-x: clip;
}

.section {
  width: 100%;
}

.main-container {
  padding: 20px 30px 0;
}
@media (max-width: 768px) {
  .main-container {
    padding: 0 15px;
  }
}

.main-container-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}

.main-contents {
  max-width: 780px;
  width: 100%;
  margin: 0 0 0 auto;
}

.main-contents-wide {
  max-width: 1090px;
  width: 100%;
  margin: auto;
}
.wide-block-container {
  max-width: 960px;
  width: 100%;
  margin: 40px auto 100px;
}
@media (max-width: 768px) {
  .wide-block-container {
    margin: 20px 0 60px;
  }
}

.main-contents-wide ul,
.block-container ul {
  margin-bottom: 0;
  padding-left: 0;
}

.block-container {
  margin: 40px 0 100px;
}
@media (max-width: 768px) {
  .block-container {
    margin: 20px 0 60px;
  }
}

.milky-white-container {
  max-width: 1090px;
  width: 100%;
  margin: 40px auto 100px;
  padding: 50px 40px;
  background: #fbfcf6;
}
@media (max-width: 768px) {
  .milky-white-container {
    margin: 20px auto 50px;
    padding: 30px 15px;
  }
}

.milky-white-block {
  max-width: 960px;
  width: 100%;
  margin: auto;
}

.main-container h2 {
  margin-top: 0;
}
.main-container h3 {
  margin-top: 0;
}

.slick-slider {
  margin-bottom: 0;
}

.ec-sliderItemRole {
  margin-bottom: 0;
}

.ec-debugModeAlert {
  display: none;
}

.ec-debugModeAlert + * {
  margin-top: 0;
}

.ec-layoutRole__contentTop {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .ec-layoutRole__contentTop {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .ec-layoutRole .ec-layoutRole__left {
    display: none;
  }
}

@media (max-width: 768px) {
  .ec-layoutRole__contents {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .ec-layoutRole .ec-layoutRole__mainWithColumn {
    width: 100%;
  }
}

.ec-off3Grid .ec-off3Grid__cell {
  max-width: 780px;
  width: 100%;
  margin: auto;
}

.ec-reportDescription {
  line-height: 1.8;
}

@media (max-width: 768px) {
  .pq-cart_page .ec-customerRole {
    padding: 0;
  }
}

.pq_detail .slick-slider {
  margin-bottom: 10px;
}
.pq_detail .item_nav {
  gap: 10px;
}
.pq_detail .slideThumb {
  width: 20%;
  width: calc(20% - 8px);
}
.pq_detail .slideThumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.pq_detail .ec-sliderItemRole .slideThumb {
  margin-bottom: 0;
}

body {
  background: #ffffff;
}

.ec-blockBtn--action._pq {
  height: unset;
  line-height: unset;
  padding: 5px;
  background: #213A70;
  border: 2px solid #213A70;
  border-radius: 5px;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
@media (hover: hover) {
  .ec-blockBtn--action._pq:hover {
    background: #ffffff;
    color: #213A70;
  }
}

@media (max-width: 768px) {
  .ec-searchnavRole__topicpath {
    margin-top: 52px;
  }
}
.pq-productRole-profile-containner {
  max-width: 300px;
  width: 100%;
  margin: auto;
}
@media (max-width: 768px) {
  .pq-productRole-profile-containner {
    max-width: 100%;
  }
}

.pq_detail .ec-productRole .ec-productRole__title .ec-headingTitle {
  color: #213A70;
  font-weight: 700;
  line-height: 1.4;
  text-wrap: auto;
}
@media (min-width: 768px) {
  .pq_detail .ec-productRole .ec-productRole__title .ec-headingTitle {
    font-size: 26px;
  }
}
.pq_detail .ec-productRole__tag {
  margin-bottom: 2px;
}
.pq_detail .ec-productRole__priceRegularPrice {
  font-size: 16px;
  color: #222222;
}
.pq_detail .ec-productRole__priceRegularTax {
  color: #222222;
}
.pq_detail .ec-productRole img {
  border: 1px solid #dddddd;
}
.pq_detail .ec-productRole .ec-productRole__tags,
.pq_detail .ec-productRole .ec-productRole__price {
  border: unset;
}

.general-sale-price {
  color: #222222;
  font-size: 16px;
  letter-spacing: 0.4px;
}
.general-sale-price__tax {
  font-size: 10px;
  margin-left: 5px;
}

.icon-guide {
  max-width: 900px;
  width: 100%;
  margin: 20px auto 50px;
}
.icon-guide__head {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 16px;
}
.icon-guide__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 10px;
}
.icon-guide__list div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
}
.icon-guide__list dd {
  font-size: 14px;
  font-weight: 500;
}

.detail-overview {
  max-width: 900px;
  width: 100%;
  margin: 50px auto 20px;
  border-top: 1px solid #dddddd;
}
.detail-overview__list div {
  display: grid;
  grid-template-columns: 200px auto;
  border-bottom: 1px solid #dddddd;
}
.detail-overview__list dt {
  display: grid;
  -ms-flex-line-pack: center;
      align-content: center;
  max-width: 200px;
  width: 100%;
  height: 100%;
  padding: 20px;
  background: #f5f5f5;
}
.detail-overview__list dd {
  width: 100%;
  padding: 20px;
  background: #ffffff;
}
.detail-overview__link {
  color: #213A70;
}
.detail-overview__link:hover {
  text-decoration: underline;
}

.detail-overview:last-of-type {
  margin-bottom: 50px;
}

.text-link {
  max-width: 800px;
  margin: 18px auto 100px;
}
.text-link a {
  color: #213A70;
  font-size: 18px;
  font-weight: 700;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
@media (hover: hover) {
  .text-link a:hover {
    color: #E15A28;
  }
}

.ec-price__price, .ec-price__tax {
  color: #222222;
}

@media (max-width: 768px) {
  .slick-slider {
    margin-bottom: unset;
  }
  .ec-sliderItemRole {
    margin-bottom: 8px;
  }
  .ec-price .ec-price__price {
    font-size: 22px;
  }
  .ec-price {
    margin-bottom: 8px;
  }
  .detail-overview {
    border-top: unset;
  }
  .detail-overview__list div {
    display: block;
    border-bottom: unset;
  }
  .detail-overview__list dt {
    max-width: 100%;
    padding: 10px 20px;
  }
  .detail-overview__list dd {
    padding: 10px 20px;
  }
  .text-link {
    margin: 18px auto 50px;
  }
}
.guide-head {
  max-width: 900px;
  width: 100%;
  margin: auto;
  cursor: pointer;
  background: #213A70;
  color: #ffffff;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
@media (hover: hover) {
  .guide-head:hover {
    background: rgba(209, 222, 245, 0.1882352941);
    color: #213A70;
  }
}

.guide-cotents {
  opacity: 0;
  max-height: 0;
  max-width: 900px;
  overflow: hidden;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.guide-cotents.is-active {
  opacity: 1;
  max-height: 2000px; /* コンテンツの高さに応じて調整 */
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.flow-contents:not(:first-of-type) {
  padding: 20px 0;
}

.flow-contents {
  border-bottom: 1px solid #dddddd;
}
.flow-contents__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #213A70;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.6363;
}
.flow-contents__head span {
  font-size: 50px;
  font-weight: 500;
  font-family: "游ゴシック", YuGothic, "Yu Gothic", Robot, sans-serif;
  line-height: 1;
}
@media (max-width: 768px) {
  .flow-contents__head {
    font-size: 20px;
  }
  .flow-contents__head span {
    font-size: 40px;
  }
}
.flow-contents._01 {
  padding-bottom: 20px;
}
.flow-contents._option .flow-contents__head {
  position: relative;
  color: #E15A28;
  padding-left: 66px;
  padding-bottom: 10px;
}
.flow-contents._option .flow-contents__head::before {
  content: "";
  position: absolute;
  left: 0;
  width: 50px;
  height: 50px;
  background: url(./../svg/star.svg);
  background-size: cover;
}
.flow-contents._04 p span {
  font-weight: 700;
}

.link-button-conteiner {
  max-width: 200px;
  width: 100%;
  margin: 10px 0 0 auto;
}

.link-button {
  width: 100%;
  border: 1px solid #213A70;
  border-radius: 4px;
}
.link-button a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 10px 9px;
  color: #213A70;
  font-weight: 700;
  line-height: 1.3;
}
.link-button a::after {
  content: "";
  position: absolute;
  right: 20px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #213A70;
  border-right: 2px solid #213A70;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

@media (hover: hover) {
  .link-button a:hover {
    color: #ffffff;
    background: #213A70;
  }
  .link-button a:after {
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
  }
  .link-button a:hover::after {
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
  }
}
.feature-block {
  width: 100%;
  margin-bottom: 100px;
}
.feature-block__head {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 700;
}
.feature-block__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}
.feature-block__contents:not(:last-of-type) {
  margin-bottom: 80px;
}
.feature-block__img {
  max-width: 100px;
  width: 100%;
}
.feature-block__attention {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 8px;
  font-weight: 700;
}
.feature-block__attention em {
  color: #213A70;
  font-size: 26px;
  font-style: normal;
}
@media (max-width: 768px) {
  .feature-block {
    margin-bottom: 50px;
  }
  .feature-block__contents {
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
  }
  .feature-block__contents:not(:last-of-type) {
    margin-bottom: 30px;
  }
  .feature-block__img {
    max-width: 50px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .feature-block__attention {
    display: block;
  }
  .feature-block__attention em {
    font-size: 20px;
  }
}

.feature-notice__head {
  font-size: 16px;
  font-weight: 700;
  line-height: 2.25;
}

.main-container .feature-notice-list {
  margin-bottom: 30px;
}
.main-container .feature-notice-list__item span {
  padding-right: 16px;
}

.company-profile {
  width: 100%;
}
.company-profile__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px 0;
  border-bottom: 1px solid #dddddd;
}
@media (max-width: 768px) {
  .company-profile__item {
    display: block;
  }
}
.company-profile__head {
  max-width: 250px;
  width: 100%;
}
.company-profile__link {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 1rem auto 0;
  color: #213A70;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
  -webkit-transition: color ease 0.3s;
  transition: color ease 0.3s;
}
.company-profile__link:hover {
  color: #E15A28;
}
@media (max-width: 768px) {
  .company-profile__link {
    text-align: left;
  }
}

.gmap {
  width: 100%;
}
.gmap iframe {
  aspect-ratio: 2.4/1;
  width: 100%;
}

.aboutNaming a {
  position: relative;
  font-weight: 500;
}
@media (hover: hover) {
  .aboutNaming a::before {
    background: #213A70;
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    margin: auto;
    -webkit-transform-origin: center top;
            transform-origin: center top;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
}
.aboutNaming a:hover::before {
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.aboutNaming._01 h2 {
  margin-bottom: 60px;
}

.aboutNaming__info, .aboutNaming__total {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}
.aboutNaming__total {
  color: #E15A28;
}

.promotion-text {
  max-width: 960px;
  margin: -70px auto 100px;
  color: #E15A28;
  font-weight: 700;
}

.aboutNaming._02 h3, .aboutNaming._03 h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 700;
}
.aboutNaming._02 span, .aboutNaming._03 span {
  display: inline-block;
  margin-right: 8px;
  padding: 2px 6px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 4px;
  color: #ffffff;
}
.aboutNaming__list,
.aboutNaming .submission ul {
  width: 100%;
  text-indent: -1rem;
  padding-left: 1rem;
  line-height: 2.5;
}
.aboutNaming__list li,
.aboutNaming .submission ul li {
  padding-left: 1rem;
}
.aboutNaming__list a,
.aboutNaming .submission ul a {
  color: #213A70;
  font-weight: 500;
}

.aboutNaming._02 span {
  background: #612fbe;
}

.aboutNaming._03 span {
  background: linear-gradient(135deg, #ff8724 0%, #e91e63 50%, #ff8724 100%);
}

.submission-info {
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: 700;
}

.submission div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #dddddd;
}
.submission dt {
  max-width: 140px;
  width: 100%;
  font-weight: 700;
}

.aboutNaming._06 p {
  line-height: 2.5;
}

.aboutNaming._08 .aboutNaming__print {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 250px));
  -ms-flex-pack: distribute;
      justify-content: space-around;
  gap: 50px 10px;
  margin-bottom: 30px;
}
.aboutNaming._08 figcaption {
  color: #213A70;
  text-align: center;
}
.aboutNaming._08 em {
  font-style: normal;
  font-size: 1.5rem;
  font-weight: 700;
}

.aboutNaming__item img {
  aspect-ratio: 25/20;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 768px) {
  .aboutNaming__info,
  .aboutNaming__total {
    font-size: 18px;
  }
  .aboutNaming__list {
    line-height: 2;
  }
  .aboutNaming .submission ul {
    line-height: 2;
  }
  .aboutNaming .promotion-text {
    margin: 20px auto 40px;
  }
  .aboutNaming .submission div {
    display: block;
  }
  .aboutNaming._08 em {
    font-size: 20px;
  }
}
.faq-title-head {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .faq-title-head {
    font-size: 16px;
  }
}

.faq-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.faq-title__item {
  position: relative;
  font-size: 20px;
  font-weight: 500;
}
@media (hover: hover) {
  .faq-title__item::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    margin: auto;
    -webkit-transform-origin: center top;
            transform-origin: center top;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    background: #222222;
  }
}
.faq-title__item:hover::before {
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
@media (max-width: 768px) {
  .faq-title__item {
    font-size: 16px;
  }
}

.faq-category {
  margin-top: 100px;
}
.faq-category__item {
  padding-bottom: 20px;
  border-bottom: 1px solid #dddddd;
}
.faq-category__item:not(:first-of-type) {
  margin-top: 20px;
}
.faq-category__item:last-of-type {
  margin-bottom: 100px;
}
.faq-category__item-q {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  padding-left: 36px;
}
.faq-category__item-q::before {
  content: "Q";
  position: absolute;
  left: 0;
  font-family: "Roboto", sans-serif;
  font-size: 30px;
  font-weight: 500;
}
.faq-category__item-a {
  padding: 16px 50px;
  background: #edf1fb;
}
@media (max-width: 768px) {
  .faq-category {
    margin-top: 50px;
  }
  .faq-category__item:last-of-type {
    margin-bottom: 50px;
  }
}

.ec-role {
  margin-top: 32px;
}
@media (max-width: 768px) {
  .ec-role {
    margin-top: 70px;
  }
}

.ec-cartRole {
  display: block;
}

.ec-progress .is-complete .ec-progress__number {
  background: #E15A28;
}

.ec-progress .is-complete .ec-progress__label {
  color: #E15A28;
}

.ec-progress .ec-progress__number,
.ec-progress .ec-progress__item:after {
  background: #213A70;
}

.ec-progress__label {
  color: #222222;
}

.pq-cart_page .ec-pageHeader h1 {
  color: #213A70;
  text-align: center;
  border-top: unset;
  font-size: 32px;
}
@media (max-width: 768px) {
  .pq-cart_page .ec-pageHeader h1 {
    font-size: 26px;
  }
}

.pq-cartTable-header {
  display: grid;
  grid-template-columns: 6% auto 12% 12%;
  padding: 17px 0;
  background: #f4f3f0;
  color: #222222;
  text-align: center;
  font-weight: 700;
}

.pq-cartTable-row {
  display: grid;
  grid-template-columns: 6% auto 12% 12%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #dddddd;
  color: #222222;
}
.pq-cartTable-row__delete {
  margin: auto;
  width: 12px;
  height: 12px;
}
.pq-cartTable-row__name {
  margin: auto;
}
.pq-cartTable-row__name input[type=radio] {
  width: 14px;
  height: 14px;
  margin-right: 8px;
  accent-color: #213A70;
}
.pq-cartTable-row__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
.pq-cartTable-row__price {
  margin: auto;
}
.pq-cartTable-row__minQuantity {
  margin: auto;
}
.pq-cartTable-row__quantity {
  margin: auto;
}

.item-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100px;
  height: 100px;
}
.item-img a {
  display: inline-block;
  height: 100%;
  border: 1px solid #dddddd;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
@media (hover: hover) {
  .item-img a:hover {
    border: 1px solid #213A70;
  }
}
.item-img a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.item-code {
  font-size: 14px;
}

.item-name {
  margin: 8px 0;
  font-weight: 700;
}

.estimate-number {
  max-width: 70px;
  width: 100%;
  padding: 4px;
  line-height: 1;
  text-align: right;
  border: 1px solid #dddddd;
}

.cart-tableTitle-cntainer {
  padding: 0 20px;
}

.cart-tableTitle {
  margin: 50px 0 10px;
  font-size: 26px;
  font-weight: 700;
  color: #E15A28;
}
@media (max-width: 768px) {
  .cart-tableTitle {
    margin-top: 20px;
    font-size: 20px;
  }
}

.estimate-notes {
  margin: 30px 0 50px;
  padding-left: unset;
  color: #222222;
}
.estimate-notes__item {
  margin-bottom: 10px;
  text-indent: -16px;
  padding-left: 16px;
}
.estimate-notes__link {
  color: #213A70;
  font-weight: 700;
}

.estimate-detail-container {
  max-width: 1090px;
  width: 100%;
  margin: auto;
  padding: 50px;
  background: #fbfcf6;
  color: #222222;
}
.estimate-detail-container a {
  color: #213A70;
  font-weight: 700;
}
@media (max-width: 768px) {
  .estimate-detail-container {
    padding: 30px 15px;
  }
}

.estimate-detail {
  line-height: 1.8;
}
.estimate-detail__title {
  margin: 0 0 20px;
  font-size: 16px;
  font-weight: 700;
}
.estimate-detail:not(:last-of-type) {
  margin-bottom: 50px;
}
.estimate-detail__item {
  margin-bottom: 16px;
  list-style: disc;
}
.estimate-detail__item::marker {
  color: #777777;
}
.estimate-detail:last-of-type .estimate-detail__item:last-of-type {
  margin-bottom: 0;
}

.estimate-notes__link,
.estimate-detail__link {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .pq-cartTable-container {
    overflow-y: auto;
    scrollbar-color: #213A70 #fbfcf6;
    scrollbar-width: 6px;
  }
  .pq-cartTable,
  .pq-cartTable-row {
    min-width: 750px;
    font-size: 15px;
  }
}
.estimate-role {
  padding: 50px 20px;
  background: #fbfcf6;
}
.estimate-role .cart-tableTitle-container {
  max-width: 960px;
  width: 100%;
  margin: auto;
  padding: 0;
}

.estimate-form-container {
  max-width: 960px;
  width: 100%;
  margin: auto;
}

.estimate-form-block {
  padding: 50px;
  background: #ffffff;
}
@media (max-width: 768px) {
  .estimate-form-block {
    padding: 20px 15px;
  }
}

.estimate-formTitle {
  margin: 0 0 10px;
  font-size: 26px;
  font-weight: 700;
  color: #E15A28;
}
@media (max-width: 768px) {
  .estimate-formTitle {
    font-size: 20px;
  }
}

.estimate-form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.estimate-form-row:first-of-type {
  padding-bottom: 30px;
}
.estimate-form-row:not(:first-of-type) {
  padding: 30px 0;
}
.estimate-form-row:last-of-type {
  padding-bottom: 0;
}
.estimate-form-row:not(:last-of-type) {
  border-bottom: 1px solid #dddddd;
}
@media (max-width: 768px) {
  .estimate-form-row {
    display: block;
  }
}

.estimate-form-label {
  -ms-flex-preferred-size: 230px;
      flex-basis: 230px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #222222;
}

.estimate-input {
  width: 180px;
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #cccccc;
}

.estimate-form-input {
  max-width: 100%;
  width: 100%;
}
.estimate-form-input ._wide {
  width: 100%;
}
.estimate-form-input._grid {
  display: grid;
  row-gap: 15px;
}

.estimate-textArea {
  width: 100%;
  border: 1px solid #cccccc;
  border-radius: 4px;
}

.estimate-form-required {
  color: #C33333;
}

.estimate-pref {
  width: 180px;
  padding: 8px;
  border: 1px solid #cccccc;
  border-radius: 4px;
}

.estimate-form-example {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 500;
}

._grid .estimate-form-example {
  margin-top: -10px;
}

.estimate-zipcode-link {
  position: relative;
  margin-left: 8px;
  color: #213A70;
  font-weight: 500;
}
.estimate-zipcode-link::after {
  content: "";
  position: absolute;
  top: -3px;
  right: -28px;
  width: 20px;
  height: 20px;
  background-image: url(../svg/new_window.svg);
  background-size: contain;
  background-repeat: no-repeat;
  color: #ffffff;
}
@media (max-width: 768px) {
  .estimate-zipcode-link {
    display: block;
    margin: 8px 0 0;
  }
  .estimate-zipcode-link::after {
    top: 0;
    left: 104px;
    width: 18px;
    height: 18px;
  }
}

.estimate-form-note {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
}

.estimate-form-input input {
  margin-bottom: 0;
}
.estimate-form-input .estimate-pref {
  max-width: 180px;
  width: 100%;
}
.estimate-form-input .ec-zipInput {
  width: 100%;
  margin-bottom: 16px;
}
.estimate-form-input .p-street-address {
  margin-bottom: 16px;
}
.estimate-form-input input[name="nonmember[email][first]"] {
  margin-bottom: 16px;
}
.estimate-form-input input[name="nonmember[company_name]"] {
  width: 100%;
}
.estimate-form-input input[name="nonmember[department_name]"] {
  width: 100%;
}
.estimate-form-input select {
  width: 180px;
  height: 40px;
  background: #ffffff;
}

.ec-cartCompleteRole {
  color: #222222;
}

.order-id {
  color: #213A70;
}

.estimate-form-row textarea {
  padding: 8px;
}

.complete-message {
  text-align: center;
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  .complete-message {
    font-size: 16px;
  }
}
.complete-message._2 {
  margin-top: 20px;
}

.emphasis {
  margin: 40px auto;
  color: #C60000;
  font-weight: 700;
}

.estimate-confirmation-header {
  display: grid;
  grid-template-columns: auto 120px 120px 120px;
  padding: 16px 0;
  background: #f4f3f0;
  color: #222222;
  text-align: center;
  font-weight: 700;
}

.estimate-confirmation-row {
  display: grid;
  grid-template-columns: auto 120px 120px 120px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #dddddd;
  background: #ffffff;
  color: #222222;
}
.estimate-confirmation-row .item-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.estimate-confirmation-row .item-img {
  border: 1px solid #dddddd;
}
.estimate-confirmation-row .item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.item-namePrint {
  text-align: center;
}

.estimate-confirm {
  width: 100%;
  margin: 50px 0;
  color: #222222;
}
.estimate-confirm__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
  border-bottom: 1px solid #cccccc;
}
.estimate-confirm__row:first-of-type {
  padding: 0 0 40px;
}
@media (max-width: 768px) {
  .estimate-confirm__row:first-of-type {
    padding: 0 0 20px;
  }
}
.estimate-confirm__row:not(:first-of-type) {
  padding: 40px 0;
}
@media (max-width: 768px) {
  .estimate-confirm__row:not(:first-of-type) {
    padding: 20px 0;
  }
}
@media (max-width: 768px) {
  .estimate-confirm__row {
    display: block;
  }
}
.estimate-confirm__label {
  -ms-flex-preferred-size: 200px;
      flex-basis: 200px;
  font-weight: 400;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 768px) {
  .estimate-confirm__label {
    margin-bottom: 8px;
  }
}
.estimate-confirm__data {
  font-weight: 700;
}