@charset "UTF-8";
:root {
  --font-noto : "Noto Sans JP", system-ui;
  --color-black: #000;
  --color-white: #fff;
  --color-font: #8A6C73;
  --color-yellow: #FFD600;
  --color-gold : #B29A5A;
  --color-pale-pink: #FCEBE9;
  --color-salmon-pink: #E46A6A;
  --page-padding-inline: 3.5%;
  --com-grad-cathBg: rgba(255, 231, 240, 1), rgba(237, 192, 192, 1);
  --com-grad-btn: rgba(246, 114, 169, 1) 0%, rgba(217, 90, 90, 1) 100%;
  --com-text-shadow: 1px 3px 5px rgba(0, 0, 0, 0.3);
  --font-weight-bold: 600;
  --color-bg-lightBlue: rgba(238, 249, 255, 1);
  --font-size14: min(14px, 4.5vw);
  --font-size18: min(18px, 4.8vw);
  --font-size21: min(21px, 5.5vw);
  --font-size25: min(25px, 6.5vw);
  --font-size28: min(28px, 7.5vw);
}

/**　構造・整形 **/
html {
  font-size: 62.5%;
  background: var(--color-pale-pink);
}
body {
  color: var(--color-font);
  font-size: 1.6rem;
  font-family: "Shippori Mincho", system-ui;
  font-weight: 400;
  font-style: normal;
}
main {
  width: 100%;
}
.contentsWrapper {
  overflow: hidden;
  position: relative;
}
.mainContents {
  position: relative;
  width: min(430px, 100%);
  min-height: 100svh;
  z-index: 3;
  margin: auto;
}
.mainContents > section {
  position: relative;
}
.pc-only {
  display: none;
}
.sp-only {
  display: block;
}

img {
  display: inline-block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

/** Header **/
.header {
  padding: min(3.5%, 15px) min(2.5%, 15px);
  margin-inline: auto;
  display: flex;  
  justify-content: space-between;
  width: 100%;
  max-width: 430px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}
.no-button .header {
  position: absolute;
  z-index: 1;
}
.header .description {
  width: min(140px, 30vw);
  flex-shrink: 0;
}
.header .description img {
  aspect-ratio: 768/251;
}
.header .description span {
  color: var(--color-black);
  font-family: var(--font-noto);
  display: block;
  margin-block-start: .8em;
  font-size: min(8px, 2vw);
}
.header .purchaseBtn {
  width: fit-content;
  flex-shrink: 0;
}
.header .purchaseBtn .addCart {
  color: var(--color-white);
  text-align: center;
  cursor: pointer; 
  width: 100%;
  height: auto;
  background: linear-gradient(90deg, rgba(203, 64, 117,0.7) 0%, rgba(201, 94, 121,0.7) 100%);
  border-radius: 40px;
  position: relative;
  font-size: min(18px, 4vw);
  width: min(163px, 40vw);
  aspect-ratio: 163/46;
}
.header .purchaseBtn .addCart::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(90deg, rgba(203, 64, 117,1) 0%, rgba(201, 94, 121,1) 100%);
  border-radius: 100px;
  width: 95%;
  height: 85%;
}
.header .purchaseBtn button {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
}
/** 購入ボタン **/
.com-purchaseBtn {
  width: 95%;
  margin: 10% auto 12%;
  position: relative;
}
.com-purchaseBtn .addCart {
  color: var(--color-white);
  font-size: min(18px, 4vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: auto;
  background: linear-gradient(90deg, var(--com-grad-btn));
  box-shadow: inset 0px 5px 8px 0px rgba(255, 255, 255, 0.4), 1px 5px 7px 0px rgba(0, 0, 0, 0.2);
  border-radius: 200px;
  padding: 7% 3%;
}
.com-purchaseBtn button span {
  display: block;
}
.com-purchaseBtn button span + span {
  margin-block-start: 2%;
}
.com-purchaseBtn button .btn-txt-01 {
  font-size: min(32px, 9vw);
}
.com-purchaseBtn button .btn-txt-02 {
  color: var(--color-yellow);
  font-size: min(20px, 5vw);
}
.com-purchaseBtn button .btn-txt-03 {
  font-size: min(23px, 5vw);
}

/** contents **/
.contentsInner {
  font-family: var(--font-noto);
  padding: 28% var(--page-padding-inline) 15%;
  background: var(--color-white);
}
.contentsInner section + section {
  margin-block-start: 15%;
}
.contentsInner p {
  line-height: 1.6;
}
.contentsInner h1 {
  font-size: var(--font-size28);
  font-weight: var(--font-weight-bold);
  text-align: center;
  margin-block-end: 10%;
}
.contentsInner h1 span {
  display: block;
  font-size: var(--font-size14);
  font-weight: normal;
  display: block;
  margin-block-start: .5em;
}
.contentsInner dl dt {
  font-size: var(--font-size18);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-block-end: .5em;
}
.contentsInner dl dt span {
  font-family: "Shippori Mincho", system-ui;
  font-size: var(--font-size21);
  margin-block-start: -.2em;
}
.contentsInner dl dd {
  padding-block-end: 5%;
}
.contentsInner dl dd + dt {
  padding-block-start: 5%;
  border-top:  1px solid var(--color-font);
}

/** footer **/
.bottom-info {
  font-family: var(--font-noto);
  color: var(--color-white);
  text-align: center;
  padding: 18% var(--page-padding-inline) 8%;
  background: var(--color-salmon-pink);
}
.bottom-info ul li a {
  display: inline-block;
  padding: 10px;
}
.bottom-info .borderbox {
  width: 80%;
  padding: 7% 2%;
  margin: 8% auto;
}
.borderbox.--white {
  border: 1px solid var(--color-white);
  box-shadow: none;
}
.bottom-info .--list-circle li {
  font-size: min(18px, 5vw);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1%;
  padding: 3% 0;
}
.bottom-info .detailLink {
  padding: 4%;
}
.bottom-info .detailLink a {
  font-size: min(18px, 5vw);
  text-decoration: underline;
}
.bottom-info .bottom-info-logo {
  width: min(120px, 35vw);
  margin: 14% auto 0;
}

.repayBtn {
  background: rgba(253,230,241,.6);
  border-radius: 100px;
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 230/70;
  margin: 10% auto 0;
  box-shadow: var(--com-text-shadow); 
}
.repayBtn a {
  color: var(--color-font);
  font-size: min(18px, 5vw);
  line-height: 1.4;
  font-weight: var(--font-weight-bold);
  background: var(--color-pale-pink);
  border-radius: 100px;
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 94%;
  height: 82%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer {
  font-family: var(--font-noto);
  color: var(--color-white);
  text-align: center;
  padding: 1% var(--page-padding-inline);
  background: var(--color-salmon-pink);
}
.footer .wordList {
  font-size: min(8px, 2vw);
  display: flex;
  flex-wrap: wrap; 
}
.footer .wordList li {
  width: fit-content;
  text-align: left;
  padding: .5% 2% .5% 0;
}
.footer .itemName {
  width: 70%;
  margin: 8% auto;
 }

/** PC **/
@media screen and (min-width: 721px) {
  .pc-only {
    display: block;
  }
  .sp-only {
    display: none;
  }
  a {
    transition: opacity 0.3s ease;
  }

  /** ロゴ **/
  .pc-logo {
    color: var(--color-black);
    font-family: var(--font-noto);
    width: calc(((100vw - 430px)/2) * 0.6);
    min-width: 180px;
    max-width: 360px;
    position: fixed;
    top: 3%;
    left: 3%;
  }
  .pc-logo img {
    max-width: 320px;
  }
  .pc-logo span {
    display: block;
    font-size: clamp(0.75rem, 0.67rem + 0.4vw, 1.625rem);
    line-height: 1.3;
    margin-block-start: 1em;
  }
  
  /** 購入ボタン **/
  .com-purchaseBtn.--pc {
    width: calc((100vw - 430px)/2);
    width: 300px;
    position: fixed;
    top: 3%;
    right: 3%;
    margin: 0;
    z-index: 1;
  }
  .com-purchaseBtn.--pc .addCart {
    border-radius: 10px;
    transition: opacity .3s ease;
  }
  .com-purchaseBtn.--pc .addCart:hover {
    opacity: .8;
  }
  .com-purchaseBtn.--pc .addCart .btn-txt-01 {
    font-size: min(24px, 5vw);
  }
  .com-purchaseBtn.--pc .addCart .btn-txt-02 {
    font-size: min(18px, 3vw);
  }
  .com-purchaseBtn.--pc .addCart .btn-txt-03 {
    font-size: min(20px, 3vw);
  }

  /** スクロール **/
  .pcContents {
    position: fixed;
    width: 100dvw;
    height: 100dvh;
    top: 0;
    left: 0;
    right: 0;
    background: url(https://gigaplus.makeshop.jp/Fachant/【3.4】icelady-hairiron/【3.4BF】icelady-hairiron_Used_Creative_Design/【3.4BF】icelady-hairiron_Used_Creative_Design7.96.png) 92% 46% no-repeat,
    url(https://gigaplus.makeshop.jp/Fachant/【3.4】icelady-hairiron/【3.4BF】icelady-hairiron_Used_Creative_Design/【3.4BF】icelady-hairiron_Used_Creative_Design7.95.jpg) left top no-repeat;
    background-size: 300px, cover;
    background-blend-mode: normal, normal;
  }
  .scrollWrap {
    position: fixed;
    top: 90%;
  }
  .scrollWrap.--left {
    right: calc(50% + 245px);
  }
  .scrollWrap.--right {
    left: calc(50% + 245px);
  }
  .scroll-mark {
    color: var(--color-salmon-pink);
    font-weight: var(--font-weight-bold);
    position: relative;
  }
  .scroll-mark::before {
    content: "";
    width: 2px;
    height: 90px;
    background: var(--color-salmon-pink);
    position: absolute;
    left: 0;
    right: 0;
    top: -100px;
    margin: auto;
  }
  .scroll-mark::after {
    content: "";
    width: 12px;
    height: 12px;
    border-top: 2px solid var(--color-salmon-pink);
    position: absolute;
    border-right: 2px solid var(--color-salmon-pink);
    transform: rotate(135deg);
    position: absolute;
    left: 0;
    right: 0;
    top: -21px;
    margin: auto;
  }

}