@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Space */
  --space-xs: 10px;
  --space-s: 20px;
  --space-m: 30px;
  --space-l: 40px;
  --space-xl: 60px;
  --space-xxl: 80px;
  --space-100: 100px;

  /* Section */
  --section-padding-s: clamp(50px, 7vw, 80px);
  --section-padding-m: clamp(70px, 9vw, 120px);
  --section-padding-l: clamp(90px, 12vw, 160px);

  /* Text */
  --color-text-main: #3f3438;
  --color-text-sub: #6f6267;
  --color-text-muted: #9a8f93;

  /* Brand */
  --color-primary: #c69aaf;
  --color-primary-light: #f5dae3;
  --color-primary-soft: #e4b5c7;
  --color-primary-dark: #8f5f73;

  /* Base */
  --color-base: #ffffff;

  /* Background */
  --color-bg-main: #fffafa;
  --color-bg-sub: #f8f5f6;
  --color-bg-pink: #f5dae3;
  --color-bg-gray: #e8e8e8;

  /* Border */
  --color-border: #d4d4d4;
  --color-border-light: #e8e8e8;

  /* CTA */
  --color-cta-text: #ffffff;
  --gradient-cta: linear-gradient(45deg, #ff8fd2, #ffa0b0, #cbb2ff);
  --gradient-cta-hover: linear-gradient(45deg, #ff7ccb, #ff91a6, #bfa3ff);
  --shadow-cta: 0 14px 34px rgba(255, 143, 210, 0.28);
  --shadow-cta-hover: 0 18px 40px rgba(255, 143, 210, 0.36);

  --color-cta: #ff8fd2;
  --color-cta-sub: #cbb2ff;

   /* CTA Section */
  --gradient-cta-section: linear-gradient(135deg, #fff7fb 0%, #f7eef8 52%, #eef3ff 100%);

  /* Shadow */
  --shadow-card: 0 12px 30px rgba(143, 95, 115, 0.12);
}

html {
  font-size: 62.5%;
  scroll-behavior: auto;
}

body {
  font-family: "Roboto", 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'YuGothic', 'Meiryo', sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 2;
  letter-spacing: normal;
  color: var(--color-text-main);
  font-size: 1.6rem;
  word-break: break-all;
  position: relative;
}

/*---link---*/
a {
  text-decoration: none;
  color: var(--color-text-main);
  position: relative;
  transition: all 0.3s ease;
}

/*---image---*/
img,
picture {
  display: block;
  width: 100%;
  height: auto;
}

/*---hgroup---*/
h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: 0.02em;
  font-weight: 700;
  line-height: 1.4;
}

/*---fonts---*/
.font--en {
  font-family: 'Josefin Sans', sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

/*---u---*/
.u-tab-only,
.u-sp-only {
  display: none;
}


@media screen and (max-width:1280px) {
  html {
    font-size: calc(100vw/128);
  }
}

@media screen and (max-width:1024px) {
  html {
    font-size: calc(100vw/102.4);
  }
}

@media screen and (max-width:896px) {
  html {
    font-size: calc(100vw/89.6);
  }
}

@media screen and (max-width:787px) {
  html {
    font-size: calc(100vw/78.7);
  }
}

@media screen and (max-width:680px) {
  html {
    font-size: calc(100vw/68);
  }

  .u-num--m {
    font-size: 8rem;
  }
}

@media screen and (max-width:480px) {
  html {
    font-size: 62.5%;
  }

  body {
    font-size: 1.4rem;
  }
}