@charset "UTF-8";
/* 画面全体のオーバーレイ */
.wrap_popup {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

/* 表示状態のフラグ（JSでaria-hidden切替） */
.wrap_popup[aria-hidden=false] {
  display: flex;
}

/* ダイアログ */
.area_popup {
  padding: 16px;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

/* カード本体 */
.content_qr {
  position: relative;
  width: min(92vw, 360px);
  background: #fff;
  border-radius: 14px;
  padding: 50px 20px 50px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(6px) scale(0.98);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
@media screen and (min-width: 641px) {
  .content_qr {
    width: min(92vw, 480px);
  }
}

.content_qr .image {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

/* 表示時のアニメ最終状態 */
.wrap_popup[aria-hidden=false] .content_qr {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.content_qr .title {
  display: block;
  margin: 14px 0 6px;
  font-size: 16px;
  font-weight: 700;
}

.content_qr .desc {
  margin: 0;
  font-size: 13px;
  opacity: 0.85;
  line-height: 1.5;
}

/* 閉じるボタン（右上） */
.button_close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: 0;
  background: transparent;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 6px;
}

body.is-locked {
  overflow: hidden; /* 背景スクロールロック */
  touch-action: none; /* iOS系での微スクロール抑制 */
}

/*=====================
  共通スタイル
======================*/
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media screen and (max-width: 640px) {
  html {
    font-size: 3.466vw;
    background-color: #F5F5F7;
  }
}
@media screen and (min-width: 641px) {
  html {
    font-size: 16px;
    background-color: #F5F5F7;
  }
}
body {
  font-family: "Noto Sans JP", "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: black;
  line-height: 1.6;
  margin: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: justify;
  overflow-x: hidden;
  line-height: 1.8rem;
}

.container960 {
  width: 95%;
  margin: 0 auto;
  padding: 3rem 0;
}

.container720 {
  width: 95%;
  margin: 0 auto;
  padding: 3rem 0;
}

.container640 {
  width: 95%;
  margin: 0 auto;
  padding: 3rem 0;
}

@media screen and (min-width: 641px) {
  .container960 {
    width: 960px;
  }
  .container720 {
    width: 720px;
  }
  .container640 {
    width: 640px;
  }
}
.br-sp {
  display: block;
}

@media screen and (min-width: 641px) {
  .br-sp {
    display: none;
  }
}
.br-pc {
  display: block;
}

@media screen and (max-width: 640px) {
  .br-pc {
    display: none;
  }
}
.spacer-sm {
  display: block;
  height: 0.5rem;
}

@media screen and (min-width: 641px) {
  .spacer-sm {
    display: block;
    height: 10px;
  }
}
.spacer {
  display: block;
  height: 1rem;
}

body .pc-item {
  display: none !important;
}

body .sp-item {
  display: block !important;
}

@media screen and (min-width: 641px) {
  body .pc-item {
    display: block !important;
  }
  body .sp-item {
    display: none !important;
  }
}
.grid {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 641px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
  }
}

/* ページの先頭に戻るボタン */
.pagetop {
  color: #ffffff;
  background-color: gray;
  text-decoration: none;
  width: 40px;
  height: 40px;
  position: fixed;
  bottom: 15px;
  right: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*ページ内リンク下げる*/
.contact {
  display: block;
  padding-top: 10px;
  margin-top: -10px;
}

.mail__form {
  display: block;
  padding-top: 0px;
  margin-top: -20px;
}

/*=====================
  マージン・パディング
======================*/
.mb-sm, .txt01 {
  margin-bottom: 0.5rem !important;
}

.mb-md, .link01, .txt00-a, .circle, .triangle-02, .triangle {
  margin-bottom: 1.5rem !important;
}

.mb-ml, .img, .txt00-b {
  margin-bottom: 2.5rem !important;
}

.mb-lg, .main-title {
  margin-bottom: 4rem !important;
}
@media screen and (min-width: 641px) {
  .mb-lg, .main-title {
    margin-bottom: 60px !important;
  }
}

.pb-sm {
  padding-bottom: 16px !important;
}

.pb-lg {
  padding-bottom: 80px !important;
}
@media screen and (min-width: 641px) {
  .pb-lg {
    padding-bottom: 50px !important;
  }
}

/*=====================
  フォント
======================*/
.font-ss, .txt00-a, .txt00-b {
  font-size: 0.7rem;
  line-height: 1.8rem;
}
@media screen and (min-width: 641px) {
  .font-ss, .txt00-a, .txt00-b {
    font-size: 14px;
  }
}

.font-sm {
  font-size: 1rem;
  line-height: 2rem;
  font-weight: 500;
}
@media screen and (min-width: 641px) {
  .font-sm {
    font-size: 16px;
  }
}

.font-md, .box-white, .box-red, .circle p, .font-bold {
  font-size: 1.2rem;
  line-height: 2.4rem;
}
@media screen and (min-width: 641px) {
  .font-md, .box-white, .box-red, .circle p, .font-bold {
    font-size: 20px;
  }
}

.font-ml, .link01, .box-green, .str-green04, .str-red {
  font-size: 1.5rem;
}
@media screen and (min-width: 641px) {
  .font-ml, .link01, .box-green, .str-green04, .str-red {
    font-size: 22px;
  }
}

.font-lg, header, .sub-title {
  font-size: 1.8rem;
}
@media screen and (min-width: 641px) {
  .font-lg, header, .sub-title {
    font-size: 26px;
  }
}

.font-bold {
  font-weight: bold;
}

.yellow {
  color: #ffed5a;
}

.red {
  color: red;
}

.yellow-bold {
  color: #ffed5a;
  font-weight: bold;
  font-size: 1.4rem;
}
@media screen and (min-width: 641px) {
  .yellow-bold {
    font-size: 22px;
  }
}

.yellow-bold-02 {
  color: #ffed5a;
  font-weight: bold;
  font-size: 1.3rem;
}

.bold14-white {
  color: white;
  font-weight: bold;
  font-size: 1.4rem;
}
@media screen and (min-width: 641px) {
  .bold14-white {
    font-size: 22px;
  }
}

.main-title {
  position: relative;
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  line-height: 2.8rem;
}
.main-title::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1.2rem;
  display: inline-block;
  width: 3.5rem;
  height: 2px;
  transform: translateX(-50%);
  background-color: gray;
  border-radius: 0px;
}

.str-bg-yellow {
  background-color: #ffed5a;
}

.str-red {
  font-weight: 600;
  text-align: left;
  color: #ec5137;
  margin-bottom: 0.5rem;
}

.sub-title {
  margin-bottom: 1rem;
}

.str-green02 {
  color: #246c0a;
  font-weight: bold;
  background-color: #a8d2d1;
}

.str-green03 {
  color: #246c0a;
}

.str-green04 {
  color: #246c0a;
  font-weight: bold;
}

.yellow-underline {
  background: linear-gradient(transparent 90%, #ffed5a 90%);
  display: inline-block;
}

.dot {
  background-position: top left 0px;
  background-repeat: repeat-x;
  background-size: 1em 0.3em;
  background-image: radial-gradient(0.15em 0.15em at center center, #246c0a, #246c0a 100%, transparent, transparent);
  padding-top: 0.6em;
}

/*=====================
  other
======================*/
.rollover {
  transition: opacity 0.2s;
}

.rollover:hover {
  opacity: 0.7;
}

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

/* 既定：.plain 以外の a にだけ適用 */
a:not(.plain):not(.pagetop) {
  color: #1a73e8;
  text-decoration: none;
  transition: all 0.2s ease;
}

a:not(.plain):not(.pagetop):hover {
  text-decoration: underline;
  color: #0c47a1;
}

.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hr-dotted {
  border: none;
  border-top: 2px dotted black;
}

.hr-dashed {
  border: none;
  border-top: 2px dashed #246c0a;
}

.triangle {
  background: #246c0a;
  height: 17.3205080757px;
  width: 20px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  margin: 0 auto;
  top: 0;
}

.triangle-02 {
  background: #ec5137;
  height: 17.3205080757px;
  width: 20px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  margin: 0 auto;
  top: 0;
}

.circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #ffebad;
  margin: 0 auto;
}
.circle p {
  text-align: center;
  line-height: 100px;
}

.circle-02 {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #246c0a;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2rem;
  font-weight: bold;
  margin: 0 auto 2rem;
}

.box-green {
  background-color: #246c0a;
  width: 90%;
  padding: 1rem;
  color: white;
  text-align: center;
  line-height: 1.8rem;
  margin: 0 auto;
  font-weight: bold;
  border-radius: 10px;
}

.box-red {
  background-color: #ec5137;
  width: 90%;
  padding: 1rem;
  color: white;
  text-align: center;
  line-height: 1.7rem;
  margin: 0 auto;
  font-weight: bold;
  border-radius: 10px;
}
@media screen and (min-width: 641px) {
  .box-red {
    width: 300px;
  }
}

.box-white {
  background-color: white;
  width: 90%;
  padding: 1rem;
  color: #246c0a;
  text-align: center;
  line-height: 1.7rem;
  margin: 0 auto;
  font-weight: bold;
  border-radius: 50px;
  border: 2px solid #246c0a;
}

/*=====================
  パンクズリスト
======================*/
.breadcrumb {
  width: 95%;
  padding: 8px 16px;
}
@media screen and (min-width: 641px) {
  .breadcrumb {
    width: 1000px;
  }
}

.breadcrumb ol {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}
@media screen and (min-width: 641px) {
  .breadcrumb ol {
    padding: 0 60px;
  }
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
}

.breadcrumb li + li::before {
  content: "›";
  margin: 0 6px;
  color: #9ca3af; /* グレー */
}

.breadcrumb a {
  color: #1a73e8;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb [aria-current=page] {
  color: #6b7280; /* 終端は薄め */
}

/* ずっとヘッダー直下に固定したい場合（任意） */
.breadcrumb.sticky {
  position: sticky;
  top: 0; /* ヘッダーが固定なら header 高に調整 */
  z-index: 50;
}

header {
  width: 95%;
  margin: 2rem auto;
  font-weight: 800;
}
@media screen and (min-width: 641px) {
  header {
    width: 1000px;
    margin: 20px 60px;
  }
}

.img {
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.txt00-a {
  line-height: 1.5;
}

.txt00-b {
  line-height: 1.5;
}

.hr-boder {
  margin: 80px 0;
}/*# sourceMappingURL=style.css.map */