@charset "UTF-8";
/* コンテンツ最大幅 */
/* color */
/* ============================================ */
/* font */
/* ============================================ */
/* business */
/* ============================================ */
.more {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  font-family: "EB Garamond", serif;
  font-weight: 500;
  font-size: 1.6rem;
}
@media all and (max-width: 896px) {
  .more {
    margin-top: 20px;
    font-size: 1.4rem;
  }
}
.more a {
  position: relative;
  padding: 10px 50px 10px 24px;
  border: 1px solid #363628;
  border-radius: 100px;
  background: #fff;
}
@media all and (max-width: 896px) {
  .more a {
    padding: 0 50px 0 24px;
  }
}
.more a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 18px;
  height: 10px;
  background: url(../images/common/ico_ar.svg) no-repeat center/cover;
  translate: 0 -50%;
  transition: 0.3s;
  filter: brightness(0);
}
@media (hover: hover) {
  .more a:hover {
    opacity: 1;
    border-color: #4179af;
    color: #4179af;
  }
  .more a:hover::after {
    filter: none;
  }
}
.more.end {
  margin-top: -20px;
}
@media all and (max-width: 896px) {
  .more.end {
    margin-top: 0;
  }
  .more.end a {
    padding-block: 5px;
  }
}

.intro {
  margin-top: 50px;
  line-height: 2.2;
}
@media all and (max-width: 896px) {
  .intro {
    margin-top: 30px;
    letter-spacing: -0.03em;
  }
}
.intro p + p {
  margin-top: 2em;
}
@media all and (max-width: 896px) {
  .intro p + p {
    margin-top: 1em;
  }
}
.intro .anc {
  margin-top: 50px;
  text-align: center;
}
@media all and (max-width: 896px) {
  .intro .anc {
    margin-block: 20px 24px;
    font-size: 1.2rem;
  }
}
.intro .anc ul {
  display: flex;
  border: 1px solid #bfbfbf;
}
@media all and (max-width: 896px) {
  .intro .anc ul {
    flex-wrap: wrap;
  }
}
.intro .anc ul li {
  width: 16.6666666667%;
}
@media all and (max-width: 896px) {
  .intro .anc ul li {
    width: 33.3333333333%;
  }
}
.intro .anc ul li:not(:last-child) {
  border-right: 1px solid #bfbfbf;
}
@media all and (max-width: 896px) {
  .intro .anc ul li:nth-child(3n) {
    border-right: 0;
  }
  .intro .anc ul li:nth-child(n+4) {
    border-top: 1px solid #bfbfbf;
  }
}
.intro .anc ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 100%;
  padding: 20px 10px 60px;
}
@media all and (max-width: 896px) {
  .intro .anc ul li a {
    padding: 10px 0 30px;
    line-height: 1.5;
  }
}
.intro .anc ul li a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 30px;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-right: 1px solid #363628;
  border-bottom: 1px solid #363628;
  rotate: 45deg;
  transition: 0.3s;
}
@media all and (max-width: 896px) {
  .intro .anc ul li a::after {
    bottom: 16px;
    width: 12px;
    height: 12px;
    margin-left: -6px;
  }
}
@media (hover: hover) {
  .intro .anc ul li a:hover {
    background: #4179af;
    color: #fff;
  }
  .intro .anc ul li a:hover::after {
    border-right-color: #fff;
    border-bottom-color: #fff;
  }
}

.catalog {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 60px;
  padding-block: 40px;
  border-radius: 4vw 4vw 0 0;
  background: #ecf2f7;
}
@media all and (max-width: 896px) {
  .catalog {
    gap: 40px;
    margin-top: 40px;
    border-radius: 20px 20px 0 0;
  }
}
.catalog section {
  width: calc(100% - 30px);
  max-width: 1500px;
  margin-inline: auto;
  padding-block: 60px;
  border-radius: 4vw;
  background: #fff;
  line-height: 2;
}
@media all and (max-width: 896px) {
  .catalog section {
    padding-block: 40px 30px;
    border-radius: 20px;
  }
}
.catalog section .inner {
  width: calc(100% - 50px);
}
@media all and (max-width: 896px) {
  .catalog section .inner {
    width: calc(100% - 30px);
  }
}
.catalog section .lead {
  display: flex;
  justify-content: space-between;
  gap: 3.65vw;
}
@media all and (max-width: 896px) {
  .catalog section .lead {
    flex-direction: column;
    gap: 16px;
  }
}
.catalog section .lead .exp {
  width: calc(60% - 3.65vw);
}
@media all and (max-width: 896px) {
  .catalog section .lead .exp {
    width: 100%;
  }
}
.catalog section .lead figure {
  flex: none;
  width: 40%;
}
@media all and (max-width: 896px) {
  .catalog section .lead figure {
    width: 100%;
    /*img {
      aspect-ratio: 16/9;
      object-fit: cover;
      object-position: top;
    }*/
  }
}
.catalog section h2 {
  position: relative;
  margin: 0 0 50px 70px;
  padding: 20px 0 20px 84px;
  border-top: 1px solid #bfbfbf;
  border-bottom: 1px solid #bfbfbf;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media all and (max-width: 896px) {
  .catalog section h2 {
    margin: 0 0 30px 50px;
    padding: 10px 0 10px 30px;
    font-size: 1.4rem;
    letter-spacing: normal;
  }
}
.catalog section h2 i {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: -70px;
  width: 140px;
  height: 140px;
  border: 1px solid #bfbfbf;
  border-radius: 50%;
  background: #fff;
  translate: 0 -50%;
}
@media all and (max-width: 896px) {
  .catalog section h2 i {
    left: -50px;
    width: 70px;
    height: 70px;
  }
}
.catalog section h2 i img {
  width: 100%;
}
.catalog section#specialty h2 i img {
  width: 95px;
}
.catalog section#concession h2 i img {
  width: 65px;
}
.catalog section#oem h2 i img {
  width: 85px;
}
.catalog section#ec h2 i img, .catalog section#global h2 i img {
  width: 85px;
}
@media all and (max-width: 896px) {
  .catalog section#specialty h2 i img {
    width: 45px;
  }
  .catalog section#concession h2 i img {
    width: 35px;
  }
  .catalog section#oem h2 i img {
    width: 40px;
  }
  .catalog section#ec h2 i img, .catalog section#global h2 i img {
    width: 45px;
  }
}
.catalog section figure:has(img + img) {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 8px;
  margin-top: 8px;
}
@media all and (max-width: 896px) {
  .catalog section figure:has(img + img) {
    margin-top: 0;
  }
}
.catalog section figure:has(img + img) img {
  width: calc((100% - 8px) / 2);
}
.catalog section .brand-list {
  margin-top: 24px;
}
@media all and (max-width: 896px) {
  .catalog section .brand-list {
    margin-top: 10px;
  }
}
.catalog section .brand-list h3 {
  margin-bottom: 16px;
  color: #a89981;
  text-align: center;
  font-family: "EB Garamond", serif;
  font-size: 2rem;
  font-weight: 500;
}
@media all and (max-width: 896px) {
  .catalog section .brand-list h3 {
    margin-bottom: 5px;
    font-size: 1.6rem;
  }
}
.catalog section .brand-list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media all and (max-width: 896px) {
  .catalog section .brand-list ul {
    gap: 8px;
  }
}
.catalog section .brand-list ul li {
  width: calc((100% - 80px) / 5);
  text-align: center;
}
@media all and (max-width: 896px) {
  .catalog section .brand-list ul li {
    width: calc((100% - 32px) / 5);
  }
}
.catalog section .brand-list ul li img {
  height: 24px;
  filter: brightness(0);
}
@media all and (max-width: 896px) {
  .catalog section .brand-list ul li img {
    height: 12px;
  }
}
.catalog section .brand-list ul li img.puretre {
  height: 20px;
}
@media all and (max-width: 896px) {
  .catalog section .brand-list ul li img.puretre {
    height: 10px;
  }
}
.catalog section .brand-list ul li img.prepoint {
  height: 20px;
}
@media all and (max-width: 896px) {
  .catalog section .brand-list ul li img.prepoint {
    height: 11px;
  }
}
.catalog section .brand-list ul li img.collet {
  height: 20px;
}
@media all and (max-width: 896px) {
  .catalog section .brand-list ul li img.collet {
    height: 9px;
  }
}
.catalog section .brand-list ul li img.rootstar {
  height: 16px;
}
@media all and (max-width: 896px) {
  .catalog section .brand-list ul li img.rootstar {
    height: 9px;
  }
}
.catalog section .brand-list ul li img.melting {
  height: 18px;
}
@media all and (max-width: 896px) {
  .catalog section .brand-list ul li img.melting {
    height: 10px;
  }
}
.catalog section .brand-list ul li img.soeurs {
  height: 30px;
}
@media all and (max-width: 896px) {
  .catalog section .brand-list ul li img.soeurs {
    height: 14px;
  }
}
.catalog section .brand-list ul li img.saladbowl {
  height: 14px;
}
@media all and (max-width: 896px) {
  .catalog section .brand-list ul li img.saladbowl {
    height: 7px;
  }
}
.catalog section .brand-list ul li img.juno {
  height: 14px;
}
@media all and (max-width: 896px) {
  .catalog section .brand-list ul li img.juno {
    height: 7px;
  }
}
.catalog section .client-list {
  margin-top: 24px;
  text-align: center;
}
@media all and (max-width: 896px) {
  .catalog section .client-list {
    margin-top: 10px;
  }
}
.catalog section .client-list h3 {
  margin-bottom: 16px;
  color: #a89981;
  font-size: 2rem;
  font-weight: 500;
}
@media all and (max-width: 896px) {
  .catalog section .client-list h3 {
    margin-bottom: 5px;
    font-size: 1.6rem;
  }
}
.catalog section .point {
  counter-reset: number;
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 70px;
}
@media all and (max-width: 896px) {
  .catalog section .point {
    margin-top: 50px;
  }
}
.catalog section .point li {
  counter-increment: number;
  position: relative;
  margin-left: 65px;
  border-radius: 40px 0 40px 0;
}
@media all and (max-width: 896px) {
  .catalog section .point li {
    margin-left: 20px;
    border-radius: 20px 0 20px 0;
  }
}
.catalog section .point li::before, .catalog section .point li::after {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -32px;
  left: -65px;
  z-index: 2;
  width: 70px;
  height: 70px;
  padding-bottom: 35px;
  color: #fff;
  font-family: "EB Garamond", serif;
  font-weight: 500;
}
@media all and (max-width: 896px) {
  .catalog section .point li::before, .catalog section .point li::after {
    top: -33px;
    left: -28px;
    width: 40px;
    height: 40px;
    padding-bottom: 20px;
  }
}
.catalog section .point li::before {
  content: "POINT";
  font-size: 1rem;
  border-radius: 50%;
  letter-spacing: 0.1em;
}
@media all and (max-width: 896px) {
  .catalog section .point li::before {
    font-size: 0.6rem;
  }
}
.catalog section .point li::after {
  content: "";
  clip-path: polygon(50% 100%, 100% 100%, 100% 50%);
}
.catalog section .point li dl {
  display: flex;
  align-items: center;
  position: relative;
  top: -24px;
  left: -20px;
  padding: 20px 30px 20px 50px;
  border-radius: 40px 0 40px 0;
}
@media all and (max-width: 896px) {
  .catalog section .point li dl {
    flex-direction: column;
    top: -8px;
    left: -8px;
    padding: 15px 10px 15px 15px;
    border-radius: 20px 0 20px 0;
    line-height: 1.75;
  }
}
.catalog section .point li dl::before {
  content: counter(number, decimal-leading-zero);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -11px;
  left: -45px;
  z-index: 2;
  width: 70px;
  height: 70px;
  padding-top: 16px;
  color: #fff;
  font-family: "EB Garamond", serif;
  font-weight: 500;
  font-size: 3.6rem;
}
@media all and (max-width: 896px) {
  .catalog section .point li dl::before {
    top: -28px;
    left: -20px;
    width: 40px;
    height: 40px;
    font-size: 2rem;
    padding-top: 14px;
  }
}
.catalog section .point li dl dt {
  flex: none;
  position: relative;
  width: 31%;
  font-size: 1.8rem;
}
@media all and (max-width: 896px) {
  .catalog section .point li dl dt {
    width: 100%;
    margin-bottom: 10px;
    font-size: 1.5rem;
    line-height: 1.6;
  }
}
.catalog section .point li dl dd {
  position: relative;
  margin-left: 20px;
  padding-left: 20px;
}
@media all and (max-width: 896px) {
  .catalog section .point li dl dd {
    margin-left: 0;
    padding-left: 0;
  }
}
.catalog section .point li dl dd::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: #363628;
}
@media all and (max-width: 896px) {
  .catalog section .point li dl dd::before {
    content: none;
  }
}
.catalog section .point li:nth-child(1) {
  background: linear-gradient(45deg, #eeebda, #ded7b6);
}
.catalog section .point li:nth-child(1)::before, .catalog section .point li:nth-child(1)::after {
  background: #ac9b45;
}
.catalog section .point li:nth-child(1) dl {
  background: #f7f5ec;
}
.catalog section .point li:nth-child(2) {
  background: linear-gradient(45deg, #efe5d7, #deccb1);
}
.catalog section .point li:nth-child(2)::before, .catalog section .point li:nth-child(2)::after {
  background: #ad7e39;
}
.catalog section .point li:nth-child(2) dl {
  background: #f7f2eb;
}
.catalog section .point li:nth-child(3) {
  background: linear-gradient(45deg, #e1e2e9, #c5c6d4);
}
.catalog section .point li:nth-child(3)::before, .catalog section .point li:nth-child(3)::after {
  background: #6b6d90;
}
.catalog section .point li:nth-child(3) dl {
  background: #f0f0f4;
}
.catalog section .point li:nth-child(4) {
  background: linear-gradient(45deg, #d9e4ef, #b8cde1);
}
.catalog section .point li:nth-child(4)::before, .catalog section .point li:nth-child(4)::after {
  background: #4179af;
}
.catalog section .point li:nth-child(4) dl {
  background: #ecf2f7;
}
.catalog section .point li:nth-child(5) {
  background: linear-gradient(45deg, rgba(203, 221, 211, 0.7) 55%, rgb(203, 221, 211) 100%);
}
.catalog section .point li:nth-child(5)::before, .catalog section .point li:nth-child(5)::after {
  background: #8faf9a;
}
.catalog section .point li:nth-child(5) dl {
  background: #eef4f1;
}
.catalog section .point li:nth-child(6) {
  background: linear-gradient(45deg, rgba(229, 207, 207, 0.7) 55%, rgb(229, 207, 207) 100%);
}
.catalog section .point li:nth-child(6)::before, .catalog section .point li:nth-child(6)::after {
  background: #c99a9a;
}
.catalog section .point li:nth-child(6) dl {
  background: #f7eeee;
}
.catalog section .box {
  position: relative;
  margin-top: 85px;
  border: 1px solid #ac9b45;
  border-radius: 30px 30px 0 0;
}
@media all and (max-width: 896px) {
  .catalog section .box {
    margin-top: 40px;
    border-radius: 15px 15px 0 0;
  }
}
.catalog section .box-inner {
  padding: 40px 50px 50px;
}
@media all and (max-width: 896px) {
  .catalog section .box-inner {
    padding: 10px 10px 16px;
  }
}
.catalog section .box-inner:has(figure) {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media all and (max-width: 896px) {
  .catalog section .box-inner:has(figure) {
    flex-direction: column;
    gap: 16px;
  }
}
.catalog section .box-inner:has(figure) figure {
  flex: none;
  width: 40%;
  margin-top: 0;
}
@media all and (max-width: 896px) {
  .catalog section .box-inner:has(figure) figure {
    width: 100%;
    /*img {
      aspect-ratio: 16/9;
      object-fit: cover;
      object-position: top;
    }*/
  }
}
.catalog section .box-inner:has(dl) {
  display: flex;
  gap: 40px;
}
@media all and (max-width: 896px) {
  .catalog section .box-inner:has(dl) {
    flex-direction: column;
    gap: 20px;
  }
}
.catalog section .box-inner:has(dl) dl {
  width: calc((100% - 40px) / 2);
}
@media all and (max-width: 896px) {
  .catalog section .box-inner:has(dl) dl {
    width: 100%;
  }
}
.catalog section .box-inner:has(dl) dl dt {
  margin-bottom: 8px;
  font-size: 1.8rem;
}
@media all and (max-width: 896px) {
  .catalog section .box-inner:has(dl) dl dt {
    margin-bottom: 2px;
    font-size: 1.4rem;
  }
}
.catalog section .box-inner:has(dl) dl dt:not(:first-child) {
  margin-top: 30px;
}
@media all and (max-width: 896px) {
  .catalog section .box-inner:has(dl) dl dt:not(:first-child) {
    margin-top: 10px;
  }
}
.catalog section .box-inner:has(dl) dl dd ul {
  margin-left: 10px;
}
.catalog section .box-inner:has(dl) dl dd ul li {
  position: relative;
  padding-left: 16px;
  line-height: 1.8;
}
.catalog section .box-inner:has(dl) dl dd ul li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ac9b45;
}
@media all and (max-width: 896px) {
  .catalog section .box-inner:has(dl) dl dd ul li::before {
    top: 9px;
  }
}
.catalog section .box h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 0;
  width: 400px;
  height: 50px;
  margin: -25px auto 0;
  background: #fff;
  font-size: 2rem;
  letter-spacing: 0.1em;
}
@media all and (max-width: 896px) {
  .catalog section .box h3 {
    width: 240px;
    height: 32px;
    margin-top: -16px;
    font-size: 1.3rem;
    letter-spacing: normal;
  }
}
.catalog section .box h3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10px;
  z-index: -1;
  width: calc(100% - 20px);
  height: 100%;
  background: #ac9b45;
  clip-path: polygon(6% 0%, 94% 0%, 100% 50%, 94% 100%, 6% 100%, 0% 50%);
}
.catalog section .box h3::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 11px;
  z-index: -1;
  width: calc(100% - 22px);
  height: calc(100% - 2px);
  background: #fff;
  clip-path: polygon(6% 0%, 94% 0%, 100% 50%, 94% 100%, 6% 100%, 0% 50%);
}
.catalog section .store {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}
@media all and (max-width: 896px) {
  .catalog section .store {
    gap: 8px;
    margin-top: 12px;
  }
}
.catalog section .store li {
  width: calc((100% - 48px) / 3 * 0.7);
}
@media all and (max-width: 896px) {
  .catalog section .store li {
    width: calc((100% - 16px) / 3);
  }
  .catalog section .store li:only-child {
    width: 170px;
  }
}
.catalog section .store li a {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 0;
  padding: 10px 15px 15px;
  border: 1px solid #363628;
  font-size: clamp(1.2rem, 1.2vw, 1.8rem);
}
@media all and (max-width: 896px) {
  .catalog section .store li a {
    justify-content: flex-end;
    height: 100%;
    padding: 5px;
    font-size: 0.95rem;
  }
}
.catalog section .store li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #4179af 0%, #73aace 100%);
  transition: 0.3s;
}
.catalog section .store li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 28px;
  height: 28px;
  border: 1px solid #363628;
  border-radius: 50%;
  background: url(../images/common/ico_ar.svg) no-repeat center/12px auto;
  translate: 0 -50%;
  transition: 0.3s;
  filter: brightness(0);
}
@media all and (max-width: 896px) {
  .catalog section .store li a::after {
    top: 20px;
    right: 7px;
    width: 20px;
    height: 20px;
    background-size: 10px auto;
  }
}
.catalog section .store li a p[lang=en] {
  color: #a89981;
  font-family: "EB Garamond", serif;
  font-size: clamp(1.2rem, 1.6vw, 2.6rem);
  font-weight: 500;
  line-height: 1.5;
}
@media all and (max-width: 896px) {
  .catalog section .store li a p[lang=en] {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    line-height: 1;
  }
}
@media (hover: hover) {
  .catalog section .store li a:hover {
    color: #fff;
    opacity: 1;
  }
  .catalog section .store li a:hover::before {
    animation: gnav 0.3s ease-out 0s forwards;
  }
  .catalog section .store li a:hover::after {
    border-color: #fff;
    background-color: #fff;
    filter: none;
  }
  .catalog section .store li a:hover p[lang=en] {
    color: inherit;
  }
}
.catalog section#consign h3 {
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: 700;
}
@media all and (max-width: 896px) {
  .catalog section#consign h3 {
    margin-bottom: 5px;
    font-size: 1.4rem;
  }
}
.catalog section#consign h4 {
  margin-block: 24px 16px;
  padding: 5px 10px;
  background: #a89981;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.catalog section#consign h5 {
  margin-bottom: 5px;
  font-weight: 700;
  color: #a89981;
}
.catalog section#consign .cap {
  margin-top: 16px;
  padding: 5px 10px;
  border: 1px solid #a89981;
}
@media all and (max-width: 896px) {
  .catalog section#consign .cap {
    margin-top: 10px;
  }
}
.catalog section#consign ul {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media all and (max-width: 896px) {
  .catalog section#consign ul {
    gap: 16px;
  }
}
.catalog section#consign ul li {
  display: flex;
}
.catalog section#consign ul li figure {
  flex: none;
  width: 40%;
}
@media all and (max-width: 896px) {
  .catalog section#consign ul li figure {
    width: 100%;
  }
}
.catalog section#ec .lead figure img {
  border: 1px solid #eee;
}
.catalog section#oem .store li, .catalog section#global .store li {
  min-width: 310px;
}
@media all and (max-width: 896px) {
  .catalog section#oem .store li, .catalog section#global .store li {
    min-width: initial;
  }
}

/*# sourceMappingURL=business.css.map */
