@charset "utf-8";
/* CSS Document */

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

html {
  font-size: 16px;
}

body {
  margin: 0;
  font-family: "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro",
               "Hiragino Sans", "Noto Sans JP", sans-serif;;
  line-height: 1.7;
  color: #333;
  background: #ffffff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* =========================
   Layout
========================= */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
  position: relative;
}

/* =========================
   Typography
========================= */
.section-title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
}

.section-text {
  font-size: 16px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

/* =========================
   Font
========================= */
.orange{color:#ec6540;}
.orange02{color:#f7b249;}
.red{color:#e60012;}
.bold{ font-weight:bold;}

.center{text-align:center;}
.right{text-align:right;}
.right{text-align:right;}

.fs{ font-size:80%;}
.fm{ font-size:120%;}

/* =========================
  text marker（共通）
========================= */

/* 黄色（特色1） */
.marker-yellow {
  background: linear-gradient(transparent 60%, #fff9a3 60%);
  font-weight: 700; /* デザインに合わせて調整可 */
}

/* オレンジ（特色2） */
.marker-orange {
  background: linear-gradient(transparent 60%, #facd89 60%);
  font-weight: 700;
}

/* 濃いオレンジ（特色3） */
.marker-deep-orange {
  background: linear-gradient(transparent 60%, #ffae34 60%);
  font-weight: 700;
}

/* =========================
   Button
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  padding: 14px 24px;
  background: #18a06f;
  color: #fff;
  font-weight: 600;
  border-radius: 9999px;
  transition: opacity .2s ease;
}

.btn:hover {
  opacity: 0.85;
}

/* =========================
   Utility
========================= */
.bg-light {
  background: #f6fbfa;
}

.bg-green {
  background: #e8f5f3;
}

.bg-yellow {
  background: #fff6d8;
}

/* =========================
   Responsive
========================= */
@media (max-width: 1023px) {
  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 15px;
  }

  .container {
    padding: 0 16px;
  }

  .section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 22px;
    margin-bottom: 24px;
  }

  .btn {
    width: 100%;
    min-width: auto;
  }
}

/* =========================
   スマホ改行
========================= */
.sp-only {
  display: none;
}

/* スマホだけ改行 */
@media screen and (max-width: 767px) {
  .sp-only {
    display: block;
  }
}

