@charset "UTF-8";

/* ======================
reset css
========================*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
  line-height: 1.7;
}
body {
  background-color: #fff;
  font-family: var(--font-ja);
}
img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}
li {
  list-style: none;
}
a {
  display: block;
  color: #000;
  text-decoration: none;
  transition: all ease .5s;
}
a:hover {
  opacity: .5;
}
p {
  font-size: 1.4rem;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
  margin: 0;
}
.sp_only {
  display: block;
}
.pc_only {
  display: none;
}
@media screen and (min-width: 600px) {
  .sp_only {
    display: none;
  }
  .pc_only {
    display: block;
  }
}

/* ======================
root
========================*/
:root {
  --base-color-white: #fff;
  --base-color-black: #000;
  --main-color: #f0c4bb;
  --accent-color: #333;
  --pd-base-sp: 0 16px;
  --pd-base-pc: 0 60px;
  --tablet-max-width: 600px;
  --pc-max-width: 669px;
  --font-ja: "hiragino-kaku-gothic-pron", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", MS PGothic, sans-serif;
  --font-en: "peachy-keen-jf", sans-serif;
}

/* ======================
margin
========================*/
.mt0 {
  margin-top: 0 !important;
}
.mt4 {
  margin-top: 4px !important;
}
.mt8 {
  margin-top: 8px !important;
}
.mt16 {
  margin-top: 16px !important;
}
.mt24 {
  margin-top: 24px !important;
}
.mt32 {
  margin-top: 32px !important;
}
.mt40 {
  margin-top: 40px !important;
}
.mt48 {
  margin-top: 48px !important;
}
.mt60 {
  margin-top: 60px !important;
}
@media screen and (min-width: 1025px) {
  .mt4 {
    margin-top: 8px !important;
  }
  .mt8 {
    margin-top: 16px !important;
  }
  .mt16 {
    margin-top: 32px !important;
  }
  .mt24 {
    margin-top: 48px !important;
  }
  .mt32 {
    margin-top: 64px !important;
  }
  .mt40 {
    margin-top: 80px !important;
  }
  .mt48 {
    margin-top: 96px !important;
  }
  .mt60 {
    margin-top: 120px !important;
  }
}

/* ======================
animations
========================*/
.fade-in-image {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.fade-in-image.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-image-top {
  opacity: 0;
  transition: opacity 0.8s ease;
}
.fade-in-image-top.visible {
  opacity: 1;
}

/* ======================
twilllItem（全体を囲んでいる）
========================*/
.twilllItem {
  margin: 0 auto;
}

/* ======================
twillItemInner
========================*/
.twillItemInner {
  margin: 0 auto;
}
@media screen and (min-width: 600px) {
  .twillItemInner {
    max-width: var(--tablet-max-width);
  }
}
@media screen and (min-width: 1025px) {
  .twillItemInner {
    max-width: var(--pc-max-width);
  }
}

/* ======================
hero
========================*/
.hero {
  max-width: 800px;
  margin: 0 auto;
}

/* ======================
leadBlock
========================*/
.leadBlock h2 {
  text-align: center;
  line-height: 2;
}

@media screen and (min-width: 1025px) {
  .leadBlock h2 {
    font-size: 1.8rem;
  }
  .leadBlock h2 span {
    font-size: 2.2rem;
  }
}

/* ======================
anchorBlock
========================*/
.anchorBlock ul {
  padding: var(--pd-base-sp);
  display: grid;
  column-gap: 20px; /* 横gap */
  row-gap: 32px;    /* 縦gap */
  grid-template-columns: repeat(3, 1fr);
}
.saleBtn {
  padding: var(--pd-base-sp);
}

/* ======================
anchorBlock
========================*/
.ctaBlock {
  padding: var(--pd-base-sp);
  max-width: 460px;
  margin: 0 auto;
}

@media screen and (min-width: 1025px) {
  .ctaBlock {
    padding: var(--pd-base-sp);
  }
}