@charset "UTF-8";
/*----------------------------------------

	CONDOM CATEGORY CSS

-----------------------------------------*/
/*----------------------------------------
	- コンドームとは？
-----------------------------------------*/
.whatis {
  position: relative;
}
@media screen and (min-width: 769px) {
  .whatis {
    margin-block-start: 150px;
  }
}
@media screen and (max-width: 768px) {
  .whatis {
    margin-block-start: 20vw;
  }
}
.whatis .c-box {
  display: grid;
}
@media screen and (min-width: 769px) {
  .whatis .c-box {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto 1fr;
    -moz-column-gap: 48px;
         column-gap: 48px;
  }
}
.whatis h2 {
  font-weight: var(--font-medium);
  letter-spacing: 0.02em;
}
@media screen and (min-width: 769px) {
  .whatis h2 {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}
@media screen and (min-width: 769px) {
  .whatis figure {
    grid-column: 1/2;
    grid-row: 2/4;
    height: -moz-fit-content;
    height: fit-content;
    margin-block: auto;
    margin-inline: auto;
    width: 77%;
    padding-block: 20px 0;
  }
}
@media screen and (max-width: 768px) {
  .whatis figure {
    width: 55vw;
    margin-inline: auto;
    margin-block-start: 8.25vw;
  }
}
.whatis .font18_15 {
  font-weight: var(--font-regular);
}
@media screen and (min-width: 769px) {
  .whatis .font18_15 {
    grid-column: 2/3;
    grid-row: 1/3;
    line-height: 2.5;
  }
}
@media screen and (max-width: 768px) {
  .whatis .font18_15 {
    margin-block-start: 6.25vw;
    line-height: 2.6;
  }
}
@media screen and (min-width: 769px) {
  .whatis .font12_11 {
    grid-column: 2/3;
    grid-row: 3/4;
    margin-block-start: 10px;
    line-height: 2;
  }
}
@media screen and (max-width: 768px) {
  .whatis .font12_11 {
    margin-block-start: 1.25vw;
  }
}
.whatis .font12_11::before {
  content: "※";
}

/*----------------------------------------
	- LINEUP
-----------------------------------------*/
.lineup {
  background: linear-gradient(175deg, #FFF2F4 0%, #F6F0FF 100%);
}
@media screen and (min-width: 769px) {
  .lineup {
    margin-block-start: 180px;
    padding-block-start: 120px;
    overflow: hidden;
  }
}
@media screen and (max-width: 768px) {
  .lineup {
    margin-block-start: 25vw;
    padding-block-start: 15vw;
  }
}
@media screen and (min-width: 769px) {
  .lineup .side-wrap {
    display: grid;
    max-width: min(100vw, 1600px);
    width: 100%;
    margin-inline: auto;
    grid-template-columns: 300px 1fr;
  }
}
.lineup .side-menu {
  position: relative;
  height: 100%;
  padding-block: 0 120px;
}
@media screen and (max-width: 768px) {
  .lineup .side-menu {
    display: none;
  }
}
.lineup .side-menu ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px 24px;
  position: fixed;
  top: 200px;
  left: 0;
  padding: 30px 0 30px 40px;
  z-index: 99;
  border-radius: 0 10px 10px 0;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  opacity: 0;
  transform: translateX(-100%);
  transition: transform 1s, opacity 0.3s;
}
.lineup .side-menu.is-active ul {
  opacity: 1;
  transform: translateX(0);
}
.lineup .side-menu li {
  display: grid;
  height: -moz-fit-content;
  height: fit-content;
}
.lineup .side-menu li.is-active {
  color: var(--color-primarydefault);
}
.lineup .side-menu a {
  height: -moz-fit-content;
  height: fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: var(--font-medium);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px 12px;
}
.lineup .side-menu a::before {
  content: "";
  display: block;
  width: 8px;
  height: 12px;
  background-image: url(/asset/img/common/ic-arrow-down-pink.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.lineup .side-item .c-title {
  font-weight: var(--font-medium);
  position: relative;
}
@media screen and (min-width: 769px) {
  .lineup .side-item .c-title {
    width: min(1100px, 95%);
    margin-inline: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .lineup .side-item .c-title {
    margin-inline: 13vw;
  }
}
.lineup .side-item .c-title::before, .lineup .side-item .c-title::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 769px) {
  .lineup .side-item .c-title::before, .lineup .side-item .c-title::after {
    right: calc(100% + min(1.25vw, 20px));
  }
}
@media screen and (max-width: 768px) {
  .lineup .side-item .c-title::before, .lineup .side-item .c-title::after {
    right: calc(100% + 2.5vw);
  }
}
.lineup .side-item .c-title::before {
  background-color: var(--color-primarydefault);
  border-radius: 50%;
}
@media screen and (min-width: 769px) {
  .lineup .side-item .c-title::before {
    width: 11px;
    height: 11px;
  }
}
@media screen and (max-width: 768px) {
  .lineup .side-item .c-title::before {
    width: 9px;
    height: 9px;
  }
}
.lineup .side-item .c-title::after {
  height: 1px;
  background-color: var(--color-primarydefault);
}
@media screen and (min-width: 769px) {
  .lineup .side-item .c-title::after {
    width: calc((100vw - (100% - 300px)) / 2);
  }
}
@media screen and (max-width: 768px) {
  .lineup .side-item .c-title::after {
    width: calc((100vw - (100% - min(3.125vw, 50px))) / 2);
  }
}
.lineup .unique-box {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  .lineup .unique-box {
    width: min(1100px, 95%);
    margin-block-start: 58px;
    margin-inline: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .lineup .unique-box {
    margin-block-start: 9vw;
    width: calc(100% - 3.5vw);
    margin-inline: auto 0;
    margin-block-start: 8.75vw;
  }
}
.lineup .unique-box::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: var(--color-white);
  z-index: -1;
  transition: background-color 0.2s;
}
@media screen and (min-width: 769px) {
  .lineup .unique-box::before {
    width: calc(100% + (100vw - 100%) / 2);
    border-radius: 40px 0 0 40px;
  }
}
@media screen and (max-width: 768px) {
  .lineup .unique-box::before {
    width: 100%;
    border-radius: 5vw 0 0 5vw;
  }
}
@media screen and (min-width: 769px) {
  .lineup .unique-box a {
    display: grid;
    grid-template-columns: 50.4% 1fr;
    grid-template-rows: 1fr auto auto auto 1fr;
    gap: 0 5.9%;
    padding: 60px 0 60px 9.091%;
  }
}
@media screen and (max-width: 1000px) and (min-width: 769px) {
  .lineup .unique-box a {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 0;
    padding: 0 50px 50px;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .lineup .unique-box a {
    display: block;
    padding: 10.5vw 7.5vw 10.5vw 4vw;
  }
}
@media screen and (min-width: 769px) {
  .lineup .unique-box figure {
    grid-column: 1/2;
    grid-row: 1/6;
    height: -moz-fit-content;
    height: fit-content;
    margin-block: auto;
  }
}
@media screen and (max-width: 1000px) and (min-width: 769px) {
  .lineup .unique-box figure {
    grid-column: 1/-1;
    grid-row: 1/2;
    margin-block-end: 30px;
  }
}
.lineup .unique-box p:nth-of-type(1) {
  display: inline-flex;
  align-items: center;
  gap: 1em;
  font-weight: var(--font-medium);
  font-size: 1em;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  caret-color: transparent;
}
@media screen and (min-width: 769px) {
  .lineup .unique-box p:nth-of-type(1) {
    grid-column: 2/3;
    grid-row: 2/3;
  }
}
@media screen and (max-width: 1000px) and (min-width: 769px) {
  .lineup .unique-box p:nth-of-type(1) {
    grid-column: 1/-1;
    grid-row: 2/3;
  }
}
@media screen and (max-width: 768px) {
  .lineup .unique-box p:nth-of-type(1) {
    margin-block-start: 7.5vw;
    gap: 0.5em;
  }
}
.lineup .unique-box .font16_13 {
  font-weight: var(--font-regular);
  line-height: 2;
}
@media screen and (min-width: 769px) {
  .lineup .unique-box .font16_13 {
    grid-column: 2/3;
    grid-row: 3/4;
    margin-block-start: 30px;
  }
}
@media screen and (max-width: 1000px) and (min-width: 769px) {
  .lineup .unique-box .font16_13 {
    grid-column: 1/-1;
    grid-row: 3/4;
  }
}
@media screen and (max-width: 768px) {
  .lineup .unique-box .font16_13 {
    margin-block-start: 4vw;
  }
}
.lineup .unique-box .font12_11 {
  font-weight: var(--font-regular);
}
@media screen and (min-width: 769px) {
  .lineup .unique-box .font12_11 {
    grid-column: 2/3;
    grid-row: 4/5;
    margin-block-start: 10px;
  }
}
@media screen and (max-width: 1000px) and (min-width: 769px) {
  .lineup .unique-box .font12_11 {
    grid-column: 1/-1;
    grid-row: 4/5;
  }
}
@media screen and (max-width: 768px) {
  .lineup .unique-box .font12_11 {
    margin-block-start: 1.25vw;
  }
}
.lineup .unique-box .font12_11::before {
  content: "※";
}
@media (hover: hover) {
  .lineup .unique-box:has(a:hover)::before {
    background-color: var(--color-palepink);
  }
}

@media screen and (min-width: 769px) {
  .list-box:nth-of-type(1) {
    padding-block-start: 78px;
  }
}
@media screen and (max-width: 768px) {
  .list-box:nth-of-type(1) {
    margin-block-start: 12vw;
  }
}

@media screen and (min-width: 769px) {
  .list-box {
    padding-block-start: 122px;
  }
}
@media screen and (max-width: 768px) {
  .list-box {
    margin-block-start: 15vw;
  }
}
@media screen and (min-width: 769px) {
  .list-box .c-box {
    width: min(1100px, 95%);
  }
}
.list-box .item-list {
  display: grid;
}
@media screen and (min-width: 769px) {
  .list-box .item-list {
    margin-block-start: 60px;
    grid-template-columns: repeat(3, 1fr);
    gap: 68px 6.364%;
    margin-inline: 0 auto;
  }
}
@media screen and (max-width: 1000px) and (min-width: 769px) {
  .list-box .item-list {
    grid-template-columns: repeat(2, 1fr);
    margin-inline: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .list-box .item-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10vw 4.5vw;
    margin-block-start: 9vw;
    margin-inline: auto;
  }
}
.list-box .item-list a {
  width: 100%;
  display: grid;
  gap: 0;
}
.list-box .item-list figure {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.list-box .item-list figure::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  aspect-ratio: 1;
  background-color: var(--color-white);
  border-radius: 50%;
  z-index: -1;
}
@media screen and (min-width: 769px) {
  .list-box .item-list figure::before {
    transition: background-color 0.2s;
  }
}
.list-box .item-list figure .c-icon-base {
  display: inline-flex;
  position: absolute;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  .list-box .item-list figure .c-icon-base {
    bottom: 0;
    right: 38px;
  }
}
@media screen and (max-width: 768px) {
  .list-box .item-list figure .c-icon-base {
    bottom: -1.25vw;
    right: 5vw;
    width: 7.5vw;
    height: 7.5vw;
  }
}
.list-box .item-list .font24_18 .c-icon-base {
  display: none;
}
@media (hover: hover) {
  .list-box .item-list a:hover figure::before {
    background-color: var(--color-palepink);
  }
}
.list-box .item-list .font24_18 {
  font-weight: var(--font-medium);
}
@media screen and (min-width: 769px) {
  .list-box .item-list .font24_18 {
    margin-block-start: 30px;
    line-height: 1.5;
  }
}
@media screen and (max-width: 768px) {
  .list-box .item-list .font24_18 {
    margin-block-start: 5.4vw;
    line-height: 1.333;
  }
}
.list-box .item-list .font18_14 {
  font-weight: var(--font-medium);
}
@media screen and (min-width: 769px) {
  .list-box .item-list .font18_14 {
    margin-block-start: 21px;
    line-height: 2;
  }
}
@media screen and (max-width: 768px) {
  .list-box .item-list .font18_14 {
    margin-block-start: 3vw;
    line-height: 1.5;
  }
}
.list-box .item-list .font15_12 {
  font-weight: var(--font-regular);
  line-height: 2;
}
@media screen and (min-width: 769px) {
  .list-box .item-list .font15_12 {
    margin-block-start: 18px;
  }
}
@media screen and (max-width: 768px) {
  .list-box .item-list .font15_12 {
    margin-block-start: 2.5vw;
  }
}
.list-box .item-list:not(:has(li:nth-of-type(2))) {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .list-box .item-list:not(:has(li:nth-of-type(2))) {
    margin-block-start: 0;
  }
}
@media screen and (min-width: 769px) {
  .list-box .item-list:not(:has(li:nth-of-type(2))) a {
    margin-block-start: 0;
    margin-inline: auto 0;
    width: min(90%, 910px);
    display: grid;
    grid-template-columns: 35.165% 1fr;
    grid-template-rows: 1fr auto auto auto 1fr;
    gap: 0 8.9%;
  }
}
@media screen and (max-width: 1000px) and (min-width: 769px) {
  .list-box .item-list:not(:has(li:nth-of-type(2))) a {
    display: block;
    margin-inline: auto;
  }
}
@media screen and (max-width: 768px) {
  .list-box .item-list:not(:has(li:nth-of-type(2))) a {
    display: block;
  }
}
@media screen and (min-width: 769px) {
  .list-box .item-list:not(:has(li:nth-of-type(2))) a figure {
    grid-column: 1/2;
    grid-row: 1/6;
  }
}
@media screen and (max-width: 1000px) and (min-width: 769px) {
  .list-box .item-list:not(:has(li:nth-of-type(2))) a figure {
    width: 65%;
    margin-inline: auto;
  }
}
@media screen and (max-width: 768px) {
  .list-box .item-list:not(:has(li:nth-of-type(2))) a figure {
    width: 60vw;
    margin-inline: auto;
    margin-block-start: 10vw;
  }
}
@media screen and (max-width: 768px) {
  .list-box .item-list:not(:has(li:nth-of-type(2))) a p {
    padding-inline: 1.5vw;
  }
}
.list-box .item-list:not(:has(li:nth-of-type(2))) a .font24_18 {
  font-weight: var(--font-medium);
  display: inline-flex;
  align-items: center;
  gap: 1em;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  caret-color: transparent;
}
@media screen and (min-width: 769px) {
  .list-box .item-list:not(:has(li:nth-of-type(2))) a .font24_18 {
    grid-column: 2/3;
    grid-row: 2/3;
    margin-block-start: 0;
  }
}
@media screen and (max-width: 1000px) and (min-width: 769px) {
  .list-box .item-list:not(:has(li:nth-of-type(2))) a .font24_18 {
    margin-block-start: 40px;
  }
}
@media screen and (max-width: 768px) {
  .list-box .item-list:not(:has(li:nth-of-type(2))) a .font24_18 {
    margin-block-start: 7.5vw;
    gap: 0.5em;
  }
}
.list-box .item-list:not(:has(li:nth-of-type(2))) a .font18_14 {
  font-weight: var(--font-medium);
  line-height: 2;
}
@media screen and (min-width: 769px) {
  .list-box .item-list:not(:has(li:nth-of-type(2))) a .font18_14 {
    grid-column: 2/3;
    grid-row: 3/4;
    margin-block-start: 30px;
  }
}
@media screen and (max-width: 768px) {
  .list-box .item-list:not(:has(li:nth-of-type(2))) a .font18_14 {
    font-size: 3.75vw;
    margin-block-start: 4vw;
  }
}
.list-box .item-list:not(:has(li:nth-of-type(2))) a .font15_12 {
  font-weight: var(--font-regular);
  line-height: 2;
}
@media screen and (min-width: 769px) {
  .list-box .item-list:not(:has(li:nth-of-type(2))) a .font15_12 {
    grid-column: 2/3;
    grid-row: 4/5;
    font-size: 1rem;
    margin-block-start: 10px;
  }
}
@media screen and (max-width: 768px) {
  .list-box .item-list:not(:has(li:nth-of-type(2))) a .font15_12 {
    font-size: 3.25vw;
    margin-block-start: 2.5vw;
  }
}
.list-box .item-list:not(:has(li:nth-of-type(2))) a figure .c-icon-base {
  display: none;
}
.list-box .item-list:not(:has(li:nth-of-type(2))) a .font24_18 .c-icon-base {
  display: inline-flex;
  position: static;
}

@media screen and (min-width: 769px) {
  .list-box:has(+ .sagamicontents) {
    padding-block-end: 120px;
  }
}
@media screen and (max-width: 768px) {
  .list-box:has(+ .sagamicontents) {
    padding-block-end: 15vw;
  }
}

/*----------------------------------------
	- CONTENTS
-----------------------------------------*/
.sagamicontents {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  .sagamicontents {
    padding-block: 0 150px;
  }
}
@media screen and (max-width: 768px) {
  .sagamicontents {
    padding: 0 7.5vw 20vw;
  }
}
.sagamicontents::before {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  background-color: var(--color-white);
  z-index: -1;
}
@media screen and (min-width: 769px) {
  .sagamicontents::before {
    right: 150px;
    margin-inline: calc(50% - 50vw);
    width: 100vw;
  }
}
@media screen and (max-width: 768px) {
  .sagamicontents::before {
    width: 100%;
    left: 0;
  }
}
@media screen and (min-width: 769px) {
  .sagamicontents > div {
    width: min(1070px, 95%);
    margin-inline: 0 auto;
    transform: translateX(-35px);
  }
}
@media screen and (min-width: 769px) {
  .sagamicontents .c-title__wrap {
    grid-column: 1/-1;
    padding-block: 150px 80px;
  }
}
@media screen and (max-width: 1100px) and (min-width: 769px) {
  .sagamicontents .c-title__wrap {
    grid-column: 1/-1;
  }
}
@media screen and (max-width: 768px) {
  .sagamicontents .c-title__wrap {
    padding-block: 20vw 8.75vw;
  }
}
.sagamicontents .card-list {
  display: grid;
}
@media screen and (min-width: 769px) {
  .sagamicontents .card-list {
    grid-template-columns: repeat(6, 1fr);
    gap: 10px 10px;
  }
}
@media screen and (max-width: 1100px) and (min-width: 769px) {
  .sagamicontents .card-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .sagamicontents .card-list {
    grid-template-columns: 1fr;
    gap: 2.5vw;
    margin-inline: auto;
  }
}
.sagamicontents .card-list a {
  display: block;
  height: 100%;
  background-color: var(--color-soapstone);
  transition: background-color 0.2s;
}
@media screen and (min-width: 769px) {
  .sagamicontents .card-list a {
    padding: 40px 30px 85px;
  }
}
@media screen and (max-width: 768px) {
  .sagamicontents .card-list a {
    padding: 7.25vw 6.25vw 11.25vw;
  }
}
.sagamicontents .card-list a p:nth-of-type(1) {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: 1fr auto;
}
.sagamicontents .card-list a .font13_11 {
  grid-column: 1/2;
  grid-row: 1/2;
  font-weight: var(--font-medium);
  color: var(--color-primarydark);
  height: -moz-fit-content;
  height: fit-content;
  margin-block: auto;
}
.sagamicontents .card-list a .font18_16 {
  grid-column: 1/2;
  grid-row: 2/3;
  line-height: 2;
  font-weight: var(--font-medium);
}
.sagamicontents .card-list a p:nth-of-type(1)::after {
  content: "";
  display: block;
  grid-column: 2/3;
  grid-row: 1/3;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 769px) {
  .sagamicontents .card-list a p:nth-of-type(1)::after {
    width: 62px;
    height: 62px;
    margin-block: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .sagamicontents .card-list a p:nth-of-type(1)::after {
    width: 11vw;
    height: 11vw;
    margin-block: auto 0;
  }
}
.sagamicontents .card-list a .font13_12 {
  line-height: 2;
  font-weight: var(--font-regular);
}
@media screen and (min-width: 769px) {
  .sagamicontents .card-list a .font13_12 {
    margin-block-start: 33px;
  }
}
@media screen and (max-width: 768px) {
  .sagamicontents .card-list a .font13_12 {
    margin-block-start: 3vw;
  }
}
@media screen and (max-width: 768px) {
  .sagamicontents .card-list a .c-icon-base {
    bottom: 5vw;
    right: 5vw;
  }
}
@media (hover: hover) {
  .sagamicontents .card-list a:hover {
    background-color: var(--color-palepink);
  }
}
@media screen and (min-width: 769px) {
  .sagamicontents .card-list > div:nth-of-type(1) {
    grid-column: 1/3;
    grid-row: 1/2;
  }
}
@media screen and (max-width: 1100px) and (min-width: 769px) {
  .sagamicontents .card-list > div:nth-of-type(1) {
    grid-column: 1/2;
  }
}
.sagamicontents .card-list > div:nth-of-type(1) a p:nth-of-type(1)::after {
  background-image: url(/asset/img/common/ic-condom02-pink.svg);
}
@media screen and (min-width: 769px) {
  .sagamicontents .card-list > div:nth-of-type(2) {
    grid-column: 3/5;
    grid-row: 1/2;
  }
}
@media screen and (max-width: 1100px) and (min-width: 769px) {
  .sagamicontents .card-list > div:nth-of-type(2) {
    grid-column: 2/3;
  }
}
.sagamicontents .card-list > div:nth-of-type(2) a p:nth-of-type(1)::after {
  background-image: url(/asset/img/common/ic-condom03-pink.svg);
}
@media screen and (min-width: 769px) {
  .sagamicontents .card-list > div:nth-of-type(3) {
    grid-column: 5/7;
    grid-row: 1/2;
  }
}
@media screen and (max-width: 1100px) and (min-width: 769px) {
  .sagamicontents .card-list > div:nth-of-type(3) {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
.sagamicontents .card-list > div:nth-of-type(3) a p:nth-of-type(1)::after {
  background-image: url(/asset/img/common/ic-condom-pink.svg);
}
@media screen and (min-width: 769px) {
  .sagamicontents .card-list > div:nth-of-type(4) {
    grid-column: 1/4;
    grid-row: 2/3;
  }
}
@media screen and (max-width: 1100px) and (min-width: 769px) {
  .sagamicontents .card-list > div:nth-of-type(4) {
    grid-column: 2/3;
    grid-row: 2/3;
  }
}
.sagamicontents .card-list > div:nth-of-type(4) a p:nth-of-type(1)::after {
  background-image: url(/asset/img/common/ic-point-pink.svg);
}
@media screen and (min-width: 769px) {
  .sagamicontents .card-list > div:nth-of-type(5) {
    grid-column: 4/7;
    grid-row: 2/3;
  }
}
@media screen and (max-width: 1100px) and (min-width: 769px) {
  .sagamicontents .card-list > div:nth-of-type(5) {
    grid-column: 1/2;
    grid-row: 3/4;
  }
}
.sagamicontents .card-list > div:nth-of-type(5) a p:nth-of-type(1)::after {
  background-image: url(/asset/img/common/ic-condom04-pink.svg);
}

/*----------------------------------------
	- SAGAMI MAGAZINE
-----------------------------------------*/
.magazine {
  background-color: var(--color-ghostwhite);
}
@media screen and (min-width: 769px) {
  .magazine {
    padding-block: 82px 90px;
  }
}
@media screen and (max-width: 768px) {
  .magazine {
    padding-block: 20vw 17.5vw;
  }
}
@media screen and (min-width: 769px) {
  .magazine .c-box {
    width: min(980px, 90%);
  }
}
@media screen and (min-width: 769px) {
  .magazine .c-box ul {
    margin-block-start: 40px;
  }
}
@media screen and (max-width: 768px) {
  .magazine .c-box ul {
    margin-block-start: 9vw;
  }
}