@charset "UTF-8";
:root {
  --shadow: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
  --padding-container: clamp(1.5rem, -0.4064rem + 5.08vw, 4.8rem);
  --text-color: #2D265A;
  --wave-color: #ffffff;
}

form {
  -webkit-margin-after: 0;
          margin-block-end: 0;
}

.fs-c-heading.fs-c-heading--page {
  display: none;
}

.fs-l-pageMain {
  margin: 0;
}

img {
  width: 100%;
}

@keyframes fadeIn {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes popIn {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    transform: rotateY(-180deg);
  }
  to {
    transform: rotateY(0);
  }
}
@keyframes rotateOut {
  from {
    transform: rotateY(0);
  }
  to {
    transform: rotateY(-180deg);
  }
}
.js-animation-group[data-animation=fadein] > * {
  transform: translateY(30px);
  opacity: 0;
}
.js-animation-group[data-animation=fadein] > *.is-show {
  animation: fadeIn 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}
.js-animation-group[data-animation=fadein] > *.splited-text {
  display: block;
}
.js-animation-group[data-animation=popin] > * {
  transform: translateY(100%);
  opacity: 0;
}
.js-animation-group[data-animation=popin] > *.is-show {
  animation: popIn 0.6s cubic-bezier(0.175, 0.32, 0.32, 1.5) both;
}
.js-animation-group[data-animation=popin] > *.splited-text {
  display: block;
}
.js-animation-group[data-animation=zoomin] > * {
  transform: scale(0);
  opacity: 0;
}
.js-animation-group[data-animation=zoomin] > *.is-show {
  animation: zoomIn 0.6s cubic-bezier(0.175, 0.32, 0.32, 1.275) both;
}

.js-animation[data-animation=fadein] {
  transform: translateY(30px);
  opacity: 0;
}
.js-animation[data-animation=fadein].is-show {
  animation: fadeIn 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}
.js-animation[data-animation=popin] {
  transform: translateY(100%);
  opacity: 0;
}
.js-animation[data-animation=popin].is-show {
  animation: popIn 0.6s cubic-bezier(0.175, 0.32, 0.32, 1.5) both;
}
.js-animation[data-animation=zoomin] {
  transform: scale(0);
  opacity: 0;
}
.js-animation[data-animation=zoomin].is-show {
  animation: zoomIn 0.6s cubic-bezier(0.175, 0.32, 0.32, 1.275) both;
}

.js-grid-item .c-mv-grid__item__socks img {
  animation: rotateIn 0.6s cubic-bezier(0.175, 0.32, 0.32, 1.275) both;
}
.js-grid-item .c-mv-grid__item__ref {
  animation: rotateOut 0.6s cubic-bezier(0.175, 0.32, 0.32, 1.275) both;
}
.js-grid-item.is-turn .c-mv-grid__item__socks img {
  animation: rotateOut 0.6s cubic-bezier(0.175, 0.32, 0.32, 1.5) both;
}
.js-grid-item.is-turn .c-mv-grid__item__ref {
  animation: rotateIn 0.6s cubic-bezier(0.175, 0.32, 0.32, 1.5) both;
}

.l-container {
  max-width: calc(1390px + 2 * var(--padding-container));
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--padding-container, 48px);
  padding-left: var(--padding-container, 48px);
}

.common-footer-area {
  margin-top: 0;
}

footer {
  margin-top: 0;
}

footer .backtop {
  z-index: 3;
}

.common-header {
  margin-bottom: 0;
}

.fs-l-main {
  max-width: unset;
  margin: 0;
  padding-right: 0;
  padding-left: 0;
  color: var(--text-color);
  font-weight: 700;
  font-size: 4.2666666667vw;
  font-family: YakuHanJP, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
.fs-l-main h2, .fs-l-main h3, .fs-l-main h4, .fs-l-main h5, .fs-l-main h6 {
  font-weight: 700;
}
.fs-l-main p {
  line-height: 2;
  letter-spacing: 0.04em;
}
.fs-l-main a {
  color: inherit;
}

.c-button {
  display: grid;
  position: relative;
  place-content: center;
  width: 77.3333333333vw;
  height: 11.7626666667vw;
  margin-inline: auto;
  border-radius: 99px;
  background-color: #F88DB8;
  color: #fff !important;
  font-size: 3.7333333333vw;
  letter-spacing: 0.02em;
  text-align: center;
  transition: filter 0.2s ease-in-out;
}
.c-button::after {
  position: absolute;
  top: 50%;
  right: 1em;
  width: 0.5em;
  height: 0.5em;
  transform: translateY(-50%) rotate(45deg);
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  content: "";
}

.c-heading {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 0;
  margin-bottom: 8vw;
  margin-inline: auto;
  font-size: 6.9333333333vw;
  line-height: 1;
  letter-spacing: 0;
}
.c-heading img {
  width: auto;
  height: 8.5333333333vw;
}
.p-gift .c-heading {
  display: grid;
  place-content: center;
  width: calc(100% + 8.5333333333vw);
  height: 12.8vw;
  margin-left: -4.2666666667vw;
  background: url(../../images/features/school_socks2026/bg_heading.png) no-repeat center center/cover;
  color: #fff;
  font-size: 4.8vw;
}
.c-heading--cat {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 17.0666666667vw;
  margin-inline: auto;
  padding: 0.5em;
  font-size: 6.9333333333vw;
  text-align: center;
}
.c-heading--cat img {
  width: auto;
  height: 8.5333333333vw;
}
.c-heading--cat + .c-heading--child-cat {
  margin-top: 10.6666666667vw;
}
.c-heading--child-cat {
  margin-top: 16vw;
  font-size: 5.8666666667vw;
  line-height: 1.6;
  letter-spacing: 0.08em;
  text-align: center;
}

.c-item {
  display: grid;
  grid-template-rows: subgrid;
  row-gap: 0;
  grid-row: span 4;
}
.c-item:has(.c-item__tag) {
  grid-row: span 5;
}
.c-item__tag {
  display: grid;
  place-content: center;
  width: 26.6666666667vw;
  height: 6.6666666667vw;
  margin-bottom: 0.75em;
  margin-inline: auto;
  border-radius: 3.3333333333vw;
  background: #C4AEF6;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  font-size: 4.2666666667vw;
}
.c-item__link {
  display: inherit;
  grid-template-rows: inherit;
  grid-row: inherit;
  transition: color 0.3s ease-in-out;
}
.c-item__thumb {
  margin-bottom: 1em;
  overflow: hidden;
  border-radius: 4vw;
}
.c-item__name {
  margin: 0;
  font-weight: 500;
  font-size: 3.2vw;
  line-height: 1.375;
}
.c-item__no {
  margin: 0;
  font-size: 3.2vw;
}
.c-item__price {
  margin: 0;
  font-weight: 500;
  font-size: 3.2vw;
  line-height: 1 !important;
  font-feature-settings: "palt";
  letter-spacing: 0;
}
.c-item__price span {
  margin-left: 0.2em;
  font-size: 4.2666666667vw;
}
.c-item__button {
  width: 100%;
  margin-top: 1.25em;
  margin-inline: auto;
  padding: 0.28em;
  border: 2px solid #fff;
  border-radius: 99px;
  background-color: #B18812;
  color: #fff;
  font-size: 3.4666666667vw;
  text-align: center;
  transition: background-color 0.3s ease-in-out;
}
.c-item--recommend {
  row-gap: 0;
  grid-row: span 3;
}
.c-item--recommend .c-item__link {
  display: inherit;
  grid-template-rows: inherit;
  grid-row: inherit;
  padding-top: 0.5333333333vw;
  padding-bottom: 1.3333333333vw;
}
.c-item--recommend .c-item__thumb {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.c-item--recommend .c-item__name {
  font-size: 4vw;
}
.c-item--recommend .c-item__no {
  font-size: 3.4666666667vw;
}
.c-item--recommend .c-item__price {
  font-weight: 700;
}

.p-about {
  position: relative;
  padding-top: 24vw;
  padding-bottom: 42.6666666667vw;
  background-image: url(../../images/features/school_socks2026/bg_holiday-gift_sp.png);
  background-position: center top;
  background-size: 100%;
  background-repeat: no-repeat;
  background-color: #E5CEF1;
  text-align: center;
}
.p-about__heading {
  margin-top: 0;
  font-size: 6.9333333vw;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
.p-about__description {
  max-width: 750px;
  margin-inline: auto;
  font-size: 4.2666666667vw;
}
.p-about__column {
  max-width: 94.5%;
  margin-top: 2em;
  margin-inline: auto;
  background-color: #F3EAD9;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.16);
  color: var(--text-color);
}
.p-about__column__image {
  aspect-ratio: 326/374;
}
.p-about__column__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-about__column__body {
  padding: 12.8vw 8.5333333333vw 8.5333333333vw;
  background: url(../../images/features/school_socks2026/bg_about02.png) no-repeat center center/cover;
}
.p-about__column__body h3 {
  margin-top: 0;
  margin-bottom: 0.75em;
  font-size: 5.8666666667vw;
  line-height: 1.68;
  letter-spacing: 0.2em;
}
.p-about__column__body p {
  line-height: 1.5;
}
.p-about__column__body small {
  font-size: 3.2vw;
}
.p-about__column__body img {
  width: 53.3333333333vw;
  margin-inline: auto;
}
.p-about::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 8.5546666667vw;
  background: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='374'%20height='32.084'%20viewBox='0%200%20374%2032.084'%3e%3cpath%20id='bg_wave-white_sp'%20d='M374.5,75.5H.5V57.629c12.624-3.475,27.559-7.337,42.628-9.639,20.7-3.163,37.031-4.574,52.959-4.574s32.532,1.411,53.836,4.574c18.174,2.7,32.412,7.554,46.181,12.249,8.641,2.947,17.576,5.994,27.339,8.448a185.547,185.547,0,0,0,33.276,5.221c6.8.453,13.765.683,20.7.683a321.2,321.2,0,0,0,52.469-4.3,244.49,244.49,0,0,0,40.67-10.108c1.312-.465,2.639-.925,3.944-1.366V75.5Z'%20transform='translate(-0.5%20-43.416)'%20fill='%23fff'/%3e%3c/svg%3e") no-repeat center bottom;
  background-size: 100%;
  content: "";
}

.p-category {
  position: relative;
  padding-top: 43.2vw;
  padding-bottom: 53.3333333333vw;
  background-image: url(../../images/features/school_socks2026/bg_category_sp.png);
  background-position: center 8.5333333333vw;
  background-size: 111.928vw auto, auto;
  background-repeat: no-repeat, repeat;
  background-color: #FCDEE7;
}
.p-category__inner {
  max-width: 868px;
  margin-inline: auto;
}
.p-category__anker {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6.4vw 3.7333333333vw;
}
.p-category__anker li {
  width: calc((100% - 3.7333333333vw) / 2);
}
.p-category__anker li a {
  display: grid;
  position: relative;
  place-content: center;
  aspect-ratio: 166/120;
  transition: filter 0.2s ease-in-out;
}
.p-category__anker li a img {
  position: absolute;
  inset: 0;
  border-radius: 4vw;
  -o-object-fit: cover;
  z-index: 1;
     object-fit: cover;
}
.p-category__anker li a p {
  z-index: 3;
  position: relative;
  color: #fff;
  font-size: 4.2666666667vw;
  line-height: 1.5625;
  text-align: center;
}
.p-category__anker li a::after {
  z-index: 2;
  position: absolute;
  inset: 0;
  background: url(../../images/features/school_socks2026/img_cat-shadow.png) no-repeat center center/cover;
  content: "";
}
.p-category__anker li a::before {
  z-index: 3;
  position: absolute;
  bottom: -2.6vw;
  left: 50%;
  width: 10.4vw;
  height: 5.2vw;
  transform: translateX(-50%);
  border-radius: 99px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 20" fill="none" stroke="white" stroke-width="2"><path d="M5 5 L15 15 L25 5"/></svg>');
  background-position: center;
  background-size: 15px 10px;
  background-repeat: no-repeat;
  background-color: var(--bg-color, #AB1F2E);
  content: "";
}
.p-category__more {
  margin-top: 11.2vw;
}
.p-category::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 8.5546666667vw;
  transform: scale(1, -1);
  background: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='374'%20height='32.084'%20viewBox='0%200%20374%2032.084'%3e%3cpath%20id='bg_wave-white_sp'%20d='M374.5,75.5H.5V57.629c12.624-3.475,27.559-7.337,42.628-9.639,20.7-3.163,37.031-4.574,52.959-4.574s32.532,1.411,53.836,4.574c18.174,2.7,32.412,7.554,46.181,12.249,8.641,2.947,17.576,5.994,27.339,8.448a185.547,185.547,0,0,0,33.276,5.221c6.8.453,13.765.683,20.7.683a321.2,321.2,0,0,0,52.469-4.3,244.49,244.49,0,0,0,40.67-10.108c1.312-.465,2.639-.925,3.944-1.366V75.5Z'%20transform='translate(-0.5%20-43.416)'%20fill='%23fff'/%3e%3c/svg%3e") no-repeat center bottom;
  background-size: 100%;
  content: "";
}
.p-category::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 8.5546666667vw;
  background: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='374'%20height='32.084'%20viewBox='0%200%20374%2032.084'%3e%3cpath%20id='bg_wave-beige_sp'%20d='M374.5,75.5H.5V57.629c12.624-3.475,27.559-7.337,42.628-9.639,20.7-3.163,37.031-4.574,52.959-4.574s32.532,1.411,53.836,4.574c18.174,2.7,32.412,7.554,46.181,12.249,8.641,2.947,17.576,5.994,27.339,8.448a185.547,185.547,0,0,0,33.276,5.221c6.8.453,13.765.683,20.7.683a321.2,321.2,0,0,0,52.469-4.3,244.49,244.49,0,0,0,40.67-10.108c1.312-.465,2.639-.925,3.944-1.366V75.5Z'%20transform='translate(-0.5%20-43.416)'%20fill='%23FCE8A5'/%3e%3c/svg%3e") no-repeat center bottom;
  background-size: 100%;
  content: "";
}

.p-gift {
  position: relative;
  padding-top: 10.6666666667vw;
  padding-bottom: 33.3333333333vw;
  background-color: #FCE8A5;
}
.p-gift::before {
  z-index: 1;
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 29.5973333333vw;
  background: url(../../images/features/school_socks2026/bg_gift-top_sp.png) no-repeat center top;
  background-position: top left calc(50% + 20px);
  background-size: 88.1013333333vw auto;
  content: "";
}
.p-gift::after {
  z-index: 1;
  position: absolute;
  bottom: 3.2vw;
  left: 0;
  width: 100%;
  height: 69.4vw;
  background: url(../../images/features/school_socks2026/bg_gift-bottom_sp.png) no-repeat center top/contain;
  background-position: bottom left 51%;
  background-size: 119.5226666667vw auto;
  content: "";
}
.p-gift__inner {
  max-width: 1143px;
  margin-inline: auto;
  padding: 14.9333333333vw 8.5333333333vw;
  border-radius: 13.3333333333vw;
  background-color: #fff;
  box-shadow: 20px 20px 20px rgba(0, 0, 0, 0.16);
}
.p-gift__howto {
  display: grid;
  max-width: 878px;
  margin-inline: auto;
}
.p-gift__howto__body h3 {
  margin-top: 0;
  font-size: 5.0666666667vw;
  text-align: center;
}
.p-gift__howto__body p {
  font-weight: 500;
  font-size: 4.2666666667vw;
  line-height: 1.8;
}
.p-gift__wrapping {
  margin-top: 5.8666666667vw;
}
.p-gift__wrapping p {
  margin-top: 1em;
  font-weight: 500;
  font-size: 4.2666666667vw;
  line-height: 1.8;
}
.p-gift__bag {
  margin-top: 10.6666666667vw;
}
.p-gift__bag h3 {
  margin-right: -1em;
  margin-left: -1em;
  font-size: 4.2666666667vw;
  text-align: center;
}
.p-gift__bag__column {
  display: grid;
  grid-gap: 6.4vw;
  margin-inline: auto;
}
.p-gift__bag__column li {
  text-align: center;
}
.p-gift__bag__column img {
  width: 60vw;
}
.p-gift__bag__column p {
  font-weight: 500;
  font-size: 4.2666666667vw;
  line-height: 1.8;
  letter-spacing: 0;
  text-align: center;
}

.p-itemlist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 5.3333333333vw;
       column-gap: 5.3333333333vw;
  max-width: 822px;
  margin-inline: auto;
}
.p-itemlist li:nth-child(n+3) {
  margin-top: 10.6666666667vw;
}
.p-itemlist--slide {
  max-width: unset;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  grid-template-rows: repeat(3, auto);
  grid-template-columns: repeat(4, minmax(53.3333333333vw, 1fr));
  overscroll-behavior: contain;
  -moz-column-gap: 5.3333333333vw;
       column-gap: 5.3333333333vw;
  margin-right: calc(-1 * (var(--padding-container)));
  margin-left: calc(-1 * (var(--padding-container)));
  padding-right: var(--padding-container);
  padding-left: var(--padding-container);
}
.p-itemlist--slide li:nth-child(n+3) {
  margin-top: 0;
}

.p-popular {
  padding-top: 13.3333333333vw;
  padding-bottom: 16vw;
}

@media (min-width: 769px){
  .fs-l-main {
    font-size: 1.6rem;
  }
  .c-button {
    width: 444px;
    height: 80px;
    font-size: 2.3rem;
  }
  .c-button::after {
    right: 1.5em;
  }
  .c-heading {
    margin-bottom: 64px;
    font-size: 3.2rem;
  }
  .c-heading img {
    height: 53px;
  }
  .p-gift .c-heading {
    width: 803px;
    height: 91px;
    margin-left: auto;
    font-size: 3.2rem;
  }
  .c-heading--cat {
    margin-top: 120px;
    padding: 0.8em;
    font-size: 2.8rem;
  }
  .c-heading--cat img {
    height: 53px;
  }
  .c-heading--cat + .c-heading--child-cat {
    margin-top: 80px;
  }
  .c-heading--child-cat {
    margin-top: 150px;
    font-size: 3.4rem;
  }
  .c-item__tag {
    width: 172px;
    height: 42px;
    border-radius: 21px;
    font-size: 2.5rem;
  }
  .c-item__thumb {
    border-radius: 23px;
  }
  .c-item__name {
    font-weight: 700;
    font-size: 1.6rem;
  }
  .c-item__no {
    font-size: 1.3rem;
  }
  .c-item__price {
    font-weight: 700;
    font-size: 1.8rem;
  }
  .c-item__price span {
    margin-left: 0.3em;
    font-size: 2.5rem;
  }
  .c-item__button {
    width: 194px;
    margin-top: 0.25em;
    font-size: 1.5rem;
  }
  .c-item--recommend .c-item__name {
    font-size: 1.6rem;
  }
  .c-item--recommend .c-item__no {
    font-size: 1.3rem;
  }
  .p-about {
    padding-top: 140px;
    padding-bottom: calc(160px + 3.35vw);
    background-image: url(../../images/features/school_socks2026/bg_holiday-gift.png);
    background-size: 2250.33px;
  }
  .p-about__heading {
    font-size: 3.6rem;
    letter-spacing: 0.2em;
  }
  .p-about__description {
    font-size: 1.6rem;
  }
  .p-about__column {
    display: flex;
    max-width: 772px;
  }
  .p-about__column__image {
    flex-grow: 1;
    flex-shrink: 0;
    flex-basis: 50%;
    aspect-ratio: unset;
  }
  .p-about__column__body {
    display: flex;
    flex-grow: 1;
    flex-shrink: 0;
    flex-basis: 50%;
    flex-direction: column;
    justify-content: center;
    padding: 32px;
  }
  .p-about__column__body h3 {
    margin-bottom: 0.3em;
    font-size: 2.2rem;
  }
  .p-about__column__body p {
    max-width: 262px;
    margin: 0.75rem 0;
    margin-inline: auto;
  }
  .p-about__column__body small {
    font-size: 1.2rem;
  }
  .p-about__column__body img {
    max-width: 198.72px;
  }
  .p-about::after {
    height: 3.35vw;
    background: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201792.871%2059.46'%20preserveAspectRatio='none'%3e%3cpath%20id='bg_wave'%20d='M4048.495-2257.387c49.727,7.065,120.411,31.917,202.786,26.114s176.112-37.72,272.689-49.326,159.068-11.606,258.486,0,147.707,43.523,258.487,49.326,213.039-8.7,275.53-26.114,99.417-20.311,153.387-23.212,116.461,26.114,187.474,23.212,142.025-23.212,142.025-23.212l-.1,50.755L4007-2230.02v-27.368S3998.768-2264.452,4048.495-2257.387Z'%20transform='translate(-4006.488%202289.305)'%20fill='%23fff'/%3e%3c/svg%3e") no-repeat center bottom;
    background-size: max(100%, 1600px);
  }
  .p-category {
    padding-top: calc(120px + 3.35vw);
    padding-bottom: calc(160px + 3.35vw);
    background-image: url(../../images/features/school_socks2026/bg_category.png);
    background-position: 45% -5vw;
    background-size: 2201px auto, auto;
  }
  .p-category__anker {
    gap: 25px 22px;
  }
  .p-category__anker li {
    width: calc((100% - 44px) / 3);
  }
  .p-category__anker li a {
    aspect-ratio: 271/193;
  }
  .p-category__anker li a img {
    border-radius: 23px;
  }
  .p-category__anker li a p {
    font-size: 2.3rem;
    line-height: 1.348;
  }
  .p-category__anker li a::before {
    bottom: -16px;
    width: 64px;
    height: 32px;
  }
  .p-category__more {
    margin-top: 53px;
  }
  .p-category::before {
    height: 3.35vw;
    background: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201792.871%2059.46'%20preserveAspectRatio='none'%3e%3cpath%20id='bg_wave'%20d='M4048.495-2257.387c49.727,7.065,120.411,31.917,202.786,26.114s176.112-37.72,272.689-49.326,159.068-11.606,258.486,0,147.707,43.523,258.487,49.326,213.039-8.7,275.53-26.114,99.417-20.311,153.387-23.212,116.461,26.114,187.474,23.212,142.025-23.212,142.025-23.212l-.1,50.755L4007-2230.02v-27.368S3998.768-2264.452,4048.495-2257.387Z'%20transform='translate(-4006.488%202289.305)'%20fill='%23fff'/%3e%3c/svg%3e") no-repeat center bottom;
    background-size: max(100%, 1600px);
  }
  .p-category::after {
    height: 3.35vw;
    background: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201792.871%2059.46'%20preserveAspectRatio='none'%3e%3cpath%20id='bg_wave'%20d='M4048.495-2257.387c49.727,7.065,120.411,31.917,202.786,26.114s176.112-37.72,272.689-49.326,159.068-11.606,258.486,0,147.707,43.523,258.487,49.326,213.039-8.7,275.53-26.114,99.417-20.311,153.387-23.212,116.461,26.114,187.474,23.212,142.025-23.212,142.025-23.212l-.1,50.755L4007-2230.02v-27.368S3998.768-2264.452,4048.495-2257.387Z'%20transform='translate(-4006.488%202289.305)'%20fill='%23FCE8A5'/%3e%3c/svg%3e") no-repeat center bottom;
    background-size: max(100%, 1600px);
  }
  .p-gift {
    padding-top: 55px;
    padding-bottom: 246px;
  }
  .p-gift::before {
    top: -220px;
    width: 100%;
    height: 593.08px;
    background: url(../../images/features/school_socks2026/bg_gift-top.png) no-repeat center top/contain;
    background-position: top left calc(50% + 30px);
    background-size: 2664px auto;
  }
  .p-gift::after {
    bottom: 66px;
    width: 100%;
    height: 587.41px;
    background: url(../../images/features/school_socks2026/bg_gift-bottom.png) no-repeat center top/contain;
    background-position: bottom left calc(50% - 30px);
    background-size: 1666.21px auto;
  }
  .p-gift__inner {
    padding: 90px;
    border-radius: 80px;
  }
  .p-gift__howto {
    grid-template-columns: 1fr 465px;
    grid-gap: 44px;
    align-items: center;
  }
  .p-gift__howto__body h3 {
    font-size: 2.6rem;
    text-align: left;
  }
  .p-gift__howto__body p {
    font-size: 2rem;
  }
  .p-gift__wrapping {
    max-width: 510px;
    margin-top: 56px;
    margin-inline: auto;
  }
  .p-gift__wrapping p {
    font-size: 2rem;
  }
  .p-gift__bag {
    margin-top: 40px;
  }
  .p-gift__bag h3 {
    font-size: 2.6rem;
  }
  .p-gift__bag__column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 830px;
    grid-gap: 32px;
  }
  .p-gift__bag__column p {
    font-size: 2rem;
  }
  .p-itemlist {
    -moz-column-gap: 10%;
         column-gap: 10%;
    row-gap: 48px;
  }
  .p-itemlist li:nth-child(n+3) {
    margin-top: 0;
  }
  .p-itemlist--slide {
    grid-template-columns: repeat(4, 1fr);
    -moz-column-gap: 5.4%;
         column-gap: 5.4%;
    overflow: visible;
  }
  .p-popular {
    padding-top: 72px;
    padding-bottom: 120px;
  }
}

@media (hover: hover){
  .js-grid-item:hover .c-mv-grid__item__socks img {
    animation: rotateOut 0.6s cubic-bezier(0.175, 0.32, 0.32, 1.5) both;
  }
  .js-grid-item:hover .c-mv-grid__item__ref {
    animation: rotateIn 0.6s cubic-bezier(0.175, 0.32, 0.32, 1.5) both;
  }
  .c-button:hover {
    filter: saturate(2);
  }
  .c-item__link:hover {
    color: #DDAB18;
  }
  .c-item__link:hover .c-item__button {
    background-color: #DDAB18;
  }
  .p-category__anker li a:hover {
    filter: saturate(1.5);
  }
}