@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;600;700&display=swap");
.shopping-guide {
  margin: 100px 0 -50px;
  padding: 0 0 40px;
}

@media screen and (max-width: 979px) {
  .shopping-guide {
    margin: 60px 0 -40px;
  }
}

.shopping-guide .section_head {
  margin-bottom: 30px;
}

.shopping-guide .section_head h2 {
  line-height: 1.41;
}

.shopping-guide .section_head h2 span {
  font-size: .4em;
  font-weight: 400;
  font-family: 'Noto Sans JP', sans-serif;
  display: block;
}

.shopping-guide .inner {
  max-width: 690px;
  margin: 0 auto;
  padding: 0 20px;
}

@media screen and (max-width: 979px) {
  .shopping-guide .inner {
    max-width: 400px;
  }
}

.shopping-guide .section_head {
  margin-bottom: 30px;
}

.shopping-guide__box {
  background: transparent;
  padding: 0;
}

.shopping-guide__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

@media screen and (max-width: 979px) {
  .shopping-guide__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

.shopping-guide__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #aaa;
  padding: 30px 20px;
  text-align: center;
  aspect-ratio: 1;
  transition: border-color 0.2s ease;
  outline: 1px solid #fff;
  transition: outline 0.3s ease;
}

@media screen and (max-width: 979px) {
  .shopping-guide__item {
    padding: 20px 15px;
  }
}

.shopping-guide__item:hover {
  border-color: #0ac;
  transition: color 0.3 ease;
  outline: 6px solid #e6f7fa;
}

.shopping-guide__icon {
  max-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  color: #111;
}

@media screen and (max-width: 979px) {
  .shopping-guide__icon {
    margin-bottom: 8px;
  }
}

.shopping-guide__icon .material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: 240;
  font-style: normal;
  font-size: 48px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  font-feature-settings: 'liga';
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}

@media screen and (max-width: 979px) {
  .shopping-guide__icon .material-symbols-outlined {
    font-size: 40px;
  }
}

.shopping-guide__text {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.shopping-guide__link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.hover-rotate-icon .shopping-guide__icon .material-symbols-outlined {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
}

.hover-rotate-icon:hover .shopping-guide__icon .material-symbols-outlined {
  transform: rotateY(360deg);
  color: #0ac;
}

.hover-rotate-icon:hover .shopping-guide__item {
  border-color: #0ac;
}

.hover-underline-expand .shopping-guide__text {
  position: relative;
}

.hover-underline-expand .shopping-guide__text::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #0ac;
  transition: width 0.3s ease, left 0.3s ease;
}

.hover-underline-expand:hover .shopping-guide__text::after {
  width: 100%;
  left: 0;
}

.hover-underline-expand:hover .shopping-guide__item {
  border-color: #0ac;
}

.hover-underline-expand:hover .shopping-guide__icon {
  color: #0ac;
}

.hover-underline-expand .shopping-guide__icon {
  transition: color 0.3s ease;
}

/*# sourceMappingURL=shopping-guide.map */