/* --- Reset / Normalize --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: 'NotoSansJP';
  src: url('../fonts/NotoSansJP-Medium.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'NotoSansJPBold';
  src: url('../fonts/NotoSansJP-Bold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'DIN';
  src: url('../fonts/DIN-2014/DIN-2014_Bold.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'DINBold';
  src: url('../fonts/DIN-2014_Extra-Bold-Italic.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

/* --- Root Variables --- */
:root {
  --primary-color: #77B400;
  --text-color: #333;
  --font-base: 'NotoSansJP', sans-serif;
}

body, html {
  overflow-x: hidden;
}

/* --- Base styles --- */
body {
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  background-color: #fff;
}

/* --- Header --- */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 0 50px;
  background-color: #fff;
  height: 70px;
}

.header-title {
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none; 
  -ms-user-select: none;
}

header .suggest-btn {
  border: 2px solid transparent; 
  background: var(--primary-color);
  color: #fff;
  font-size: 14px;
  padding: 0 40px;
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  white-space: nowrap;
  line-height: 1.4;
  text-align: center;
  font-weight: bold;
  transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
}

header .suggest-btn:hover {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background: #fff;
}

.header-text {
  font-size: 14px;
  font-weight: normal;
}

.header-name {
  font-size: 27px;
  font-weight: bold;
  font-style: italic;
  color: var(--primary-color);
  font-family: 'DINBold', 'sans-serif';
}

@media only screen and (max-width: 992px) {
  header {
    padding: 0 0 0 10px;
    height: 50px;
  }

  header .suggest-btn {
    font-size: 13px;
    padding: 0 16px;
  }

  .header-name {
    font-size: 18px;
  }

  .header-text {
    font-size: 9px;
  }
}


/* --- Footer --- */
footer {
  height: 50px;
  background-color: var(--primary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.container {
  padding: 0 168px 0 183px;
}

.container-new {
  width: 100%;
  padding-right: 10px;
  padding-left: 10px;
  margin-right: auto;
  margin-left: auto;
}

.container-fluid {
  padding: 0 243px 0 243px;
}

.circle--green {
  background-color: var(--primary-color);
  border-radius: 100%;
  width: 80px;
  height: 80px;
}

.highlight {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 22px;
}

span.highlight-text {
  font-weight: bold;
  background-color: #edf2e2;
  padding : 2px;
}

.cta--black {
  width: 370px;
  height: 45px;
  border-radius: 24px;
  border: none;
  background-color: #333;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
  text-decoration: none;
}

.cta--black:hover {
  border: 2px solid #333;
  color: #333;
  background-color: #fff;
}

.d-flex {
  display: flex;
}

/* Hexa list ul */
.hexa-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hexa-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  line-height: 1.6;
}

.hexa-list li::before {
  content: "⬢"; 
  position: absolute;
  left: 0;
  color: #7ac943;
  font-size: 14px;
}

/* Card */
.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.cards .card {
  text-align: left;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  width: 100%;
  max-width: 320px;
  border-radius: 8px;
  position: relative; 
}

.cards .card .card-title {
  text-align: center;
  color: var(--primary-color);
  font-size: 24px;
  font-weight: bold;
}

.section-subtitle {
  color: var(--primary-color);
  font-weight: bold;
  margin-bottom: 11px;
  font-size: 20px;
  font-family: 'DIN', sans-serif;
  text-align: center;
}

.section-title {
  font-size: 32px;
  margin-bottom: 56px;
  text-align: center;
}

/* Start CSS FOR min width 576px*/
@media (min-width: 576px) {
  .container-new {
      max-width: 540px;
  }
}
/* End CSS FOR min width 576px*/

/* Start CSS FOR min width 768px*/
@media (min-width: 768px) {
  .container-new {
      max-width: 720px;
  }
}
/* End CSS FOR min width 768px*/

/* Start CSS FOR min width 992px*/
@media (min-width: 992px) {
  .container-new {
      max-width: 960px;
  }

  .cards {
    flex-wrap: nowrap;
  }
}
/* End CSS FOR min width 992px*/

/* Start CSS FOR min width 1200*/
@media (min-width: 1200px) {
  .container-new {
      max-width: 1140px;
  }
}
/* End CSS FOR min width 1200*/
@media only screen and (min-width: 992px) {
  .hidden-pc {
    display: none !important;
  }
}


@media only screen and (max-width: 992px) {
  .container,
  .container-fluid {
    padding: 0 10px;
  }

  .d-flex {
    flex-direction: column;
  }

  .cta--black {
    width: 350px;
  }

  .hidden-mb {
    display: none !important;
  }

  .cards .card{
    max-width: 100%;
  }

  .section-subtitle {
    font-size: 14px;
  }

  .section-title {
    font-size: 24px;
    margin-bottom: 56px;
  }
  .about-box {
    padding: 20px 10px 10px !important;
  }
}

@media (min-width: 1200px) {
  .cards {
    flex-wrap: nowrap;
  }
}