@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Baloo+2:wght@400..800&display=swap");
@media screen and (min-width: 680px) {
  .pc {
    display: inline-block;
  }
  .sp {
    display: none;
  }
}
@media screen and (max-width: 680px) {
  .pc {
    display: none;
  }
  .sp {
    display: inline-block;
  }
}
:root {
  --blue: #1968b3;
  --green: #56b332;
}

body {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}

p {
  line-height: 1.8;
  font-weight: 600;
}

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

a.alink {
  text-decoration: underline;
}

section {
  padding: 3rem 0;
}

.narrow {
  width: min(600px, 80vw);
  margin: auto;
}

.wide {
  line-height: 2;
  font-weight: 600;
}

.p-padding {
  padding: 2rem;
}
@media (max-width: 768px) {
  .p-padding {
    padding: 1rem;
  }
}

h1 {
  font-size: 1.5rem;
}

h2 {
  text-align: center;
  font-size: 1.7rem;
  font-family: "Zen Maru Gothic", sans-serif;
  line-height: 2;
  letter-spacing: 0.1rem;
  font-weight: 600;
  margin-top: 3rem;
}
h2 span {
  display: block;
  font-size: 1rem;
}
h2:after {
  content: "";
  display: block;
  background-image: url("img/dots.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 85px;
  height: 11px;
  margin: 0 auto 3rem;
}

h3 {
  font-size: 16px;
  font-weight: bold;
}

h3.maru {
  display: flex;
  align-items: center; /* アイコンと文字を上下中央に揃える */
  font-size: 18px;
  font-weight: bold;
  color: #4caf50; /* 文字色（画像に合わせた緑） */
}
h3.maru::before {
  font-family: "Material Symbols Outlined";
  content: "circle";
  /* アイコンの塗りつぶし設定 */
  font-variation-settings: "FILL" 1;
  /* その他調整 */
  margin-right: 12px;
  color: #4caf50;
}

h4 {
  letter-spacing: 0.2rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
}
h4 span {
  font-size: 0.95rem;
  letter-spacing: 0.05rem;
}

.hamburger-outer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 200;
  width: 84px; /* タップ領域 */
  height: 84px;
  background: var(--green);
  border-radius: 0 0 0 30px;
  display: grid;
  place-items: center; /* 中央寄せ */
  cursor: pointer;
  overflow: hidden; /* 角の欠け対策 */
}
@media (max-width: 768px) {
  .hamburger-outer {
    width: 60px; /* タップ領域 */
    height: 60px;
  }
}

.hamburger {
  position: relative; /* ← これが重要（線の基準） */
  width: 32px;
  height: 24px;
}
@media (max-width: 768px) {
  .hamburger {
    width: 25px;
  }
}

.hamburger__line {
  position: absolute;
  width: 30px;
  height: 3px;
  background-color: white;
  border-radius: 2px;
  transition: all 300ms ease;
  transform: rotate(0deg);
}

/* 線の位置（通常） */
.hamburger__line:nth-child(1) {
  top: 0px;
}

.hamburger__line:nth-child(2) {
  top: 9px;
}

.hamburger__line:nth-child(3) {
  top: 18px;
}

/* ×変形（2本） */
/* ×変形（3本） */
.hamburger.open .hamburger__line:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}

.hamburger.open .hamburger__line:nth-child(2) {
  opacity: 0;
}

.hamburger.open .hamburger__line:nth-child(3) {
  top: 9px;
  transform: rotate(-45deg);
}

/* メニュー本体 */
.menu {
  flex-direction: column;
  display: flex;
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 300ms ease;
  width: min(400px, 70vw);
  background: var(--green);
  text-align: center;
  color: white;
  padding: 40px 40px 20px 40px;
  gap: 30px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 150;
  border-radius: 0 0 0 30px;
}

.menu__item {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 16px;
  color: inherit;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.493);
  justify-content: center;
  letter-spacing: 0.1rem;
}

.menu__item:last-child {
  border-bottom: none;
}

/* 初期状態 */
#menu {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: 0.3s;
  visibility: hidden; /* ← ここを使うなら… */
}

/* 開いた状態 */
#menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible; /* ← これを必ず入れる */
}

#footer {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  background-color: #fff;
  color: var(--kon);
  position: relative;
}

#totop {
  position: absolute;
  right: 3%;
  bottom: 3%;
  display: flex;
}
@media (max-width: 768px) {
  #totop {
    right: 3%;
    bottom: 75%;
  }
}

.marker {
  background-color: yellow;
  padding: 0 2px;
}

.hero-section {
  width: 100%;
  background-color: #f7f6f2; /* 背景色 */
}

.canvas {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  height: 100vh;
}

.abs {
  position: absolute;
  height: auto;
}

/* 各画像の配置（デザインに合わせて%で微調整してください） */
#item1 {
  top: -3%;
  left: -5%;
  width: 35%;
}

#item2 {
  top: 5%;
  right: -2%;
  width: 30%;
}
@media (max-width: 768px) {
  #item2 {
    top: 15%;
  }
}

#item3 {
  bottom: 5%;
  left: 2%;
  width: 30%;
}

#item4 {
  bottom: -5%;
  right: -3%;
  width: 35%;
}

/* 中央コンテンツの配置 */
#item5 {
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  #item5 {
    top: 5%;
  }
}

#item6 {
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  #item6 {
    top: 28%;
    width: 95%;
  }
}

#item7 {
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  #item7 {
    bottom: 17%;
  }
}

.lead {
  font-size: 22px;
  font-weight: 600;
}

.bg-beige {
  background-image: url(img/bg_pattern.png);
  border-radius: 80px;
}

.sv-box {
  background-color: #fff;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 30px;
  max-width: 550px;
  margin: 1rem auto;
}
@media (max-width: 768px) {
  .sv-box {
    padding: 1rem;
  }
}
.sv-box h4 {
  color: var(--green);
  margin-bottom: 1.5rem;
}
.sv-box img {
  margin-bottom: 1.5rem;
}
.sv-box p {
  text-align: left;
}

/* カード全体の丸み */
.flow-card {
  /* PCサイズでは左右を半円にするために大きな値を指定 */
  border-radius: 60px;
}

/* Step 01 などの数字の色 */
.step-num {
  color: #5bc0de; /* 画像のような水色 */
  font-family: "Baloo 2", sans-serif;
  font-weight: 600;
}

/* 画像のトリミング */
.flow-img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  /* 画像側の角の丸みを調整（必要に応じて） */
  display: block;
}

/* レスポンシブ：スマホでは角丸を少し抑える */
@media (max-width: 767.98px) {
  .flow-card {
    border-radius: 30px;
  }
  .flow-img {
    min-height: 180px;
  }
}
.flow-arrow {
  width: 30px;
  height: 30px;
  margin: 20px auto; /* 上下の余白と中央寄せ */
  /* SVGをData URI形式で記述 */
  background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10L12 15L17 10' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.green-button {
  /* レイアウト */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 40px;
  font-family: "Noto Sans JP", sans-serif;
  /* 見た目 */
  background-color: #5cb834; /* 画像に近い緑色 */
  color: white;
  text-decoration: none;
  font-size: 16px;
  /* 角丸（高さに対して十分な値を設定） */
  border-radius: 100px;
  /* クリック時のアニメーション */
  transition: opacity 0.2s;
  cursor: pointer;
}

.green-button:hover {
  opacity: 0.9;
}

/* 左側のPDFアイコン風パーツ */
.icon-pdf {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

ul.list {
  list-style: none;
}
ul.list li {
  border-bottom: 1px dotted gray;
  padding: 0.6rem;
}

.copyright {
  font-size: 12px;
  color: #535353;
  font-family: "Baloo 2", sans-serif;
}

#flag-area {
  display: grid;
  text-align: center;
  grid-template-rows: 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
#flag-area .flag img {
  width: 200px;
  margin-bottom: 1rem;
}/*# sourceMappingURL=jac.css.map */