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

	CONDOM MAKING CSS

-----------------------------------------*/
/*----------------------------------------
	- 説明文
-----------------------------------------*/
@media screen and (min-width: 769px) {
  .description {
    margin-block-start: 150px;
  }
}
@media screen and (max-width: 768px) {
  .description {
    margin-block-start: 20vw;
  }
}
.description .font18_16 {
  line-height: 2.5;
}

/*----------------------------------------
	- サイドメニュー関連
-----------------------------------------*/
@media screen and (min-width: 769px) {
  .side-wrap {
    display: grid;
    max-width: min(100vw, 1600px);
    width: 100%;
    margin-inline: auto;
    grid-template-columns: 300px 1fr;
  }
}

.side-menu {
  position: relative;
  height: 100%;
  padding-block: 0 120px;
}
@media screen and (max-width: 768px) {
  .side-menu {
    display: none;
  }
}
.side-menu ul {
  counter-reset: num;
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  position: fixed;
  top: 200px;
  left: 0;
  padding: 30px 36px 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;
}
.side-menu.is-active ul {
  opacity: 1;
  transform: translateX(0);
}
.side-menu li {
  counter-increment: num;
  display: grid;
  height: -moz-fit-content;
  height: fit-content;
}
.side-menu li.is-active {
  color: var(--color-primarydefault);
}
.side-menu li 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;
}
.side-menu li a::before {
  content: "0" counter(num);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Barlow Semi Condensed", sans-serif;
  color: var(--color-white);
  font-weight: var(--font-medium);
  background-color: var(--color-primarydefault);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1rem;
}

@media screen and (min-width: 769px) {
  .side-item {
    width: min(1100px, 95%);
    margin-inline: 0 auto;
    padding-block-start: 96px;
  }
}
@media screen and (max-width: 768px) {
  .side-item {
    padding-block-start: 11.25vw;
    padding-inline: 13.5vw 6vw;
  }
}
.side-item .c-title {
  font-weight: var(--font-medium);
  color: var(--color-primarydark);
  letter-spacing: 0.01em;
  position: relative;
}
@media screen and (min-width: 769px) {
  .side-item .c-title {
    margin-block-end: 27px;
  }
}
@media screen and (max-width: 768px) {
  .side-item .c-title {
    margin-block-end: 1.75vw;
  }
}
.side-item .c-title::before, .side-item .c-title::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 769px) {
  .side-item .c-title::before, .side-item .c-title::after {
    right: calc(100% + 20px);
  }
}
@media screen and (max-width: 768px) {
  .side-item .c-title::before, .side-item .c-title::after {
    right: calc(100% + 2.5vw);
  }
}
.side-item .c-title::before {
  background-color: var(--color-primarydefault);
  border-radius: 50%;
}
@media screen and (min-width: 769px) {
  .side-item .c-title::before {
    width: 11px;
    height: 11px;
  }
}
@media screen and (max-width: 768px) {
  .side-item .c-title::before {
    width: 9px;
    height: 9px;
  }
}
.side-item .c-title::after {
  height: 1px;
  background-color: var(--color-primarydefault);
}
@media screen and (min-width: 769px) {
  .side-item .c-title::after {
    width: calc((100vw - (100% - 300px)) / 2);
  }
}
@media screen and (max-width: 768px) {
  .side-item .c-title::after {
    width: calc((100vw - (100% - min(3.125vw, 50px))) / 2);
  }
}

/*----------------------------------------
	- MAKING
-----------------------------------------*/
@media screen and (min-width: 769px) {
  .howto {
    margin-block-start: 15px;
  }
}
@media screen and (max-width: 768px) {
  .howto {
    margin-block-start: 2.25vw;
  }
}
@media screen and (min-width: 769px) {
  .howto .box {
    display: grid;
    grid-template-columns: 1fr 36.3636%;
    grid-template-rows: auto 1fr;
    gap: 0 min(60px, 3.75vw);
  }
}
@media screen and (min-width: 769px) {
  .howto .box:has(img:nth-child(2)) {
    grid-template-columns: 0.68fr 1fr;
    grid-template-rows: auto 1fr;
  }
}
@media screen and (max-width: 1100px) and (min-width: 769px) {
  .howto .box:has(img:nth-child(2)) {
    grid-template-columns: 1fr 36.3636%;
  }
}
@media screen and (min-width: 769px) {
  .howto .box figure {
    width: 100%;
    grid-column: 2/3;
    grid-row: 1/3;
  }
}
@media screen and (max-width: 768px) {
  .howto .box figure {
    width: calc(100% + 7.5vw);
    transform: translateX(-7.5vw);
    gap: 3vw;
    margin-block-start: 7.5vw;
  }
}
.howto .box figure:has(img:nth-child(2)) {
  display: grid;
}
@media screen and (min-width: 769px) {
  .howto .box figure:has(img:nth-child(2)) {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-block-start: -6px;
  }
}
@media screen and (max-width: 1100px) and (min-width: 769px) {
  .howto .box figure:has(img:nth-child(2)) {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 768px) {
  .howto .box figure:has(img:nth-child(2)) {
    grid-template-columns: repeat(2, 1fr);
    gap: 3vw;
  }
}
.howto .box .font24_18 {
  font-weight: var(--font-medium);
}
@media screen and (min-width: 769px) {
  .howto .box .font24_18 {
    line-height: 1.5;
    letter-spacing: 0.03em;
  }
}
@media screen and (max-width: 768px) {
  .howto .box .font24_18 {
    line-height: 2;
  }
}
.howto .box .font16_14 {
  line-height: 2;
}
@media screen and (min-width: 769px) {
  .howto .box .font16_14 {
    margin-block-start: 34px;
  }
}
@media screen and (max-width: 768px) {
  .howto .box .font16_14 {
    margin-block-start: 5.25vw;
  }
}
.howto .box .font15_13 {
  font-weight: var(--font-medium);
  line-height: 2;
}
@media screen and (min-width: 769px) {
  .howto .box .font15_13 {
    margin-block-start: 4px;
  }
}
@media screen and (max-width: 768px) {
  .howto .box .font15_13 {
    margin-block-start: 1vw;
  }
}
.howto .box .font15_13 a {
  text-decoration: underline;
}
@media screen and (min-width: 769px) {
  .howto .side-item:last-of-type {
    padding-block-end: 140px;
  }
}
@media screen and (max-width: 768px) {
  .howto .side-item:last-of-type {
    padding-block-end: 20vw;
  }
}

/*----------------------------------------
	- INSPECTION
-----------------------------------------*/
.inspection {
  grid-column: 1/3;
  background: linear-gradient(175deg, #FFF2F4 0%, #F6F0FF 100%);
  width: 100%;
}
@media screen and (min-width: 769px) {
  .inspection {
    padding-block: 120px;
    overflow: hidden;
  }
}
@media screen and (max-width: 768px) {
  .inspection {
    padding-block: 20vw;
    padding-inline: 0;
  }
}
.inspection .c-title01 {
  margin-inline: auto;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .inspection .c-title01 {
    gap: 12px;
  }
}
@media screen and (max-width: 768px) {
  .inspection .c-title01 {
    gap: 1.5vw;
  }
}
.inspection > .c-box {
  display: grid;
}
@media screen and (min-width: 769px) {
  .inspection > .c-box {
    gap: 85px;
    margin-block-start: 60px;
  }
}
@media screen and (max-width: 768px) {
  .inspection > .c-box {
    gap: 13.5vw;
    margin-block-start: 10vw;
  }
}
.inspection > .c-box .item {
  display: grid;
}
@media screen and (min-width: 769px) {
  .inspection > .c-box .item {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 60px;
  }
}
.inspection > .c-box .item .font24_18 {
  color: var(--color-primarydark);
  font-weight: var(--font-medium);
}
@media screen and (min-width: 769px) {
  .inspection > .c-box .item .font24_18 {
    line-height: 1.5;
  }
}
@media screen and (max-width: 768px) {
  .inspection > .c-box .item .font24_18 {
    line-height: 2;
  }
}
.inspection > .c-box .item .font16_14 {
  line-height: 2;
}
@media screen and (min-width: 769px) {
  .inspection > .c-box .item .font16_14 {
    margin-block-start: 32px;
  }
}
@media screen and (max-width: 768px) {
  .inspection > .c-box .item .font16_14 {
    margin-block-start: 3.75vw;
  }
}
.inspection > .c-box .item figure {
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (min-width: 769px) {
  .inspection > .c-box .item figure {
    margin-block: auto;
  }
}
@media screen and (max-width: 768px) {
  .inspection > .c-box .item figure {
    margin-block-start: 6vw;
  }
}
@media screen and (min-width: 769px) {
  .inspection > .c-box .item:nth-of-type(1) {
    grid-template-rows: 1fr repeat(2, auto) 1fr;
  }
}
@media screen and (min-width: 769px) {
  .inspection > .c-box .item:nth-of-type(1) .font24_18 {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
@media screen and (min-width: 769px) {
  .inspection > .c-box .item:nth-of-type(1) .font16_14 {
    grid-column: 1/2;
    grid-row: 3/4;
  }
}
@media screen and (min-width: 769px) {
  .inspection > .c-box .item:nth-of-type(1) figure {
    grid-column: 2/3;
    grid-row: 1/5;
  }
}
@media screen and (min-width: 769px) {
  .inspection > .c-box .item:nth-of-type(2) {
    grid-template-rows: 1fr repeat(2, auto) 1fr;
  }
}
@media screen and (min-width: 769px) {
  .inspection > .c-box .item:nth-of-type(2) .font24_18 {
    grid-column: 2/3;
    grid-row: 2/3;
  }
}
@media screen and (min-width: 769px) {
  .inspection > .c-box .item:nth-of-type(2) .font16_14 {
    grid-column: 2/3;
    grid-row: 3/4;
  }
}
@media screen and (min-width: 769px) {
  .inspection > .c-box .item:nth-of-type(2) figure {
    grid-column: 1/2;
    grid-row: 1/5;
  }
}
@media screen and (min-width: 769px) {
  .inspection > .c-box .item:nth-of-type(3) .font24_18 {
    grid-column: 1/3;
  }
}
@media screen and (min-width: 769px) {
  .inspection > .c-box .item:nth-of-type(3) .font16_14 {
    grid-column: 1/3;
  }
}
.inspection > .c-box .item:nth-of-type(3) figure {
  display: grid;
}
@media screen and (min-width: 769px) {
  .inspection > .c-box .item:nth-of-type(3) figure {
    grid-column: 1/3;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-block-start: 40px;
    padding-inline: 10px;
  }
}
@media screen and (max-width: 768px) {
  .inspection > .c-box .item:nth-of-type(3) figure {
    gap: 2.5vw;
  }
}

/*----------------------------------------
	- AFTERWORD
-----------------------------------------*/
@media screen and (min-width: 769px) {
  .afterword {
    margin-block-start: 100px;
  }
}
@media screen and (max-width: 768px) {
  .afterword {
    margin-block-start: 15vw;
  }
}
.afterword .font16_14 {
  line-height: 2;
}