@charset "UTF-8";
/*=====================
  共通スタイル
======================*/
* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  overflow-x: hidden;
}

body {
  scroll-behavior: smooth;
}

@media screen and (max-width: 780px) {
  html {
    font-size: 62.5%;
    height: 100%;
  }
}
@media screen and (min-width: 781px) {
  html {
    font-size: calc(var(--bg-w) * 18 / 2000);
  }
}
body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", sans-serif;
  font-weight: 500;
  color: black;
  margin: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: justify;
  overflow-x: hidden;
}

h1 {
  margin: 0;
}

.container {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 781px) {
  .container {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 0 5%;
  }
}

.br-sp {
  display: block;
}

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

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

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

@media screen and (min-width: 781px) {
  .spacer_pc {
    display: block;
    height: 1.5rem;
  }
}
body .pc-item {
  display: none !important;
}

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

@media screen and (min-width: 781px) {
  body .pc-item {
    display: block !important;
  }
  body .sp-item {
    display: none !important;
  }
}
/*=====================
  マージン・パディング
======================*/
.mb-sm {
  margin-bottom: 0.5rem;
}

.mb-md {
  margin-bottom: 1.5rem;
}

.mb-lg {
  margin-bottom: 2.5rem;
}

.mb-xl {
  margin-bottom: 4rem;
}

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

.pb-lg {
  padding-bottom: 80px;
}

/*=====================
  フォント
======================*/
.font-ss {
  font-size: 3.59vw;
  line-height: 1.4;
}
@media screen and (min-width: 781px) {
  .font-ss {
    font-size: calc(var(--bg-w) * 16 / 2000);
  }
}

.font-sm {
  font-size: 3.8vw;
  line-height: 1.7;
  text-align: justify;
}
@media screen and (min-width: 781px) {
  .font-sm {
    font-size: calc(var(--bg-w) * 18 / 2000);
  }
}

.font-md {
  font-size: 5.13vw;
}
@media screen and (min-width: 781px) {
  .font-md {
    font-size: calc(var(--bg-w) * 24 / 2000);
  }
}

.font-lg {
  font-size: 6.67vw;
}
@media screen and (min-width: 781px) {
  .font-lg {
    font-size: calc(var(--bg-w) * 26 / 2000);
  }
}

.font-xl {
  font-size: 7.69vw;
}
@media screen and (min-width: 781px) {
  .font-xl {
    font-size: calc(var(--bg-w) * 30 / 2000);
  }
}

.font-zenmaru {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-variant-east-asian: proportional-width;
  font-feature-settings: "pwid";
}

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

.yellow {
  color: #eaa800;
}

.blue {
  color: #559ccf;
}

.bg-blue {
  background-color: #559ccf;
  color: white;
  padding: 1% 2%;
}
@media screen and (min-width: 781px) {
  .bg-blue {
    padding: 3px 7px;
  }
}

.pink {
  color: #ec6ca5;
}

.yellow_bg {
  background-color: #fafa2c;
  font-weight: bold;
}

.font-small {
  font-size: 3.5vw;
  line-height: 1.4;
}
@media screen and (min-width: 781px) {
  .font-small {
    font-size: calc(var(--bg-w) * 16 / 2000);
  }
}

.green {
  color: #008c3c;
  font-weight: bold;
}

/*=====================
  other
======================*/
a {
  text-decoration: none;
  cursor: pointer;
}

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

.hr-dotted {
  border: none;
  border-top: 2px dotted black;
  margin: 1.5rem 0;
}
@media screen and (min-width: 781px) {
  .hr-dotted {
    margin: 3% 0;
  }
}

.hr-dashed {
  border: none;
  border-top: 1px dashed black;
  margin: 0.7rem 0;
}
@media screen and (min-width: 781px) {
  .hr-dashed {
    border-top: 2px dashed black;
    margin: 15px 0;
  }
}

.page-top {
  position: fixed;
  bottom: 24px;
  right: 40px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #3a3a3a;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease, background 0.2s ease;
  z-index: 999;
}
.page-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.page-top:hover {
  background: #555;
}

.yureru-a {
  animation: yureru-j 3s infinite;
}

@keyframes yureru-j {
  0% {
    transform: translate(0px, 2px);
  }
  5% {
    transform: translate(0px, -2px);
  }
  10% {
    transform: translate(0px, 2px);
  }
  15% {
    transform: translate(0px, -2px);
  }
  20% {
    transform: translate(0px, 2px);
  }
  25% {
    transform: translate(0px, -2px);
  }
  30% {
    transform: translate(0px, 0px);
  }
}
.yureru-b {
  animation: yureru-j 2s infinite;
}

@keyframes yureru-j {
  0% {
    transform: translate(0px, 2px);
  }
  5% {
    transform: translate(0px, -2px);
  }
  10% {
    transform: translate(0px, 2px);
  }
  15% {
    transform: translate(0px, -2px);
  }
  20% {
    transform: translate(0px, 2px);
  }
  25% {
    transform: translate(0px, -2px);
  }
  30% {
    transform: translate(0px, 0px);
  }
}
.inview {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}
.inview.fadeIn_up {
  opacity: 1;
  transform: translateY(0);
}

.fuwafuwa {
  animation: fuwafuwa 3s ease-in-out infinite alternate;
  background: url(../img/ico-apple.svg) no-repeat center center/60px auto;
  display: inline-block;
  transition: 1.5s ease-in-out;
}

@keyframes fuwafuwa {
  0% {
    transform: translate(0, 0) rotate(-7deg);
  }
  50% {
    transform: translate(0, -7px) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(7deg);
  }
}
.view {
  position: relative;
  overflow: hidden;
}

.view::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #fff;
  transform: translateX(0%);
  transition: all 0.3s ease-in-out 0.3s;
}

.view img {
  vertical-align: middle;
  transform: translateX(0%);
}

.view.js-on::after {
  transform: translateX(100%);
}

/*=====================
  ヘッダー
======================*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background-color: #fff;
  transition: box-shadow 0.3s ease;
}
.admin-bar .header {
  top: 46px;
}
@media screen and (min-width: 781px) {
  .admin-bar .header {
    top: 32px;
  }
}
.header.is-scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.header .header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 5%;
}
@media screen and (min-width: 781px) {
  .header .header__inner {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    row-gap: 2px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 1px 4% 0;
    margin-bottom: 7px;
  }
}
.header .header__logo {
  display: block;
}
@media screen and (min-width: 781px) {
  .header .header__logo {
    grid-column: 1;
    grid-row: 1;
  }
}
.header .header__logo img {
  display: block;
  width: 9rem;
  height: auto;
}
@media screen and (min-width: 781px) {
  .header .header__logo img {
    width: 130px;
  }
}
.header .header__menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 90;
  width: 100%;
  padding: 1rem 0 1.5rem;
  background-color: #fff;
  box-shadow: 0 10px 16px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}
@media screen and (min-width: 781px) {
  .header .header__menu {
    display: contents;
    visibility: visible;
  }
}
.header {
  /* ---- 連絡先ボタン（電話 / LINE / メール） ---- */
}
.header .header__contact {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  width: 90%;
  margin: 2rem auto 0;
}
@media screen and (min-width: 781px) {
  .header .header__contact {
    grid-column: 2;
    grid-row: 1;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    width: auto;
    margin: 0;
  }
}
.header .header__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 2rem 2rem;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 999px;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 781px) {
  .header .header__btn {
    gap: 10px;
    padding: 11px 26px;
    font-size: 17px;
  }
}
.header .header__btn:hover {
  opacity: 0.8;
}
.header .header__btn--tel {
  color: #008c3c;
  background-color: #fff;
  border-color: #008c3c;
}
.header .header__btn--line {
  color: #fff;
  background-color: #06c755;
}
.header .header__btn--mail {
  color: #fff;
  background-color: #dc5848;
}
.header .header__btn-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
}
@media screen and (min-width: 781px) {
  .header .header__btn-icon {
    width: 24px;
    height: 24px;
  }
}
.header .header__btn-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}
.header .header__btn-icon svg:not([fill=none]) {
  fill: currentColor;
}
.header .header__btn-icon svg[fill=none] {
  stroke: currentColor;
}
.header {
  /* ---- LINEのQRコード（PCのみ・画面中央にモーダル） ---- */
}
.header .header__line {
  position: relative;
}
.header .qr-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.header .qr-modal[hidden] {
  display: none;
}
.header .qr-modal__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.55);
}
.header .qr-modal__body {
  position: relative;
  width: 100%;
  max-width: 460px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 48px 40px 44px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  text-align: center;
}
.header .qr-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  color: #1a1a1a;
  background: none;
  border: 0;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.header .qr-modal__close:hover {
  opacity: 0.6;
}
.header .qr-modal__close svg {
  width: 22px;
  height: 22px;
}
.header .qr-modal__img {
  display: block;
  width: 220px;
  height: auto;
  margin: 0 auto 24px;
}
.header .qr-modal__ttl {
  margin: 0 0 12px;
  font-size: 17px;
  font-weight: bold;
  line-height: 1.5;
  color: #1a1a1a;
}
.header .qr-modal__txt {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}
.header {
  /* ---- ページ内リンク ---- */
}
@media screen and (min-width: 781px) {
  .header .header__nav {
    grid-column: 1/-1;
    grid-row: 2;
  }
}
.header .header__list {
  margin: 0;
  padding: 5% 0;
  list-style: none;
}
@media screen and (min-width: 781px) {
  .header .header__list {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
}
@media screen and (min-width: 781px) {
  .header .header__list li {
    border-left: 1px solid #333;
    line-height: 1.3;
    align-items: center;
  }
  .header .header__list li:last-child {
    border-right: 1px solid #333;
  }
}
.header .header__link {
  display: block;
  padding: 1.5rem 5%;
  color: #1a1a1a;
  font-size: 1.6rem;
  text-align: center;
  text-decoration: none;
}
@media screen and (min-width: 781px) {
  .header .header__link {
    padding: 6px 32px;
    font-size: 16px;
    transition: color 0.3s ease;
  }
  .header .header__link:hover {
    color: #008c3c;
  }
}
.header .header__toggle {
  position: relative;
  width: 3.8rem;
  height: 2.2rem;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
}
.header .header__toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #1a1a1a;
  transition: top 0.3s ease, bottom 0.3s ease, transform 0.3s ease;
}
.header .header__toggle span:nth-child(1) {
  top: 0.4rem;
}
.header .header__toggle span:nth-child(2) {
  bottom: 0.4rem;
}
@media screen and (min-width: 781px) {
  .header .header__toggle {
    display: none;
  }
}
.header.is-open .header__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header.is-open .header__toggle span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.header.is-open .header__toggle span:nth-child(2) {
  top: 50%;
  bottom: auto;
  transform: translateY(-50%) rotate(-45deg);
}

/*=====================
  固定ヘッダーのオフセット
======================*/
main {
  padding-top: var(--header-h, 64px);
}

#fv,
[id^=sec],
.anchor {
  scroll-margin-top: var(--header-h, 64px);
}

.anchor {
  display: block;
  height: 0;
}

.btn_orange {
  position: absolute;
  left: 50%;
  bottom: 4%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  font-weight: 700;
  width: 90%;
  padding: 1.1rem 1.8rem;
  background-image: linear-gradient(0deg, #eb7500, #efb132);
  color: #fff;
  font-size: 1.7rem;
  text-align: center;
  text-decoration: none;
  border-radius: 10px;
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.2);
  height: 8%;
}
.btn_orange_icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  background-color: #fff;
  border-radius: 50%;
}
.btn_orange_icon svg {
  width: 1.5rem;
  height: 1.5rem;
  margin-left: 2px;
}
.btn_orange_icon svg polygon {
  fill: #eb7500;
}
@media screen and (min-width: 781px) {
  .btn_orange {
    font-size: 16px;
  }
  .btn_orange_icon {
    width: 1.2rem;
    height: 1.2rem;
  }
  .btn_orange_icon svg {
    width: 0.8rem;
    height: 0.8rem;
    margin-left: 0.5px;
  }
}

.rollover {
  transition: opacity 0.3s ease;
}

a.rollover:hover,
.rollover:hover {
  opacity: 0.7;
  cursor: pointer;
}

.button-centered-icon-text {
  display: flex;
  box-sizing: border-box;
  gap: 8px;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 320px;
  height: 64px;
  padding: 8px 16px 8px 8px;
  font-size: 1.8rem;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background: linear-gradient(to right, #fd473f, #f59702);
  border-radius: 32px;
  font-weight: bold;
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 781px) {
  .button-centered-icon-text {
    font-size: 1.4rem;
    max-width: 480px;
  }
}
.button-centered-icon-text.is-reverse {
  flex-direction: row-reverse;
  padding: 8px 8px 8px 16px;
}
.button-centered-icon-text .icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  aspect-ratio: 1;
  overflow: hidden;
}
.button-centered-icon-text .icon-wrap svg {
  display: block;
  width: 3rem;
  aspect-ratio: 1;
}
.button-centered-icon-text .icon-wrap svg * {
  fill: none;
  stroke: currentcolor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu__btn {
  position: relative;
}
.menu__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #fff url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><polygon points="7,4 20,12 7,20" fill="%23eb7500"/></svg>') no-repeat 54% center/70%;
}
@media screen and (min-width: 781px) {
  .menu__btn::after {
    right: 25px;
    width: 20px;
    height: 20px;
    background: #fff url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><polygon points="7,4 20,12 7,20" fill="%23eb7500"/></svg>') no-repeat 45% center/60%;
  }
}

#fv {
  position: relative;
  width: 100%;
}
#fv .fv_ttl,
#fv .fv_desc {
  position: absolute;
  text-align: center;
}
#fv {
  aspect-ratio: 780/1514;
  background: url(../images/fv_bg_sp.webp) no-repeat center top/100% auto;
}
#fv .fv_ttl01 {
  left: 50%;
  top: 12.5%;
  width: 80%;
  transform: translate(-50%, -50%);
}
#fv .fv_ttl02 {
  left: 50%;
  top: 41%;
  width: 80%;
  transform: translate(-50%, -50%);
}
#fv .fv_desc {
  left: 50%;
  top: 71%;
  width: 56%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 3.7vw;
  line-height: 1.6;
  text-shadow: 0px 0px 10px rgb(0, 140, 60), 0px 0px 10px rgb(0, 140, 60), 0px 0px 10px rgb(0, 140, 60);
  text-align: left;
  text-align: justify;
  font-weight: bold;
}
#fv .fv_ttl03 {
  left: 50%;
  top: 91%;
  width: 95%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 781px) {
  #fv {
    --bg-w: min(2000px, calc(2000 * 100vw / 1200));
    --bg-h: calc(var(--bg-w) * 881 / 2000);
    background: url(../images/fv_bg_pc.webp) no-repeat center top/var(--bg-w) auto;
    height: var(--bg-h);
  }
  #fv .fv_ttl,
  #fv .fv_desc {
    left: calc((100% - var(--bg-w)) / 2 + var(--x) / 2000 * var(--bg-w));
    top: calc(var(--y) / 1887 * var(--bg-h));
    width: calc(var(--w) / 2000 * var(--bg-w));
  }
  #fv .fv_ttl01 {
    --x: 998;
    --y: 295;
    --w: 684;
  }
  #fv .fv_ttl02 {
    --x: 998;
    --y: 856;
    --w: 732;
  }
  #fv .fv_desc {
    --x: 998;
    --y: 1312;
    --w: 638;
    font-size: calc(var(--bg-w) * 16 / 2000);
  }
  #fv .fv_ttl03 {
    --x: 998;
    --y: 1630;
    --w: 572;
  }
}

#sec01 {
  position: relative;
  width: 100%;
}
#sec01 .sec01_ul,
#sec01 .sec01_txt {
  position: absolute;
  text-align: center;
}
#sec01 {
  aspect-ratio: 780/1137;
  background: url(../images/sec01_bg_sp.png) no-repeat center top/100% auto;
}
#sec01 .sec01_ul {
  left: 12%;
  top: 20.5%;
  width: 80%;
  list-style: none;
}
#sec01 .sec01_ul li {
  display: flex; /* アイコンとテキストを横並びにして回り込みを防ぐ */
  align-items: flex-start; /* アイコンを1行目に揃える */
  padding: 2%; /* 余白指定 */
  font-size: 3.8vw;
  line-height: 1.7;
  text-align: justify;
}
@media screen and (min-width: 781px) {
  #sec01 .sec01_ul li {
    font-size: calc(var(--bg-w) * 18 / 2000);
  }
}
#sec01 .sec01_ul li {
  text-align: left;
  line-height: 1.4;
}
#sec01 .sec01_ul li::before {
  content: ""; /* 空の要素作成 */
  flex-shrink: 0; /* アイコンを縮ませない */
  width: 25px; /* 幅指定 */
  height: 25px; /* 高さ指定 */
  position: relative; /* アイコンの位置を調整 */
  top: 1%; /* アイコンの位置を調整 */
  margin-right: 2%; /* 余白指定 */
  background-image: url(../images/checkmark.png); /* アイコン指定 */
  background-size: contain; /* アイコンの大きさ指定 */
  background-repeat: no-repeat; /* アイコンをリピートしないようにする */
}
#sec01 .sec01_txt01 {
  font-size: 3.8vw;
  line-height: 1.7;
  text-align: justify;
}
@media screen and (min-width: 781px) {
  #sec01 .sec01_txt01 {
    font-size: calc(var(--bg-w) * 18 / 2000);
  }
}
#sec01 .sec01_txt01 {
  top: 75%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  line-height: 1.3;
  text-align: center;
}
#sec01 .sec01_txt02 {
  font-size: 4.5vw;
  top: 84%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  line-height: 1.3;
  background-color: #efb132;
  border-radius: 10px;
  color: white;
  padding: 0.5rem;
  font-weight: bold;
}
@media screen and (min-width: 781px) {
  #sec01 {
    --bg-w: min(2000px, calc(2000 * 100vw / 1200));
    --bg-h: calc(var(--bg-w) * 538 / 2000);
    background: url(../images/sec01_bg_pc.webp) no-repeat center top/var(--bg-w) auto;
    height: var(--bg-h);
  }
  #sec01 .sec01_ul,
  #sec01 .sec01_txt {
    left: calc((100% - var(--bg-w)) / 2 + var(--x) / 2000 * var(--bg-w));
    top: calc(var(--y) / 1887 * var(--bg-h));
    width: calc(var(--w) / 2000 * var(--bg-w));
  }
  #sec01 .sec01_ul {
    --x: 723;
    --y: 462;
    --w: 600;
  }
  #sec01 .sec01_ul li {
    line-height: 1.2;
    margin-bottom: -2%;
  }
  #sec01 .sec01_ul li::before {
    content: ""; /* 空の要素作成 */
    width: calc(var(--bg-w) * 20 / 2000); /* 背景画像に追随（2000px基準で20px相当） */
    height: calc(var(--bg-w) * 20 / 2000); /* 背景画像に追随（2000px基準で20px相当） */
    position: relative; /* アイコンの位置を調整 */
  }
  #sec01 .sec01_txt01 {
    --x: 1007;
    --y: 1278;
    --w: 405;
    font-size: calc(var(--bg-w) * 20 / 2000);
  }
  #sec01 .sec01_txt02 {
    --x: 996;
    --y: 1539;
    --w: 597;
    font-size: calc(var(--bg-w) * 24 / 2000);
  }
}

#sec02 {
  position: relative;
  width: 100%;
}
#sec02 .sec02_card,
#sec02 .sec02_lead {
  position: absolute;
  margin: 0;
}
#sec02 .sec02_card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3% 2% 1%;
}
#sec02 .sec02_num {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin: 0;
  color: black;
  font-weight: bold;
  line-height: 0.8;
  font-size: 14vw;
}
#sec02 .sec02_num__unit {
  font-size: 0.5em;
  font-weight: bold;
  margin-left: 0.05em;
}
#sec02 .sec02_num--frac {
  align-items: flex-start;
}
#sec02 .sec02_num__stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 0.04em;
  font-size: 0.4em;
  line-height: 1.05;
  font-weight: bold;
}
#sec02 .sec02_num__main04 {
  margin-bottom: 5%;
}
#sec02 .sec02_bar {
  display: block;
  width: 8vw;
  max-width: 40px;
  height: 2px;
  margin: 1em 0;
  background: #008c3c;
}
#sec02 .sec02_label {
  margin: 0 0 7%;
  color: #008c3c;
  font-weight: bold;
  line-height: 1.2;
  font-size: 4.6vw;
}
#sec02 .sec02_label04 {
  margin: 5% 0 3%;
}
#sec02 .sec02_label05 {
  margin: 0;
}
#sec02 .sec02_sub {
  margin: 0.4em 0 0;
  color: #333;
  line-height: 1.35;
  font-size: 3.2vw;
}
#sec02 .sec02_sub--mark {
  margin: 0;
}
#sec02 .sec02_lead {
  left: 50%;
  top: 93.5%;
  transform: translate(-50%, -50%);
  width: 92%;
  color: white;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
  font-size: 4vw;
}
#sec02 {
  aspect-ratio: 780/1174;
  background: url(../images/sec02_bg_sp.png) no-repeat center top/100% auto;
}
#sec02 .sec02_card--1 {
  left: 3.85%;
  top: 29.01%;
  width: 43.97%;
  height: 27.73%;
}
#sec02 .sec02_card--2 {
  left: 52.05%;
  top: 29.01%;
  width: 43.97%;
  height: 27.73%;
}
#sec02 .sec02_card--3 {
  left: 3.85%;
  top: 59.47%;
  width: 43.97%;
  height: 27.82%;
}
#sec02 .sec02_card--4 {
  left: 52.05%;
  top: 59%;
  width: 43.97%;
  height: 27.82%;
}
@media screen and (min-width: 781px) {
  #sec02 {
    --bg-w: min(2000px, calc(2000 * 100vw / 1200));
    --bg-h: calc(var(--bg-w) * 699 / 2000);
    background: url(../images/sec02_bg_pc.png) no-repeat center top/var(--bg-w) auto;
    height: var(--bg-h);
  }
  #sec02 .sec02_card {
    left: calc((100% - var(--bg-w)) / 2 + var(--x) / 2000 * var(--bg-w));
    top: calc(var(--y) / 699 * var(--bg-h));
    width: calc(var(--w) / 2000 * var(--bg-w));
    height: calc(var(--h) / 699 * var(--bg-h));
  }
  #sec02 .sec02_card--1 {
    --x: 450;
    --y: 347;
    --w: 257;
    --h: 244;
  }
  #sec02 .sec02_card--2 {
    --x: 731;
    --y: 347;
    --w: 256;
    --h: 244;
  }
  #sec02 .sec02_card--3 {
    --x: 1012;
    --y: 347;
    --w: 256;
    --h: 244;
  }
  #sec02 .sec02_card--4 {
    --x: 1292;
    --y: 335;
    --w: 257;
    --h: 244;
  }
  #sec02 .sec02_num {
    font-size: calc(var(--bg-w) * 90 / 2000);
  }
  #sec02 .sec02_num .sec02_num__main04 {
    font-size: calc(var(--bg-w) * 80 / 2000);
    margin: 5% 0;
  }
  #sec02 .sec02_bar {
    width: calc(var(--bg-w) * 40 / 2000);
    max-width: none;
    height: 3px;
  }
  #sec02 .sec02_label {
    font-size: calc(var(--bg-w) * 22 / 2000);
    margin: 0 0 8%;
  }
  #sec02 .sec02_label04 {
    margin: 0 0 3%;
  }
  #sec02 .sec02_label05 {
    margin: 0 0 2%;
  }
  #sec02 .sec02_sub {
    font-size: calc(var(--bg-w) * 14 / 2000);
  }
  #sec02 .sec02_lead {
    top: 92%;
    width: auto;
    white-space: nowrap;
    font-size: calc(var(--bg-w) * 20 / 2000);
  }
}

#sec03 {
  position: relative;
  width: 100%;
}
#sec03 .sec03_txtbox {
  position: absolute;
  text-align: center;
}
#sec03 .sec03_txtbox .sec03_ttl {
  font-size: 6.5vw;
  text-align: left;
  margin-bottom: 10%;
  font-weight: bold;
  line-height: 1.3;
}
#sec03 .sec03_txtbox .sec03_desc {
  font-size: 3.8vw;
  line-height: 1.7;
  text-align: justify;
}
@media screen and (min-width: 781px) {
  #sec03 .sec03_txtbox .sec03_desc {
    font-size: calc(var(--bg-w) * 18 / 2000);
  }
}
#sec03 .sec03_txtbox .sec03_desc {
  text-align: left;
}
#sec03 {
  aspect-ratio: 780/4484;
  background: url(../images/sec03_bg_sp.webp) no-repeat center top/100% auto;
}
#sec03 .sec03_txtbox01 {
  left: 50%;
  top: 7.7%;
  width: 90%;
  transform: translate(-50%, -50%);
  font-size: 3.8vw;
  line-height: 1.7;
  text-align: justify;
}
@media screen and (min-width: 781px) {
  #sec03 .sec03_txtbox01 {
    font-size: calc(var(--bg-w) * 18 / 2000);
  }
}
#sec03 .sec03_txtbox01 {
  letter-spacing: -0.02em;
  line-height: 1.7;
}
#sec03 .sec03_txtbox02 {
  left: 10%;
  top: 24%;
  width: 80%;
}
#sec03 .sec03_txtbox03 {
  left: 10%;
  top: 47%;
  width: 80%;
}
#sec03 .sec03_txtbox04 {
  left: 10%;
  top: 68.5%;
  width: 80%;
}
#sec03 .sec03_txtbox05 {
  left: 10%;
  top: 92.7%;
  width: 80%;
}
#sec03 .sec03_txtbox05 .sec03_ttl {
  letter-spacing: -0.05em;
}
@media screen and (min-width: 781px) {
  #sec03 {
    --bg-w: min(2000px, calc(2000 * 100vw / 1200));
    --bg-h: calc(var(--bg-w) * 2092 / 2000);
    background: url(../images/sec03_bg_pc.webp) no-repeat center top/var(--bg-w) auto;
    height: var(--bg-h);
  }
  #sec03 .sec03_txtbox {
    left: calc((100% - var(--bg-w)) / 2 + var(--x) / 2000 * var(--bg-w));
    top: calc(var(--y) / 1887 * var(--bg-h));
    width: calc(var(--w) / 2000 * var(--bg-w));
  }
  #sec03 .sec03_txtbox .sec03_ttl {
    font-size: calc(var(--bg-w) * 32 / 2000);
    margin-bottom: 13%;
  }
  #sec03 .sec03_txtbox .sec03_desc {
    font-size: calc(var(--bg-w) * 18 / 2000);
  }
  #sec03 .sec03_txtbox01 {
    --x: 988;
    --y: 214;
    --w: 960;
    text-align: center;
  }
  #sec03 .sec03_txtbox02 {
    --x: 553;
    --y: 424;
    --w: 443;
  }
  #sec03 .sec03_txtbox03 {
    --x: 981;
    --y: 823;
    --w: 443;
  }
  #sec03 .sec03_txtbox04 {
    --x: 553;
    --y: 1219;
    --w: 465;
  }
  #sec03 .sec03_txtbox05 {
    --x: 981;
    --y: 1620;
    --w: 443;
  }
}

#sec04 {
  position: relative;
  width: 100%;
}
#sec04 .sec04_txt {
  position: absolute;
  text-align: center;
}
#sec04 {
  aspect-ratio: 780/1089;
  background: url(../images/sec04_bg_sp.webp) no-repeat center top/100% auto;
}
#sec04 .sec04_txt {
  left: 2%;
  top: 77%;
  width: 100%;
  font-size: 3.8vw;
  line-height: 1.7;
  text-align: justify;
}
@media screen and (min-width: 781px) {
  #sec04 .sec04_txt {
    font-size: calc(var(--bg-w) * 18 / 2000);
  }
}
#sec04 .sec04_txt {
  text-align: center;
  line-height: 1.5;
}
@media screen and (min-width: 781px) {
  #sec04 {
    --bg-w: min(2000px, calc(2000 * 100vw / 1200));
    --bg-h: calc(var(--bg-w) * 956 / 2000);
    background: url(../images/sec04_bg_pc.webp) no-repeat center top/var(--bg-w) auto;
    height: var(--bg-h);
  }
  #sec04 .sec04_txt {
    left: calc((100% - var(--bg-w)) / 2 + var(--x) / 2000 * var(--bg-w));
    top: calc(var(--y) / 1887 * var(--bg-h));
    width: calc(var(--w) / 2000 * var(--bg-w));
  }
  #sec04 .sec04_txt {
    --x: 697;
    --y: 1572;
    --w: 620;
  }
}

#sec05 {
  position: relative;
  width: 100%;
}
#sec05 .sec05_txt {
  position: absolute;
  text-align: left;
}
#sec05 .sec05_ttl {
  font-size: 6vw;
  color: white;
  font-weight: bold;
  margin-bottom: 3%;
}
#sec05 .sec05_desc {
  font-size: 3.8vw;
  line-height: 1.7;
  text-align: justify;
}
@media screen and (min-width: 781px) {
  #sec05 .sec05_desc {
    font-size: calc(var(--bg-w) * 18 / 2000);
  }
}
#sec05 .sec05_desc {
  width: 70%;
}
#sec05 {
  aspect-ratio: 780/2266;
  background: url(../images/sec05_bg_sp.webp) no-repeat center top/100% auto;
}
#sec05 .sec05_txt01 {
  left: 21%;
  top: 28.8%;
}
#sec05 .sec05_txt02 {
  left: 28%;
  top: 53.6%;
}
#sec05 .sec05_txt03 {
  left: 21%;
  top: 78.6%;
}
@media screen and (min-width: 781px) {
  #sec05 {
    --bg-w: min(2000px, calc(2000 * 100vw / 1200));
    --bg-h: calc(var(--bg-w) * 1452 / 2000);
    background: url(../images/sec05_bg_pc.webp) no-repeat center top/var(--bg-w) auto;
    height: var(--bg-h);
  }
  #sec05 .sec05_txt {
    left: calc((100% - var(--bg-w)) / 2 + var(--x) / 2000 * var(--bg-w));
    top: calc(var(--y) / 1887 * var(--bg-h));
    width: calc(var(--w) / 2000 * var(--bg-w));
  }
  #sec05 .sec05_txt .sec05_ttl {
    font-size: calc(var(--bg-w) * 32 / 2000);
  }
  #sec05 .sec05_txt .sec05_desc {
    font-size: calc(var(--bg-w) * 18 / 2000);
  }
  #sec05 .sec05_txt01 {
    --x: 958;
    --y: 524;
    --w: 445;
  }
  #sec05 .sec05_txt02 {
    --x: 674;
    --y: 959;
    --w: 445;
  }
  #sec05 .sec05_txt03 {
    --x: 958;
    --y: 1397;
    --w: 445;
  }
}

#sec06 {
  position: relative;
  width: 100%;
}
#sec06 .sec06_txt {
  position: absolute;
  text-align: left;
  display: flex;
  justify-content: left;
  width: 100%;
  left: 8%;
}
#sec06 .sec06_txt .sec06_ttl {
  font-size: 4.5vw;
  font-weight: bold;
  color: #dc5848;
  margin-right: 8%;
  margin-top: 0.5%;
}
#sec06 .sec06_txt .sec06_desc {
  font-size: 3.8vw;
  line-height: 1.7;
  text-align: justify;
}
@media screen and (min-width: 781px) {
  #sec06 .sec06_txt .sec06_desc {
    font-size: calc(var(--bg-w) * 18 / 2000);
  }
}
#sec06 .sec06_txt .sec06_desc {
  line-height: 1;
}
#sec06 {
  aspect-ratio: 780/2079;
  background: url(../images/sec06_bg_sp.webp) no-repeat center top/100% auto;
}
#sec06 .sec06_txt01 {
  top: 51.9%;
}
#sec06 .sec06_txt01 .sec06_ttl {
  margin-right: 11%;
}
#sec06 .sec06_txt02 {
  top: 57.1%;
}
#sec06 .sec06_txt02 .sec06_ttl {
  margin-right: 8%;
}
#sec06 .sec06_txt03 {
  top: 62.5%;
}
#sec06 .sec06_txt03 .sec06_ttl {
  margin-right: 22%;
  margin-top: 0;
}
#sec06 .sec06_txt03 .sec06_desc {
  line-height: 1.6;
}
#sec06 .sec06_txt04 {
  top: 67.5%;
}
#sec06 .sec06_txt04 .sec06_ttl {
  margin-right: 26%;
}
@media screen and (min-width: 781px) {
  #sec06 {
    --bg-w: min(2000px, calc(2000 * 100vw / 1200));
    --bg-h: calc(var(--bg-w) * 1375 / 2000);
    background: url(../images/sec06_bg_pc.webp) no-repeat center top/var(--bg-w) auto;
    height: var(--bg-h);
  }
  #sec06 .sec06_txt {
    left: calc((100% - var(--bg-w)) / 2 + var(--x) / 2000 * var(--bg-w));
    top: calc(var(--y) / 1887 * var(--bg-h));
    width: calc(var(--w) / 2000 * var(--bg-w));
  }
  #sec06 .sec06_txt .sec06_ttl {
    font-size: calc(var(--bg-w) * 34 / 2000);
    line-height: 1.5;
    margin-top: -1.5%;
  }
  #sec06 .sec06_txt .sec06_desc {
    font-size: calc(var(--bg-w) * 18 / 2000);
    line-height: 1.5;
  }
  #sec06 .sec06_txt01 {
    --x: 564;
    --y: 1002;
    --w: 760;
  }
  #sec06 .sec06_txt01 .sec06_ttl {
    margin-right: 14%;
  }
  #sec06 .sec06_txt02 {
    --x: 564;
    --y: 1111;
    --w: 760;
  }
  #sec06 .sec06_txt02 .sec06_ttl {
    margin-right: 11.5%;
  }
  #sec06 .sec06_txt03 {
    --x: 564;
    --y: 1218;
    --w: 760;
  }
  #sec06 .sec06_txt03 .sec06_ttl {
    margin-right: 25.5%;
  }
  #sec06 .sec06_txt04 {
    --x: 564;
    --y: 1328;
    --w: 760;
  }
  #sec06 .sec06_txt04 .sec06_ttl {
    margin-right: 30%;
  }
}

#sec07 {
  position: relative;
  width: 100%;
}
#sec07 .sec07_txt,
#sec07 .sec07_txt01 {
  position: absolute;
  width: 40%;
}
#sec07 .sec07_ttl {
  color: #559ccf;
  font-size: 8vw;
  text-align: center;
  font-weight: bold;
  line-height: 1.1;
  margin-bottom: 4%;
}
#sec07 .sec07_desc {
  font-size: 3.8vw;
  line-height: 1.7;
  text-align: justify;
}
@media screen and (min-width: 781px) {
  #sec07 .sec07_desc {
    font-size: calc(var(--bg-w) * 18 / 2000);
  }
}
#sec07 .sec07_desc {
  line-height: 1.5;
  width: 90%;
  margin: 0 auto;
}
#sec07 {
  aspect-ratio: 780/1446;
  background: url(../images/sec07_bg_sp.webp) no-repeat center top/100% auto;
}
#sec07 .sec07_txt01 {
  left: 50%;
  top: 25%;
  width: 90%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 3.8vw;
  line-height: 1.7;
  text-align: justify;
}
@media screen and (min-width: 781px) {
  #sec07 .sec07_txt01 {
    font-size: calc(var(--bg-w) * 18 / 2000);
  }
}
#sec07 .sec07_txt01 {
  text-align: center;
  line-height: 1.5;
}
#sec07 .sec07_txt02 {
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
}
#sec07 .sec07_txt03 {
  left: 6%;
  top: 62%;
}
#sec07 .sec07_txt04 {
  left: 59%;
  top: 62%;
}
@media screen and (min-width: 781px) {
  #sec07 {
    --bg-w: min(2000px, calc(2000 * 100vw / 1200));
    --bg-h: calc(var(--bg-w) * 991 / 2000);
    background: url(../images/sec07_bg_pc.webp) no-repeat center top/var(--bg-w) auto;
    height: var(--bg-h);
  }
  #sec07 .sec07_txt {
    left: calc((100% - var(--bg-w)) / 2 + var(--x) / 2000 * var(--bg-w));
    top: calc(var(--y) / 1887 * var(--bg-h));
    width: calc(var(--w) / 2000 * var(--bg-w));
  }
  #sec07 .sec07_txt .sec07_ttl {
    font-size: calc(var(--bg-w) * 40 / 2000);
    margin-bottom: 5%;
  }
  #sec07 .sec07_txt02 {
    --x: 998;
    --y: 859;
    --w: 195;
  }
  #sec07 .sec07_txt03 {
    --x: 710;
    --y: 1245;
    --w: 224;
  }
  #sec07 .sec07_txt04 {
    --x: 1075;
    --y: 1245;
    --w: 224;
  }
}

#sec08 {
  position: relative;
  width: 100%;
}
#sec08 .sec08_txt,
#sec08 .sec08_subtxt {
  position: absolute;
}
#sec08 {
  aspect-ratio: 780/2392;
  background: url(../images/sec08_bg_sp.webp) no-repeat center top/100% auto;
}
#sec08 .sec08_subtxt {
  left: 50%;
  top: 14.5%;
  width: 80%;
  transform: translate(-50%, -50%);
  font-size: 3.8vw;
  line-height: 1.5;
  text-align: left;
  text-align: justify;
}
#sec08 .sec08_txt {
  width: 55%;
  left: 32%;
}
#sec08 .sec08_ttl {
  color: #008c3c;
  font-size: 5vw;
  margin-bottom: 3%;
  font-weight: bold;
}
#sec08 .sec08_desc {
  font-size: 3.8vw;
  line-height: 1.7;
  text-align: justify;
}
@media screen and (min-width: 781px) {
  #sec08 .sec08_desc {
    font-size: calc(var(--bg-w) * 18 / 2000);
  }
}
#sec08 .sec08_desc {
  line-height: 1.3;
}
#sec08 .sec08_txt01 {
  top: 24.2%;
}
#sec08 .sec08_txt02 {
  top: 33%;
  letter-spacing: -0.03em;
}
#sec08 .sec08_txt03 {
  top: 40.8%;
}
#sec08 .sec08_txt04 {
  top: 50.5%;
}
#sec08 .sec08_txt05 {
  top: 58.4%;
}
#sec08 .sec08_txt06 {
  top: 66.3%;
  letter-spacing: -0.03em;
}
#sec08 .sec08_txt07 {
  top: 74.2%;
}
@media screen and (min-width: 781px) {
  #sec08 {
    --bg-w: min(2000px, calc(2000 * 100vw / 1200));
    --bg-h: calc(var(--bg-w) * 1504 / 2000);
    background: url(../images/sec08_bg_pc.webp) no-repeat center top/var(--bg-w) auto;
    height: var(--bg-h);
  }
  #sec08 .sec08_txt,
  #sec08 .sec08_subtxt {
    left: calc((100% - var(--bg-w)) / 2 + var(--x) / 2000 * var(--bg-w));
    top: calc(var(--y) / 1887 * var(--bg-h));
    width: calc(var(--w) / 2000 * var(--bg-w));
    --x: 782;
    --w: 550;
  }
  #sec08 .sec08_subtxt {
    font-size: calc(var(--bg-w) * 18 / 2000);
    --x: 1006;
    --y: 326;
    --w: 720;
    text-align: center;
  }
  #sec08 .sec08_ttl {
    font-size: calc(var(--bg-w) * 27 / 2000);
  }
  #sec08 .sec08_desc {
    font-size: calc(var(--bg-w) * 18 / 2000);
  }
  #sec08 .sec08_txt01 {
    --y: 465;
  }
  #sec08 .sec08_txt02 {
    --y: 611;
  }
  #sec08 .sec08_txt03 {
    --y: 759;
  }
  #sec08 .sec08_txt04 {
    --y: 905;
  }
  #sec08 .sec08_txt05 {
    --y: 1051;
  }
  #sec08 .sec08_txt06 {
    --y: 1197;
  }
  #sec08 .sec08_txt07 {
    --y: 1345;
  }
}

#sec09 {
  position: relative;
  width: 100%;
}
#sec09 .sec09_txt {
  position: absolute;
  width: 75%;
  left: 50%;
  transform: translateX(-50%);
}
#sec09 .sec09_ttl {
  font-size: 5vw;
  color: #008c3c;
  font-weight: bold;
  text-align: center;
  margin-bottom: 4%;
  line-height: 1.1;
}
#sec09 .sec09_desc {
  font-size: 3.8vw;
  line-height: 1.7;
  text-align: justify;
}
@media screen and (min-width: 781px) {
  #sec09 .sec09_desc {
    font-size: calc(var(--bg-w) * 18 / 2000);
  }
}
#sec09 .sec09_desc {
  text-align: left;
  line-height: 1.5;
  text-align: center;
}
#sec09 {
  aspect-ratio: 780/3240;
  background: url(../images/sec09_bg_sp.webp) no-repeat center top/100% auto;
}
#sec09 .sec09_txt01 {
  top: 17%;
}
#sec09 .sec09_txt02 {
  top: 41.5%;
}
#sec09 .sec09_txt03 {
  top: 66.5%;
}
#sec09 .sec09_txt04 {
  top: 91%;
}
@media screen and (min-width: 781px) {
  #sec09 {
    --bg-w: min(2000px, calc(2000 * 100vw / 1200));
    --bg-h: calc(var(--bg-w) * 538 / 2000);
    background: url(../images/sec09_bg_pc.webp) no-repeat center top/var(--bg-w) auto;
    height: var(--bg-h);
  }
  #sec09 .sec09_txt {
    left: calc((100% - var(--bg-w)) / 2 + var(--x) / 2000 * var(--bg-w));
    top: calc(var(--y) / 1887 * var(--bg-h));
    width: calc(var(--w) / 2000 * var(--bg-w));
    --w: 173;
    --y: 960;
  }
  #sec09 .sec09_ttl {
    font-size: calc(var(--bg-w) * 28 / 2000);
    margin-bottom: 10%;
  }
  #sec09 .sec09_desc {
    font-size: calc(var(--bg-w) * 18 / 2000);
    line-height: 1.5;
  }
  #sec09 .sec09_txt01 {
    --x: 579;
  }
  #sec09 .sec09_txt02 {
    --x: 860;
  }
  #sec09 .sec09_txt03 {
    --x: 1146;
  }
  #sec09 .sec09_txt04 {
    --x: 1426;
  }
}

#sec10 {
  position: relative;
  width: 100%;
}
#sec10 .sec10_card,
#sec10 .sec10_grad,
#sec10 .sec10_count,
#sec10 .sec10_break {
  position: absolute;
  margin: 0;
}
#sec10 .sec10_card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1% 2%;
}
#sec10 .sec10_num {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin: 0;
  color: black;
  font-weight: bold;
  line-height: 0.81;
  font-size: 14vw;
}
#sec10 .sec10_num__unit {
  font-size: 0.5em;
  font-weight: bold;
  margin-left: 0.05em;
}
#sec10 .sec10_num--frac {
  align-items: flex-start;
}
#sec10 .sec10_num__stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 0.04em;
  font-size: 0.42em;
  line-height: 1.05;
  font-weight: bold;
}
#sec10 .sec10_bar {
  display: block;
  width: 8vw;
  max-width: 40px;
  height: 2px;
  margin: 1em 0;
  background: #008c3c;
}
#sec10 .sec10_label {
  margin: 0 0 5%;
  color: #008c3c;
  font-weight: bold;
  line-height: 1.3;
  font-size: 4.4vw;
}
#sec10 .sec10_sub {
  margin: 0 0 0;
  color: #333;
  line-height: 1.35;
  font-size: 3.2vw;
}
#sec10 .sec10_grad {
  color: white;
  font-weight: bold;
  text-align: center;
  line-height: 1.35;
  font-size: 3.2vw;
}
#sec10 .sec10_count {
  color: black;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  font-size: 6.4vw;
}
#sec10 .sec10_count__num {
  color: #008c3c;
  font-size: 1.8em;
  margin-right: 0.05em;
  letter-spacing: -0.1em;
}
#sec10 .sec10_break__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 3.4vw;
}
#sec10 .sec10_break__item {
  display: flex;
  align-items: baseline;
  color: black;
  font-weight: bold;
  line-height: 1;
  font-size: 3.8vw;
  white-space: nowrap;
}
#sec10 .sec10_break__cat {
  flex: 0 0 auto;
}
#sec10 .sec10_break__dots {
  flex: 1 1 auto;
  margin: 0 0.5em;
  border-bottom: 2px dotted #7ba17b;
  transform: translateY(-0.25em);
}
#sec10 .sec10_break__cnt {
  flex: 0 0 auto;
  color: #008c3c;
  font-size: 5.13vw;
}
@media screen and (min-width: 781px) {
  #sec10 .sec10_break__cnt {
    font-size: calc(var(--bg-w) * 24 / 2000);
  }
}
#sec10 .sec10_break__n {
  font-size: 9vw;
  margin-right: 0.05em;
  font-weight: bold;
}
#sec10 .sec10_break__item--other {
  display: block;
  white-space: normal;
}
#sec10 .sec10_break__note {
  margin: 3.4vw 0 0;
  line-height: 1.7;
  text-align: justify;
  font-size: 3.8vw;
  line-height: 1.7;
  text-align: justify;
}
@media screen and (min-width: 781px) {
  #sec10 .sec10_break__note {
    font-size: calc(var(--bg-w) * 18 / 2000);
  }
}
#sec10 {
  aspect-ratio: 779/2437;
  background: url(../images/sec10_bg_sp.webp) no-repeat center top/100% auto;
}
#sec10 .sec10_card--1 {
  left: 3.72%;
  top: 9%;
  width: 44.03%;
  height: 13.39%;
}
#sec10 .sec10_card--2 {
  left: 51.99%;
  top: 8.75%;
  width: 44.03%;
  height: 13.39%;
}
#sec10 .sec10_card--3 {
  left: 27.86%;
  top: 23.49%;
  width: 44.03%;
  height: 13.35%;
}
#sec10 .sec10_grad {
  left: 9%;
  top: 39.1%;
  width: 21%;
}
#sec10 .sec10_count {
  left: 22%;
  top: 43%;
  width: 56%;
}
#sec10 .sec10_break {
  left: 6.29%;
  top: 50%;
  width: 87.16%;
  height: 47.97%;
  padding: 5% 6% 4%;
}
@media screen and (min-width: 781px) {
  #sec10 {
    --bg-w: min(1999px, calc(1999 * 100vw / 1200));
    --bg-h: calc(var(--bg-w) * 1299 / 1999);
    background: url(../images/sec10_bg_pc.png) no-repeat center top/var(--bg-w) auto;
    height: var(--bg-h);
  }
  #sec10 .sec10_card {
    left: calc((100% - var(--bg-w)) / 2 + var(--x) / 1999 * var(--bg-w));
    top: calc(var(--y) / 1299 * var(--bg-h));
    width: calc(var(--w) / 1999 * var(--bg-w));
    height: calc(var(--h) / 1299 * var(--bg-h));
  }
  #sec10 .sec10_card--1 {
    --x: 520;
    --y: 226;
    --w: 301;
    --h: 285;
  }
  #sec10 .sec10_card--2 {
    --x: 849;
    --y: 226;
    --w: 301;
    --h: 285;
  }
  #sec10 .sec10_card--3 {
    --x: 1178;
    --y: 226;
    --w: 301;
    --h: 285;
  }
  #sec10 .sec10_num {
    font-size: calc(var(--bg-w) * 90 / 1999);
  }
  #sec10 .sec10_bar {
    width: calc(var(--bg-w) * 44 / 1999);
    max-width: none;
    height: 3px;
  }
  #sec10 .sec10_label {
    font-size: calc(var(--bg-w) * 30 / 1999);
  }
  #sec10 .sec10_sub {
    font-size: calc(var(--bg-w) * 14 / 1999);
  }
  #sec10 .sec10_grad {
    left: calc((100% - var(--bg-w)) / 2 + 0.3501750875 * var(--bg-w));
    top: calc(0.4618937644 * var(--bg-h));
    width: calc(0.300150075 * var(--bg-w));
    color: black;
    font-size: calc(var(--bg-w) * 22 / 1999);
    margin-top: 0.5%;
  }
  #sec10 .sec10_count {
    left: calc((100% - var(--bg-w)) / 2 + 0.3251625813 * var(--bg-w));
    top: calc(0.4973056197 * var(--bg-h));
    width: calc(0.3501750875 * var(--bg-w));
    font-size: calc(var(--bg-w) * 40 / 1999);
  }
  #sec10 .sec10_break {
    left: calc((100% - var(--bg-w)) / 2 + 0.2651325663 * var(--bg-w));
    top: calc(0.5750577367 * var(--bg-h));
    width: calc(0.4697348674 * var(--bg-w));
    height: calc(0.3941493457 * var(--bg-h));
    padding: calc(var(--bg-w) * 55 / 1999) calc(var(--bg-w) * 60 / 1999) calc(var(--bg-w) * 40 / 1999);
  }
  #sec10 .sec10_break__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: calc(var(--bg-w) * 70 / 1999);
    row-gap: calc(var(--bg-w) * 26 / 1999);
  }
  #sec10 .sec10_break__list .sec10_break__n {
    font-size: calc(var(--bg-w) * 50 / 2000);
  }
  #sec10 .sec10_break__item {
    font-size: calc(var(--bg-w) * 30 / 1999);
  }
  #sec10 .sec10_break__item .sec10_break__cat {
    font-size: calc(var(--bg-w) * 24 / 2000);
  }
  #sec10 .sec10_break__item--other {
    grid-column: 2;
    font-size: calc(var(--bg-w) * 24 / 2000);
  }
  #sec10 .sec10_break__note {
    margin-top: calc(var(--bg-w) * 30 / 1999);
  }
}

#sec11 {
  position: relative;
  width: 100%;
}
#sec11 .sec11_txt {
  position: absolute;
}
#sec11 .sec11_ttl {
  font-size: 5.13vw;
}
@media screen and (min-width: 781px) {
  #sec11 .sec11_ttl {
    font-size: calc(var(--bg-w) * 24 / 2000);
  }
}
#sec11 .sec11_ttl {
  color: #dc5848;
  margin-left: 30%;
  margin-bottom: 5%;
  font-weight: bold;
}
#sec11 .sec11_desc {
  font-size: 3.8vw;
  line-height: 1.7;
  text-align: justify;
}
@media screen and (min-width: 781px) {
  #sec11 .sec11_desc {
    font-size: calc(var(--bg-w) * 18 / 2000);
  }
}
#sec11 .sec11_desc {
  line-height: 1.7;
}
#sec11 {
  aspect-ratio: 780/4060;
  background: url(../images/sec11_bg_sp.png) no-repeat center top/100% auto;
}
#sec11 .sec11_txt01 {
  left: 50%;
  top: 27.7%;
  width: 80%;
  transform: translate(-50%, -50%);
}
#sec11 .sec11_txt02 {
  left: 50%;
  top: 55.5%;
  width: 80%;
  transform: translate(-50%, -50%);
}
#sec11 .sec11_txt03 {
  left: 50%;
  top: 86%;
  width: 80%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 781px) {
  #sec11 {
    --bg-w: min(2000px, calc(2000 * 100vw / 1200));
    --bg-h: calc(var(--bg-w) * 2179 / 2000);
    background: url(../images/sec11_bg_pc.webp) no-repeat center top/var(--bg-w) auto;
    height: var(--bg-h);
  }
  #sec11 .sec11_txt {
    left: calc((100% - var(--bg-w)) / 2 + var(--x) / 2000 * var(--bg-w));
    top: calc(var(--y) / 1887 * var(--bg-h));
    width: calc(var(--w) / 2000 * var(--bg-w));
    --x: 1050;
    --w: 680;
  }
  #sec11 .sec11_ttl {
    margin-left: 0;
    margin-bottom: 1%;
  }
  #sec11 .sec11_txt01 {
    --y: 602;
  }
  #sec11 .sec11_txt02 {
    --y: 1091;
  }
  #sec11 .sec11_txt03 {
    --y: 1606;
  }
}

#sec12 {
  position: relative;
  width: 100%;
}
#sec12 .sec12_subtxt {
  position: absolute;
  font-size: 3.8vw;
  line-height: 1.7;
  text-align: justify;
}
@media screen and (min-width: 781px) {
  #sec12 .sec12_subtxt {
    font-size: calc(var(--bg-w) * 18 / 2000);
  }
}
#sec12 .sec12_subtxt {
  top: 8.7%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
}
#sec12 .sec12_card {
  position: absolute;
  width: 80%;
}
#sec12 .sec12_txt {
  font-size: 3.8vw;
  line-height: 1.7;
  text-align: justify;
}
@media screen and (min-width: 781px) {
  #sec12 .sec12_txt {
    font-size: calc(var(--bg-w) * 18 / 2000);
  }
}
#sec12 .sec12_name {
  font-size: 6vw;
  margin-bottom: 5%;
}
#sec12 .sec12_desc {
  font-size: 3.8vw;
  line-height: 1.7;
  text-align: justify;
}
@media screen and (min-width: 781px) {
  #sec12 .sec12_desc {
    font-size: calc(var(--bg-w) * 18 / 2000);
  }
}
#sec12 .sec12_desc {
  line-height: 1.7;
}
#sec12 {
  aspect-ratio: 780/5163;
  background: url(../images/sec12_bg_sp.webp) no-repeat center top/100% auto;
}
#sec12 .sec12_card02 {
  left: 12%;
  top: 22%;
}
#sec12 .sec12_card02 .sec12_txt {
  text-align: left;
  margin-left: 50%;
}
#sec12 .sec12_card02 .sec12_name {
  text-align: left;
  margin-left: 50%;
}
#sec12 .sec12_card03 {
  left: 12%;
  top: 38.5%;
}
#sec12 .sec12_card03 .sec12_txt {
  text-align: right;
  margin-right: 50%;
}
#sec12 .sec12_card03 .sec12_name {
  text-align: right;
  margin-right: 50%;
}
#sec12 .sec12_card04 {
  left: 12%;
  top: 52.5%;
}
#sec12 .sec12_card04 .sec12_txt {
  text-align: left;
  margin-left: 50%;
}
#sec12 .sec12_card04 .sec12_name {
  text-align: left;
  margin-left: 50%;
}
#sec12 .sec12_card05 {
  left: 12%;
  top: 71%;
}
#sec12 .sec12_card05 .sec12_txt {
  text-align: right;
  margin-right: 50%;
}
#sec12 .sec12_card05 .sec12_name {
  text-align: right;
  margin-right: 50%;
}
#sec12 .sec12_card06 {
  left: 12%;
  top: 86%;
}
#sec12 .sec12_card06 .sec12_txt {
  text-align: left;
  margin-left: 50%;
  font-size: 3.6vw;
}
#sec12 .sec12_card06 .sec12_name {
  text-align: left;
  margin-left: 50%;
}
@media screen and (min-width: 781px) {
  #sec12 {
    --bg-w: min(2000px, calc(2000 * 100vw / 1200));
    --bg-h: calc(var(--bg-w) * 2045 / 2000);
    background: url(../images/sec12_bg_pc.webp) no-repeat center top/var(--bg-w) auto;
    height: var(--bg-h);
  }
  #sec12 .sec12_subtxt,
  #sec12 .sec12_card {
    left: calc((100% - var(--bg-w)) / 2 + var(--x) / 2000 * var(--bg-w));
    top: calc(var(--y) / 1887 * var(--bg-h));
    width: calc(var(--w) / 2000 * var(--bg-w));
  }
  #sec12 .sec12_subtxt {
    --x: 1000;
    --y: 336;
    --w: 960;
  }
  #sec12 .sec12_card02 {
    --x: 450;
    --y: 602;
    --w: 440;
  }
  #sec12 .sec12_card02 .sec12_txt {
    font-size: calc(var(--bg-w) * 16 / 2000);
    text-align: right;
    margin-left: 0%;
    padding-right: 40%;
  }
  #sec12 .sec12_card02 .sec12_name {
    font-size: calc(var(--bg-w) * 28 / 2000);
    text-align: right;
    margin-left: 0%;
    padding-right: 40%;
    margin-bottom: 7%;
  }
  #sec12 .sec12_card03 {
    --x: 1110;
    --y: 602;
    --w: 440;
  }
  #sec12 .sec12_card03 .sec12_txt {
    font-size: calc(var(--bg-w) * 16 / 2000);
    text-align: left;
    padding-left: 40%;
    margin-right: 0;
  }
  #sec12 .sec12_card03 .sec12_name {
    font-size: calc(var(--bg-w) * 28 / 2000);
    text-align: left;
    margin-left: 0%;
    padding-left: 40%;
    margin-right: 0;
    margin-bottom: 7%;
  }
  #sec12 .sec12_card04 {
    --x: 450;
    --y: 1164;
    --w: 440;
  }
  #sec12 .sec12_card04 .sec12_txt {
    font-size: calc(var(--bg-w) * 16 / 2000);
    text-align: right;
    margin-left: 0%;
    padding-right: 40%;
  }
  #sec12 .sec12_card04 .sec12_name {
    font-size: calc(var(--bg-w) * 28 / 2000);
    text-align: right;
    margin-left: 0%;
    padding-right: 40%;
    margin-bottom: 7%;
  }
  #sec12 .sec12_card05 {
    --x: 1110;
    --y: 1137;
    --w: 440;
  }
  #sec12 .sec12_card05 .sec12_txt {
    font-size: calc(var(--bg-w) * 16 / 2000);
    text-align: left;
    padding-left: 40%;
    margin-right: 0;
  }
  #sec12 .sec12_card05 .sec12_name {
    font-size: calc(var(--bg-w) * 28 / 2000);
    text-align: left;
    margin-left: 0%;
    padding-left: 40%;
    margin-right: 0;
    margin-bottom: 7%;
  }
  #sec12 .sec12_card06 {
    --x: 657;
    --y: 1658;
    --w: 930;
    display: grid;
    grid-template-columns: calc(var(--bg-w) * 250 / 2000) 1fr;
    column-gap: calc(var(--bg-w) * 0 / 2000);
    align-items: start;
  }
  #sec12 .sec12_card06 .sec12_txt {
    grid-column: 1;
    grid-row: 1;
    font-size: calc(var(--bg-w) * 16 / 2000);
    text-align: left;
    margin: 0;
    padding-left: 0;
  }
  #sec12 .sec12_card06 .sec12_name {
    grid-column: 1;
    grid-row: 2;
    font-size: calc(var(--bg-w) * 28 / 2000);
    text-align: left;
    margin: calc(var(--bg-w) * 10 / 2000) 0 0;
    padding-left: 0;
  }
  #sec12 .sec12_card06 .sec12_desc {
    grid-column: 2;
    grid-row: 1/span 2;
    margin: 0;
  }
}

#sec13 {
  position: relative;
  width: 100%;
}
#sec13 .sec13_item {
  position: absolute;
  width: 85%;
  left: 50%;
  transform: translateX(-50%);
}
#sec13 .sec13_txt01 {
  font-size: 6.67vw;
}
@media screen and (min-width: 781px) {
  #sec13 .sec13_txt01 {
    font-size: calc(var(--bg-w) * 26 / 2000);
  }
}
#sec13 .sec13_txt02,
#sec13 .sec13_txt03 {
  font-size: 3.8vw;
  line-height: 1.7;
  text-align: justify;
}
@media screen and (min-width: 781px) {
  #sec13 .sec13_txt02,
  #sec13 .sec13_txt03 {
    font-size: calc(var(--bg-w) * 18 / 2000);
  }
}
#sec13 .sec13_txt04 {
  font-size: 6.67vw;
}
@media screen and (min-width: 781px) {
  #sec13 .sec13_txt04 {
    font-size: calc(var(--bg-w) * 26 / 2000);
  }
}
#sec13 {
  aspect-ratio: 780/3870;
  background: url(../images/sec13_bg_sp.webp) no-repeat center top/100% auto;
}
#sec13 .sec13_item01 {
  top: 20%;
}
#sec13 .sec13_item02 {
  top: 57.5%;
}
#sec13 .sec13_item03 {
  top: 81.3%;
  font-size: 3.8vw;
  line-height: 1.7;
  text-align: justify;
}
@media screen and (min-width: 781px) {
  #sec13 .sec13_item03 {
    font-size: calc(var(--bg-w) * 18 / 2000);
  }
}
#sec13 .sec13_item03 {
  text-align: center;
  border: 1px solid black;
  border-radius: 20px;
  padding: 1.5%;
  line-height: 1.3;
}
#sec13 .sec13_card02 {
  width: 100%;
  margin: 4% 0 0;
  padding: 0;
  aspect-ratio: 3/2;
}
#sec13 .sec13_card02 iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 20px;
}
@media screen and (min-width: 781px) {
  #sec13 {
    --bg-w: min(2000px, calc(2000 * 100vw / 1200));
    --bg-h: calc(var(--bg-w) * 1692 / 2000);
    background: url(../images/sec13_bg_pc.webp) no-repeat center top/var(--bg-w) auto;
    height: var(--bg-h);
  }
  #sec13 .sec13_item {
    left: calc((100% - var(--bg-w)) / 2 + var(--x) / 2000 * var(--bg-w));
    top: calc(var(--y) / 1692 * var(--bg-h));
    width: calc(var(--w) / 2000 * var(--bg-w));
  }
  #sec13 .sec13_item01 {
    --x: 714;
    --y: 738;
    --w: 528;
  }
  #sec13 .sec13_item02 {
    --x: 1287;
    --y: 738;
    --w: 528;
  }
  #sec13 .sec13_item03 {
    --x: 1000;
    --y: 1369;
    --w: 642;
    padding: 1%;
  }
}

#sec14 {
  position: relative;
  width: 100%;
}
#sec14 .sec14_txt {
  position: absolute;
  font-size: 3.8vw;
  line-height: 1.7;
  text-align: justify;
}
@media screen and (min-width: 781px) {
  #sec14 .sec14_txt {
    font-size: calc(var(--bg-w) * 18 / 2000);
  }
}
#sec14 .sec14_txt {
  line-height: 1.2;
  width: 90%;
}
#sec14 {
  aspect-ratio: 780/1341;
  background: url(../images/sec14_bg_sp.webp) no-repeat center top/100% auto;
}
#sec14 .sec14_txt01 {
  top: 12.5%;
  font-size: 3.8vw;
  line-height: 1.7;
  text-align: justify;
}
@media screen and (min-width: 781px) {
  #sec14 .sec14_txt01 {
    font-size: calc(var(--bg-w) * 18 / 2000);
  }
}
#sec14 .sec14_txt02 {
  top: 47.5%;
  left: -18%;
  text-align: center;
}
#sec14 .sec14_txt03 {
  top: 47.5%;
  left: 28%;
  text-align: center;
}
#sec14 .sec14_txt04 {
  top: 74.5%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
#sec14 .sec14_txt05 {
  top: 89.5%;
  left: 50%;
  transform: translateX(-50%);
  width: fit-content;
  max-width: 94%;
  display: flex;
  align-items: baseline;
  justify-content: center;
  padding-bottom: 1.8vw;
  color: white;
}
#sec14 .sec14_txt05::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.4vw;
  background: #fafa2c;
}
#sec14 .sec14_num__desc {
  font-size: 5.2vw;
  font-weight: bold;
  line-height: 1;
  white-space: nowrap;
  color: white;
}
#sec14 .sec14_num {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin: 0;
  font-weight: bold;
  line-height: 0.81;
  font-size: 14vw;
  background: linear-gradient(180deg, #ee9e00 0%, #ffc31a 60%, #ffd94a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
#sec14 .sec14_num__unit {
  font-size: 0.5em;
  font-weight: bold;
  margin-left: 0.05em;
}
#sec14 .sec14_num--frac {
  align-items: flex-end;
}
#sec14 .sec14_num__stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 0.04em;
  font-size: 0.42em;
  line-height: 1.05;
  font-weight: bold;
}
@media screen and (min-width: 781px) {
  #sec14 {
    --bg-w: min(2000px, calc(2000 * 100vw / 1200));
    --bg-h: calc(var(--bg-w) * 816 / 2000);
    background: url(../images/sec14_bg_pc.webp) no-repeat center top/var(--bg-w) auto;
    height: var(--bg-h);
  }
  #sec14 .sec14_txt {
    left: calc((100% - var(--bg-w)) / 2 + var(--x) / 2000 * var(--bg-w));
    top: calc(var(--y) / 816 * var(--bg-h));
    width: calc(var(--w) / 2000 * var(--bg-w));
    line-height: 1.5;
  }
  #sec14 .sec14_txt01 {
    --x: 531;
    --y: 154;
    --w: 960;
    text-align: center;
  }
  #sec14 .sec14_txt02 {
    --x: 480;
    --y: 497;
    --w: 260;
  }
  #sec14 .sec14_txt03 {
    --x: 876;
    --y: 497;
    --w: 260;
  }
  #sec14 .sec14_txt04 {
    --x: 1378;
    --y: 497;
    --w: 260;
  }
  #sec14 .sec14_txt05 {
    --x: 1000;
    --y: 692;
    width: fit-content;
    padding-bottom: 1vw;
  }
  #sec14 .sec14_txt05 .sec14_num__desc {
    font-size: calc(var(--bg-w) * 28 / 2000);
  }
  #sec14 .sec14_txt05 .sec14_num {
    font-size: calc(var(--bg-w) * 70 / 2000);
  }
  #sec14 .sec14_txt05::after {
    height: 0.5vw;
  }
}

#sec15 {
  position: relative;
  width: 100%;
}
#sec15 .sec15_card {
  position: absolute;
  width: 60%;
  left: 29%;
}
#sec15 {
  aspect-ratio: 780/1392;
  background: url(../images/sec15_bg_sp.webp) no-repeat center top/100% auto;
}
#sec15 .sec15_ttl {
  font-size: 5vw;
  line-height: 1.3;
  margin-bottom: 3%;
  font-weight: bold;
}
#sec15 .sec15_desc {
  font-size: 3.8vw;
  line-height: 1.7;
  text-align: justify;
}
@media screen and (min-width: 781px) {
  #sec15 .sec15_desc {
    font-size: calc(var(--bg-w) * 18 / 2000);
  }
}
#sec15 .sec15_desc {
  line-height: 1.2;
}
#sec15 .sec15_card01 {
  top: 16.5%;
}
#sec15 .sec15_card02 {
  top: 37%;
}
#sec15 .sec15_card03 {
  top: 51.5%;
}
#sec15 .sec15_card04 {
  top: 66.5%;
}
#sec15 .sec15_card05 {
  top: 84.5%;
}
@media screen and (min-width: 781px) {
  #sec15 {
    --bg-w: min(2000px, calc(2000 * 100vw / 1200));
    --bg-h: calc(var(--bg-w) * 1073 / 2000);
    background: url(../images/sec15_bg_pc.webp) no-repeat center top/var(--bg-w) auto;
    height: var(--bg-h);
  }
  #sec15 .sec15_card {
    left: calc((100% - var(--bg-w)) / 2 + var(--x) / 2000 * var(--bg-w));
    top: calc(var(--y) / 1073 * var(--bg-h));
    width: calc(var(--w) / 2000 * var(--bg-w));
  }
  #sec15 .sec15_ttl {
    font-size: calc(var(--bg-w) * 24 / 2000);
    line-height: 1.3;
    margin-bottom: 3%;
  }
  #sec15 .sec15_card {
    --x: 801;
    --w: 476;
  }
  #sec15 .sec15_card01 {
    --y: 236;
  }
  #sec15 .sec15_card02 {
    --y: 403;
  }
  #sec15 .sec15_card03 {
    --y: 571;
  }
  #sec15 .sec15_card04 {
    --y: 742;
  }
  #sec15 .sec15_card05 {
    --y: 911;
  }
}

#sec16 {
  background-color: #f1f9e5;
  padding: 4rem 0 6rem;
}
@media screen and (min-width: 781px) {
  #sec16 {
    --bg-w: min(2000px, calc(2000 * 100vw / 1200));
    padding: 40px 0 80px;
  }
}
#sec16 .faq__head {
  margin-bottom: 4rem;
  text-align: center;
}
@media screen and (min-width: 781px) {
  #sec16 .faq__head {
    margin-bottom: 56px;
  }
}
#sec16 .faq__head img {
  width: 14rem;
  height: auto;
  margin: 0 auto;
}
@media screen and (min-width: 781px) {
  #sec16 .faq__head img {
    width: 180px;
  }
}
#sec16 .faq__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (min-width: 781px) {
  #sec16 .faq__list {
    max-width: 840px;
    margin: 0 auto;
    gap: 20px;
  }
}
#sec16 .faq__item {
  padding: 2.4rem 2rem;
  background-color: #fff;
  border: 1px solid #e4e4e7;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}
@media screen and (min-width: 781px) {
  #sec16 .faq__item {
    padding: 32px 40px;
  }
}
#sec16 .faq__row {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
}
@media screen and (min-width: 781px) {
  #sec16 .faq__row {
    gap: 20px;
  }
}
#sec16 .faq__row--q,
#sec16 .faq__row--a {
  align-items: center;
}
#sec16 .faq__row--q {
  width: 100%;
  padding: 0;
  background: none;
  border: 0;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}
#sec16 .faq__toggle {
  position: relative;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  margin-left: auto;
}
@media screen and (min-width: 781px) {
  #sec16 .faq__toggle {
    width: 20px;
    height: 20px;
  }
}
#sec16 .faq__toggle::before, #sec16 .faq__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  background-color: #2b2b2b;
  transform: translate(-50%, -50%);
  transition: transform 0.35s ease, opacity 0.35s ease;
}
#sec16 .faq__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
#sec16 .faq__row--q[aria-expanded=true] .faq__toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}
#sec16 .faq__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
#sec16 .faq__row--q[aria-expanded=true] + .faq__panel {
  grid-template-rows: 1fr;
}
#sec16 .faq__panel-inner {
  min-height: 0;
  overflow: hidden;
}
#sec16 .faq__row--a {
  margin-top: 1.6rem;
}
@media screen and (min-width: 781px) {
  #sec16 .faq__row--a {
    margin-top: 18px;
  }
}
#sec16 .faq__icon {
  flex-shrink: 0;
  width: 3.6rem;
}
@media screen and (min-width: 781px) {
  #sec16 .faq__icon {
    width: 44px;
  }
}
#sec16 .faq__icon img {
  display: block;
  width: 100%;
  height: auto;
}
#sec16 .faq__question {
  display: block;
  flex: 1;
  min-width: 0;
  font-size: 4.5vw;
  font-weight: bold;
  line-height: 1.5;
  color: #2b2b2b;
}
@media screen and (min-width: 781px) {
  #sec16 .faq__question {
    font-size: 22px;
  }
}
#sec16 .faq__answer {
  font-size: 3.8vw;
  line-height: 1.7;
  text-align: justify;
}
@media screen and (min-width: 781px) {
  #sec16 .faq__answer {
    font-size: calc(var(--bg-w) * 18 / 2000);
  }
}
#sec16 .faq__answer {
  line-height: 1.7;
  color: #555;
  text-align: justify;
}

#sec17 {
  position: relative;
  width: 100%;
}
#sec17 .sec17_txt {
  position: absolute;
  font-size: 3.8vw;
  line-height: 1.7;
  text-align: justify;
}
@media screen and (min-width: 781px) {
  #sec17 .sec17_txt {
    font-size: calc(var(--bg-w) * 18 / 2000);
  }
}
#sec17 .sec17_txt {
  width: 83%;
}
#sec17 {
  aspect-ratio: 780/1248;
  background: url(../images/sec17_bg_sp.webp) no-repeat center top/100% auto;
}
#sec17 .sec17_txt01 {
  left: 13%;
  top: 50.5%;
}
#sec17 .sec17_txt02 {
  left: 60%;
  top: 84.5%;
}
@media screen and (min-width: 781px) {
  #sec17 {
    --bg-w: min(2000px, calc(2000 * 100vw / 1200));
    --bg-h: calc(var(--bg-w) * 996 / 2000);
    background: url(../images/sec17_bg_pc.webp) no-repeat center top/var(--bg-w) auto;
    height: var(--bg-h);
  }
  #sec17 .sec17_txt {
    left: calc((100% - var(--bg-w)) / 2 + var(--x) / 2000 * var(--bg-w));
    top: calc(var(--y) / 996 * var(--bg-h));
    width: calc(var(--w) / 2000 * var(--bg-w));
  }
  #sec17 .sec17_txt01 {
    --x: 680;
    --y: 570;
    --w: 720;
  }
  #sec17 .sec17_txt02 {
    --x: 1233;
    --y: 745;
    --w: 720;
  }
}

#sec18 {
  background: #f1f9e5;
  padding-bottom: 6rem;
}
@media screen and (min-width: 781px) {
  #sec18 {
    --bg-w: min(2000px, calc(2000 * 100vw / 1200));
    padding-bottom: 80px;
  }
}
#sec18 .sec18_ttl {
  width: 100%;
}
#sec18 .sec18_ttl img {
  margin: 0 auto;
}
#sec18 .form__lead {
  font-size: 3.8vw;
  line-height: 1.7;
  text-align: justify;
}
@media screen and (min-width: 781px) {
  #sec18 .form__lead {
    font-size: calc(var(--bg-w) * 18 / 2000);
  }
}
#sec18 .form__lead {
  line-height: 1.8;
  text-align: left;
}
@media screen and (min-width: 781px) {
  #sec18 .form__lead {
    font-size: 18px;
    text-align: center;
  }
}
#sec18 .form,
#sec18 .mw_wp_form {
  margin-top: 3.4rem;
}
@media screen and (min-width: 781px) {
  #sec18 .form,
  #sec18 .mw_wp_form {
    margin-top: 46px;
  }
}
#sec18 .form__cols {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 3.6rem;
}
@media screen and (min-width: 781px) {
  #sec18 .form__cols {
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
    row-gap: 54px;
    align-items: start;
  }
}
#sec18 .form__fields,
#sec18 .form__info {
  min-width: 0;
}
@media screen and (min-width: 781px) {
  #sec18 .form__fields {
    grid-column: 1;
    grid-row: 1;
  }
}
@media screen and (min-width: 781px) {
  #sec18 .form__info {
    grid-column: 2;
    grid-row: 1;
  }
}
#sec18 .form__group + .form__group {
  margin-top: 2.2rem;
}
@media screen and (min-width: 781px) {
  #sec18 .form__group + .form__group {
    margin-top: 26px;
  }
}
#sec18 .form__label {
  display: block;
  margin-bottom: 1rem;
  font-size: 3.8vw;
  line-height: 1.7;
  text-align: justify;
}
@media screen and (min-width: 781px) {
  #sec18 .form__label {
    font-size: calc(var(--bg-w) * 18 / 2000);
  }
}
#sec18 .form__label {
  line-height: 1.4;
  color: #2b2b2b;
}
@media screen and (min-width: 781px) {
  #sec18 .form__label {
    margin-bottom: 12px;
  }
}
#sec18 .form__req {
  display: inline-block;
  margin-left: 0.8rem;
  padding: 0.2rem 0.8rem;
  background-color: #dc5848;
  color: white;
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.02em;
  vertical-align: 0.1em;
  border-radius: 4px;
}
@media screen and (min-width: 781px) {
  #sec18 .form__req {
    margin-left: 10px;
    padding: 2px 10px;
    font-size: 12px;
  }
}
#sec18 .form__control,
#sec18 .mw_wp_form .form__group :where(input:not([type=hidden]):not([type=submit]):not([type=button]),
select,
textarea) {
  display: block;
  width: 100%;
  padding: 0.9rem 1.4rem;
  font-family: inherit;
  font-size: max(16px, 3.6vw);
  line-height: 1.5;
  color: #2b2b2b;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 6px;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.2s ease;
}
@media screen and (min-width: 781px) {
  #sec18 .form__control,
  #sec18 .mw_wp_form .form__group :where(input:not([type=hidden]):not([type=submit]):not([type=button]),
  select,
  textarea) {
    padding: 12px 18px;
    font-size: 16px;
  }
}
#sec18 .form__control:focus,
#sec18 .mw_wp_form .form__group :where(input:not([type=hidden]):not([type=submit]):not([type=button]),
select,
textarea):focus {
  outline: none;
  border-color: #008c3c;
}
#sec18 input.form__control,
#sec18 select.form__control,
#sec18 .mw_wp_form .form__group :where(input:not([type=hidden]):not([type=submit]):not([type=button]),
select) {
  height: 4.6rem;
}
@media screen and (min-width: 781px) {
  #sec18 input.form__control,
  #sec18 select.form__control,
  #sec18 .mw_wp_form .form__group :where(input:not([type=hidden]):not([type=submit]):not([type=button]),
  select) {
    height: 52px;
  }
}
#sec18 .form__control--textarea,
#sec18 .mw_wp_form .form__group textarea {
  height: 12rem;
  resize: vertical;
}
@media screen and (min-width: 781px) {
  #sec18 .form__control--textarea,
  #sec18 .mw_wp_form .form__group textarea {
    height: 200px;
  }
}
#sec18 .form__selectwrap {
  position: relative;
}
#sec18 .form__selectwrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.6rem;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.9rem 0.7rem 0;
  border-color: #2b2b2b transparent transparent;
  transform: translateY(-50%);
  pointer-events: none;
}
@media screen and (min-width: 781px) {
  #sec18 .form__selectwrap::after {
    right: 20px;
    border-width: 10px 8px 0;
  }
}
#sec18 .form__selectwrap select.form__control, .mw_wp_form #sec18 .form__selectwrap select {
  padding-right: 4rem;
  cursor: pointer;
}
@media screen and (min-width: 781px) {
  #sec18 .form__selectwrap select.form__control, .mw_wp_form #sec18 .form__selectwrap select {
    padding-right: 48px;
  }
}
#sec18 .form__info-lead {
  font-size: 5.13vw;
}
@media screen and (min-width: 781px) {
  #sec18 .form__info-lead {
    font-size: calc(var(--bg-w) * 24 / 2000);
  }
}
#sec18 .form__info-lead {
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width: 781px) {
  #sec18 .form__info-lead {
    font-size: 24px;
    text-align: left;
  }
}
#sec18 .form__line {
  color: inherit;
  text-decoration: none;
}
#sec18 .form__place + .form__place {
  margin-top: 2.6rem;
}
@media screen and (min-width: 781px) {
  #sec18 .form__place + .form__place {
    margin-top: 32px;
  }
}
#sec18 .form__place-name,
#sec18 .form__place-time {
  font-size: 3.8vw;
  line-height: 1.7;
  text-align: justify;
}
@media screen and (min-width: 781px) {
  #sec18 .form__place-name,
  #sec18 .form__place-time {
    font-size: calc(var(--bg-w) * 18 / 2000);
  }
}
#sec18 .form__place-name,
#sec18 .form__place-time {
  line-height: 1.5;
  text-align: left;
}
#sec18 .form__tel {
  font-size: 5.13vw;
}
@media screen and (min-width: 781px) {
  #sec18 .form__tel {
    font-size: calc(var(--bg-w) * 24 / 2000);
  }
}
#sec18 .form__tel {
  color: inherit;
  text-decoration: none;
}
#sec18 .form__map {
  margin-top: 1.2rem;
  aspect-ratio: 2/1;
  background-color: #fff;
  border-radius: 6px;
  overflow: hidden;
}
@media screen and (min-width: 781px) {
  #sec18 .form__map {
    margin-top: 14px;
    aspect-ratio: 5/3;
  }
}
#sec18 .form__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
#sec18 .form__btn {
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 3rem 2rem;
  font-family: inherit;
  font-size: 4vw;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
  color: white;
  background-color: #dc5848;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 781px) {
  #sec18 .form__btn {
    grid-column: 1/-1;
    grid-row: 2;
    max-width: 390px;
    padding: 12px 24px;
    font-size: 20px;
  }
}
#sec18 .form__btn:hover {
  opacity: 0.8;
}
#sec18 .form__submit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}
@media screen and (min-width: 781px) {
  #sec18 .form__submit {
    grid-column: 1/-1;
    grid-row: 2;
    gap: 16px;
  }
}
#sec18 .form__submit input[type=submit]:not([name=submitBack]),
#sec18 .form__submit button[type=submit] {
  display: block;
  width: 100%;
  max-width: 390px;
  padding: 3rem 2rem;
  font-family: inherit;
  font-size: 4vw;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
  color: white;
  background-color: #dc5848;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 781px) {
  #sec18 .form__submit input[type=submit]:not([name=submitBack]),
  #sec18 .form__submit button[type=submit] {
    padding: 12px 24px;
    font-size: 20px;
  }
}
#sec18 .form__submit input[type=submit]:not([name=submitBack]):hover,
#sec18 .form__submit button[type=submit]:hover {
  opacity: 0.8;
}
#sec18 .form__submit input[name=submitBack] {
  display: block;
  width: 100%;
  max-width: 390px;
  padding: 3rem 2rem;
  font-family: inherit;
  font-size: 4vw;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
  color: #dc5848;
  background: transparent;
  border: 2px solid #dc5848;
  border-radius: 999px;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 781px) {
  #sec18 .form__submit input[name=submitBack] {
    padding: 12px 24px;
    font-size: 20px;
  }
}
#sec18 .form__submit input[name=submitBack]:hover {
  opacity: 0.7;
}
#sec18 .form__agree {
  font-size: 3.8vw;
  line-height: 1.7;
  text-align: justify;
}
@media screen and (min-width: 781px) {
  #sec18 .form__agree {
    font-size: calc(var(--bg-w) * 18 / 2000);
  }
}
#sec18 .form__agree {
  line-height: 1.5;
  text-align: center;
}
#sec18 .form__agree a {
  color: #008c3c;
}
#sec18 .mw_wp_form_confirm,
#sec18 .mw_wp_form_complete {
  padding-top: 4rem;
}
@media screen and (min-width: 781px) {
  #sec18 .mw_wp_form_confirm,
  #sec18 .mw_wp_form_complete {
    padding-top: 64px;
  }
}
@media screen and (min-width: 781px) {
  #sec18 .mw_wp_form_confirm .form__cols {
    grid-template-columns: 1fr;
    max-width: 640px;
    margin-inline: auto;
  }
}
#sec18 .mw_wp_form_confirm .form__info {
  display: none;
}
#sec18 .container:has(.mw_wp_form_confirm) .sec18_ttl,
#sec18 .container:has(.mw_wp_form_confirm) .form__lead,
#sec18 .container:has(.mw_wp_form_complete) .sec18_ttl,
#sec18 .container:has(.mw_wp_form_complete) .form__lead {
  display: none;
}
#sec18 .form__thanks {
  max-width: 640px;
  margin-inline: auto;
  padding: 2rem 0 3rem;
  text-align: center;
}
@media screen and (min-width: 781px) {
  #sec18 .form__thanks {
    padding: 20px 0 40px;
  }
}
#sec18 .form__thanks-ttl {
  font-size: 5vw;
  font-weight: bold;
  color: #008c3c;
}
@media screen and (min-width: 781px) {
  #sec18 .form__thanks-ttl {
    font-size: 28px;
  }
}
#sec18 .form__thanks-body {
  margin-top: 2rem;
  font-size: 5.13vw;
}
@media screen and (min-width: 781px) {
  #sec18 .form__thanks-body {
    font-size: calc(var(--bg-w) * 24 / 2000);
  }
}
#sec18 .form__thanks-body {
  line-height: 1.8;
}
@media screen and (min-width: 781px) {
  #sec18 .form__thanks-body {
    margin-top: 20px;
  }
}
#sec18 .form__thanks-back {
  display: inline-block;
  margin-top: 4rem;
  padding: 1.6rem 4rem;
  font-weight: bold;
  color: white;
  background-color: #008c3c;
  border-radius: 999px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 781px) {
  #sec18 .form__thanks-back {
    margin-top: 32px;
    padding: 14px 48px;
  }
}
#sec18 .form__thanks-back:hover {
  opacity: 0.8;
}

.footer .footer__main {
  background-color: #008c3c;
  padding: 4rem 5% 4.5rem;
}
@media screen and (min-width: 781px) {
  .footer .footer__main {
    padding: 48px 5%;
  }
}
.footer .footer__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (min-width: 781px) {
  .footer .footer__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }
}
.footer .footer__brand {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 781px) {
  .footer .footer__brand {
    gap: 40px;
  }
}
.footer .footer__brand:hover {
  opacity: 0.8;
}
.footer .footer__logo {
  flex-shrink: 0;
  margin: 0;
}
.footer .footer__logo img {
  display: block;
  width: 12rem;
  height: auto;
}
@media screen and (min-width: 781px) {
  .footer .footer__logo img {
    width: 120px;
  }
}
.footer .footer__tagline {
  margin: 0;
  color: white;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 781px) {
  .footer .footer__tagline {
    font-size: 18px;
  }
}
.footer .footer__nav {
  border-left: 1px solid white;
  padding: 0.8rem 0 0.8rem 2rem;
}
@media screen and (min-width: 781px) {
  .footer .footer__nav {
    padding: 10px 0 10px 30px;
  }
}
.footer .footer__list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 781px) {
  .footer .footer__list {
    gap: 16px;
  }
}
.footer .footer__link {
  display: inline-block;
  color: white;
  font-size: 1.6rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 781px) {
  .footer .footer__link {
    font-size: 18px;
  }
}
.footer .footer__link:hover {
  opacity: 0.7;
}
.footer .footer__bottom {
  background-color: black;
  padding: 2rem 5%;
}
@media screen and (min-width: 781px) {
  .footer .footer__bottom {
    padding: 18px 5%;
  }
}
.footer .footer__copy {
  margin: 0;
  color: white;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-align: center;
}
@media screen and (min-width: 781px) {
  .footer .footer__copy {
    font-size: 16px;
  }
}

.cta-fixed {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 900;
  display: flex;
  width: 100%;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
@media screen and (min-width: 781px) {
  .cta-fixed {
    display: none;
  }
}
.cta-fixed.is-visible {
  transform: translateY(0);
}
.cta-fixed .cta-fixed__btn {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 1.1rem 0.5rem;
  color: white;
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.2;
  text-decoration: none;
}
.cta-fixed .cta-fixed__btn--tel {
  color: #008c3c;
  background-color: white;
}
.cta-fixed .cta-fixed__btn--line {
  background-color: #06c755;
}
.cta-fixed .cta-fixed__btn--mail {
  background-color: #dc5848;
}
.cta-fixed .cta-fixed__btn + .cta-fixed__btn {
  box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.3);
}
.cta-fixed .cta-fixed__btn--tel + .cta-fixed__btn {
  box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.08);
}
.cta-fixed .cta-fixed__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
}
.cta-fixed .cta-fixed__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}
.cta-fixed .cta-fixed__icon svg:not([fill=none]) {
  fill: currentColor;
}
.cta-fixed .cta-fixed__icon svg[fill=none] {
  stroke: currentColor;
}

/*=====================
  下層ページ共通
  （privacy.html / tokushoho.html で使用）
======================*/
.lower {
  padding: 5rem 0 8rem;
  background-color: #fff;
}
@media screen and (min-width: 781px) {
  .lower {
    padding: 60px 0 120px;
  }
}
.lower .lower__breadcrumb {
  margin-bottom: 3rem;
}
@media screen and (min-width: 781px) {
  .lower .lower__breadcrumb {
    margin-bottom: 40px;
  }
}
.lower .lower__breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 1.3rem;
  color: #666;
}
@media screen and (min-width: 781px) {
  .lower .lower__breadcrumb ol {
    gap: 10px;
    font-size: 14px;
  }
}
.lower .lower__breadcrumb li + li::before {
  content: "＞";
  margin-right: 0.8rem;
  color: #aaa;
}
@media screen and (min-width: 781px) {
  .lower .lower__breadcrumb li + li::before {
    margin-right: 10px;
  }
}
.lower .lower__breadcrumb a {
  color: #008c3c;
  text-decoration: none;
}
.lower .lower__breadcrumb a:hover {
  text-decoration: underline;
}
.lower .lower__ttl {
  margin: 0 0 2.4rem;
  padding-bottom: 1.6rem;
  border-bottom: 3px solid #008c3c;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.4;
  color: #1a1a1a;
}
@media screen and (min-width: 781px) {
  .lower .lower__ttl {
    margin-bottom: 32px;
    padding-bottom: 20px;
    font-size: 34px;
  }
}
.lower .lower__meta {
  margin: 0 0 4rem;
  font-size: 1.4rem;
  line-height: 1.9;
  color: #555;
}
@media screen and (min-width: 781px) {
  .lower .lower__meta {
    margin-bottom: 56px;
    font-size: 15px;
  }
}
.lower .lower__sec + .lower__sec {
  margin-top: 3.6rem;
}
@media screen and (min-width: 781px) {
  .lower .lower__sec + .lower__sec {
    margin-top: 48px;
  }
}
.lower .lower__h2 {
  position: relative;
  margin: 0 0 1.4rem;
  padding-left: 1.6rem;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.5;
  color: #1a1a1a;
}
@media screen and (min-width: 781px) {
  .lower .lower__h2 {
    margin-bottom: 18px;
    padding-left: 20px;
    font-size: 22px;
  }
}
.lower .lower__h2::before {
  content: "";
  position: absolute;
  top: 0.25em;
  left: 0;
  width: 5px;
  height: 1.1em;
  background-color: #008c3c;
  border-radius: 2px;
}
.lower .lower__txt {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.9;
  color: #333;
  text-align: justify;
}
@media screen and (min-width: 781px) {
  .lower .lower__txt {
    font-size: 16px;
    line-height: 2;
  }
}
.lower .lower__txt + .lower__txt {
  margin-top: 1.6rem;
}
@media screen and (min-width: 781px) {
  .lower .lower__txt + .lower__txt {
    margin-top: 20px;
  }
}
.lower .lower__list {
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 1.5rem;
  line-height: 1.9;
  color: #333;
}
@media screen and (min-width: 781px) {
  .lower .lower__list {
    margin-top: 20px;
    font-size: 16px;
    line-height: 2;
  }
}
.lower .lower__sign {
  margin: 4rem 0 1.6rem;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.9;
  color: #1a1a1a;
}
@media screen and (min-width: 781px) {
  .lower .lower__sign {
    margin: 56px 0 20px;
    font-size: 16px;
  }
}
.lower .lower__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.5rem;
  line-height: 1.8;
  color: #333;
}
@media screen and (min-width: 781px) {
  .lower .lower__table {
    font-size: 16px;
  }
}
.lower .lower__table th,
.lower .lower__table td {
  display: block;
  width: 100%;
  text-align: left;
}
@media screen and (min-width: 781px) {
  .lower .lower__table th,
  .lower .lower__table td {
    display: table-cell;
    width: auto;
    padding: 20px 24px;
    border-bottom: 1px solid #e0e0e0;
    vertical-align: top;
  }
}
.lower .lower__table th {
  padding: 1.2rem 1.6rem;
  background-color: #f1f9e5;
  font-weight: bold;
  color: #1a1a1a;
}
@media screen and (min-width: 781px) {
  .lower .lower__table th {
    width: 200px;
    white-space: nowrap;
  }
}
.lower .lower__table td {
  padding: 1.6rem 1.6rem 2.4rem;
}
@media screen and (min-width: 781px) {
  .lower .lower__table td {
    padding: 20px 24px;
  }
}
@media screen and (min-width: 781px) {
  .lower .lower__table tr:first-child th {
    border-top: 1px solid #e0e0e0;
  }
}
@media screen and (min-width: 781px) {
  .lower .lower__table tr:first-child td {
    border-top: 1px solid #e0e0e0;
  }
}
.lower .lower__tel {
  color: #008c3c;
  text-decoration: none;
}
.lower .lower__tel:hover {
  text-decoration: underline;
}
.lower .lower__back {
  margin-top: 6rem;
  text-align: center;
}
@media screen and (min-width: 781px) {
  .lower .lower__back {
    margin-top: 80px;
  }
}
.lower .lower__back-btn {
  display: inline-block;
  min-width: 26rem;
  padding: 1.5rem 3rem;
  background-color: #008c3c;
  color: white;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  border-radius: 999px;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 781px) {
  .lower .lower__back-btn {
    min-width: 320px;
    padding: 16px 40px;
    font-size: 18px;
  }
}
.lower .lower__back-btn:hover {
  opacity: 0.8;
}