@charset "utf-8";

/* ==========================================================================
   Variables
   ========================================================================== */
:root {
  --font-ja: "Zen Kaku Gothic New", sans-serif;
  --font-en: "Inter", sans-serif;

  --color-text: #6D3316;
  --color-text-light: #666666;
    --color-text-light: #666666;
  --color-bg-light: #F9F9E0;
  --color-white: #FFFFFF;
  
  --color-primary-cyan: #10CEDC;
  --color-primary-pink: #EE58A9;
  --color-primary-yellow: #E1BF00;
  --color-accent-green: #1B7D32;
  
  --width-max: 1200px;
  --width-content: 1000px;
  --border-radius-lg: 30px;
  --border-radius-md: 10px;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-ja);
  color: var(--color-text);
  line-height: 1.6;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1250px;
  padding: 0 20px;
  margin: 0 auto;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.7;
}

.font-en {
  font-family: var(--font-en);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  width: 100%;
  background-color: #ddd;
  overflow: hidden;
}

/* ==========================================================================
   Responsive (tb >= 1024px)
   ========================================================================== */
   @media (min-width: 769px) {
      .container {
        padding: 0 30px;
      }
    }

/* ==========================================================================
   Responsive (PC >= 1024px)
   ========================================================================== */
@media (min-width: 1024px) {
  .container {
    padding: 0;
  }
}

/* ==========================================================================
   Responsive (Mobile <= 768px)
   ========================================================================== */