@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  --color-white: #ffffff;
  --color-black: #1d1d1d;
  --color-text: #202020;
  --color-muted: #686868;
  --color-teal: #05aaa0;
  --color-teal-dark: #008e88;
  --color-teal-deep: #007d78;
  --color-cream: #fff8ea;
  --color-mint: #def9f2;
  --color-orange: #e88412;
  --color-pink: #f35b7b;
  --color-line: #d6d6d6;
  --font-sans: 'Noto Sans JP', sans-serif;
  --font-poppins: 'Poppins', sans-serif;
  --container: 1036px;
  --shadow-card: 0 5px 14px rgba(30, 30, 30, 0.12);
  --shadow-button: 0 7px 12px rgba(168, 86, 58, 0.28);
}

html {
  font-size: 16px;
}


body {
  color: var(--color-text);
  font-family: var(--font-sans);
  line-height: 1.7;
  background: var(--color-white);
  overflow-x: hidden;
}

main{
  padding-top: 7.5rem;
}

a {
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease,
    transform 0.2s ease;
}

a:hover {
  opacity: 0.78;
}

a:focus-visible {
  outline: 3px solid rgba(5, 170, 160, 0.45);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.section {
  padding: 5.75rem 0;
}

.section--cream {
  background: var(--color-cream);
}

.section__inner {
  width: min(var(--container), calc(100% - 3rem));
  margin: 0 auto;
}

.section-heading {
  text-align: center;
}

.section-heading--left {
  text-align: left;
}

.section-heading__en {
  font-family: var(--font-poppins);
  color: var(--color-teal-dark);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1;
}

.section-heading__ja {
  margin-top: 0.5rem;
  color: var(--color-black);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.24;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 900;
  letter-spacing: 0;
  background: linear-gradient(90deg, var(--color-orange), var(--color-pink));
  border-radius: 999px;
  box-shadow: var(--shadow-button);
}

.button:hover {
  opacity: 1;
  box-shadow: 0 10px 18px rgba(168, 86, 58, 0.34);
  transform: translateY(-2px);
}

.button:active {
  box-shadow: var(--shadow-button);
  transform: translateY(0);
}

.button--small {
  min-width: 13.125rem;
  height: 3.125rem;
  padding: 0 1.75rem;
  font-size: 1.25rem;
}

.button--large {
  width: 22.625rem;
  height: 4.625rem;
  font-size: 1.5rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.375rem;
  height: 1.625rem;
  color: var(--color-teal-dark);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  border: 1px solid var(--color-teal-dark);
  border-radius: 999px;
}

/*ipad*/
@media screen and (min-width:1px) and (max-width:1024px){
  html {
    font-size: 1.8vw;
  }

  .section-heading__en{
    font-size: 1.4rem;
  }

  .section-heading__ja{
    font-size: 2.3rem;
  }
}


/* ##########SP########## */
@media screen and (min-width:1px) and (max-width:479px) {
  html{
      font-size: 3.6vw;
      min-width: auto;
      -webkit-text-size-adjust: 100%;
  }

  .button--small{
    min-width: 12.1875rem;
    height: 2.5875rem;
    padding: 0 1.3rem;
    font-size: 1.05rem;
  }

  .section-heading__en{
    font-size: 1.3rem;
  }

  .section-heading__ja{
    font-size: 2rem;
  }
}