@charset "UTF-8";
@import url(https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic&display=swap);
*, *::before, *::after {
  box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, button {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: top;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 60%;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

picture {
  display: inline-block;
}

body {
  line-height: 1.5;
  font-size: 1.6rem;
  font-weight: 400;
  width: 100%;
  background: #fff;
}
body.noscroll {
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
}

.wrapper {
  overflow-x: hidden;
}

h2, h3, h4 {
  font-weight: lighter;
}

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

ol, ul, menu, nav {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input[type=text],
input[type=email],
input[type=password],
input[type=submit],
input[type=reset],
button,
select,
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

button, input[type=reset], input[type=submit] {
  cursor: pointer;
}

button {
  display: block;
  cursor: default;
}

a {
  text-decoration: none;
}

/* === 一度だけ設定する値（必要に応じて変更）=== */
/* rem(数値) → vw を算出（あなたの式に準拠） */
/* 値を rem とみなして vw へ変換（auto, 0, %, 既に単位付きにも配慮） */
/* 値を rem として固定（>=1441px 用） */
/* リスト（1〜4値のショートハンド等）をまとめて変換 */
/* ★ 汎用：任意プロパティに “rem入力 → 3レンジvw＋largeでrem固定” を適用 */
/* 使いやすいエイリアス */
/* =====================
   追記：calc対応ユーティリティ
   - width: calc((100% - 4rem) / 2) 等を各レンジで自動展開
   - あなたのルール（769–1440=/1440、〜768=/768、〜580=/580、>=1441はrem固定）準拠
   ===================== */
/* calc((<percent> - <rem>)/<divisor>) を各レンジで出力 */
/* calc((<percent> + <rem>)/<divisor>) 版（必要時に） */
/* =====================
   追記：列レイアウト用（カード幅など）
   - n列、列間ギャップ=rem指定 → 幅を自動計算
   - 例: 2列・gap=2rem → width: calc((100% - 2rem)/2) を各レンジで出力
   ===================== */
/* =====================
   追記：軸ショートハンド
   - margin/padding の X/Y 方向をまとめて指定
   ===================== */
/* =====================
   追記：!important 版（必要な場面だけ）
   ===================== */
/* vw-font は vw-prop の薄いラッパー */
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #3e3f37;
  background-color: #fcf7e1;
}

.inner {
  max-width: 1440px;
  width: 100%;
  margin-inline: auto;
  /* 769–1440px */
  padding-inline: 5.5555555556vw;
  /* >=1441px（rem固定） */
  /* <=768px（768基準）*/
  /* <=580px（580基準）*/
}
@media (min-width: 1441px) {
  .inner {
    padding-inline: 8rem;
  }
  .home .sec01 .inner {
    padding-inline: 0;
  }
}
@media (max-width: 768px) {
  .inner {
    padding-inline: 10.4166666667vw;
  }
}
@media (max-width: 580px) {
  .inner {
    padding-inline: 13.7931034483vw;
  }
}
@media screen and (max-width: 768px) {
  .inner {
    padding-inline: 3%;
  }
}
@media screen and (max-width: 580px) {
  .inner {
    padding-inline: 5%;
  }
}

.inner810 {
  max-width: 81rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 850px) {
  .inner810 {
    width: 90%;
  }
}

.inner840 {
  max-width: 84rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 900px) {
  .inner840 {
    width: 90%;
  }
}

.inner980 {
  max-width: 98rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 1000px) {
  .inner980 {
    width: 90%;
  }
}

.inner1080 {
  max-width: 108rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 1180px) {
  .inner1080 {
    width: 90%;
  }
}

.inner1097 {
  max-width: 109.8rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 1180px) {
  .inner1097 {
    width: 90%;
  }
}

.inner1100 {
  max-width: 110rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 1140px) {
  .inner1100 {
    width: 90%;
  }
}

.inner_01 {
  width: 100%;
  padding-inline: 15.6% 0%;
}
@media screen and (max-width: 1080px) {
  .inner_01 {
    padding-inline: 3% 0;
    padding-top: 16rem;
  }
}
@media screen and (max-width: 580px) {
  .inner_01 {
    padding-top: 3rem;
  }
}

.inner_02 {
  width: 100%;
  padding-inline: 15.6% 3.3%;
}
@media screen and (max-width: 1080px) {
  .inner_02 {
    padding-inline: 3%;
    padding-top: 16rem;
  }
}
@media screen and (max-width: 580px) {
  .inner_02 {
    padding-top: 10rem;
  }
}

.inner_03 {
  width: 100%;
  padding-inline: 5rem;
}
@media screen and (max-width: 1080px) {
  .inner_03 {
    padding-inline: 3%;
  }
}
@media screen and (max-width: 768px) {
  .inner_03 {
    padding-inline: 2rem;
  }
}

.maru {
  font-family: "Zen Maru Gothic", sans-serif;
}

.serif {
  font-family: "Noto Serif JP", serif;
}

.no-link {
  pointer-events: none !important;
}

a {
  color: #000;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
a:hover {
  opacity: 0.8;
}

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

img {
  width: 100%;
  display: block;
}

.h2 {
  display: flex;
  align-items: center;
  font-weight: 500;
  /* 769–1440px */
  font-size: 1.3888888889vw;
  /* >=1441px（rem固定） */
  /* <=768px（768基準）*/
  /* <=580px（580基準）*/
  /* 769–1440px */
  margin-bottom: 2.0833333333vw;
  /* >=1441px（rem固定） */
  /* <=768px（768基準）*/
  /* <=580px（580基準）*/
}
@media (min-width: 1441px) {
  .h2 {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .h2 {
    font-size: 2.6041666667vw;
  }
}
@media (max-width: 580px) {
  .h2 {
    font-size: 3.4482758621vw;
  }
}
@media (min-width: 1441px) {
  .h2 {
    margin-bottom: 3rem;
  }
}
@media (max-width: 768px) {
  .h2 {
    margin-bottom: 3.90625vw;
  }
}
@media (max-width: 580px) {
  .h2 {
    margin-bottom: 5.1724137931vw;
  }
}
.h2::before {
  content: "⚫︎";
  color: #08A222;
  /* 769–1440px */
  margin-right: 0.6944444444vw;
  /* >=1441px（rem固定） */
  /* <=768px（768基準）*/
  /* <=580px（580基準）*/
}
@media (min-width: 1441px) {
  .h2::before {
    margin-right: 1rem;
  }
}
@media (max-width: 768px) {
  .h2::before {
    margin-right: 1.3020833333vw;
  }
}
@media (max-width: 580px) {
  .h2::before {
    margin-right: 1.724137931vw;
  }
}
.h2::after {
  content: "";
  display: inline-block;
  background-color: #3e3f37;
  aspect-ratio: 130/2;
  /* 769–1440px */
  width: 9.0277777778vw;
  /* >=1441px（rem固定） */
  /* <=768px（768基準）*/
  /* <=580px（580基準）*/
  /* 769–1440px */
  margin-left: 1.3888888889vw;
  /* >=1441px（rem固定） */
  /* <=768px（768基準）*/
  /* <=580px（580基準）*/
}
@media (min-width: 1441px) {
  .h2::after {
    width: 13rem;
  }
}
@media (max-width: 768px) {
  .h2::after {
    width: 16.9270833333vw;
  }
}
@media (max-width: 580px) {
  .h2::after {
    width: 22.4137931034vw;
  }
}
@media (min-width: 1441px) {
  .h2::after {
    margin-left: 2rem;
  }
}
@media (max-width: 768px) {
  .h2::after {
    margin-left: 2.6041666667vw;
  }
}
@media (max-width: 580px) {
  .h2::after {
    margin-left: 3.4482758621vw;
  }
}

.pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .sp-none {
    display: none;
  }
}

.bold {
  font-weight: bold;
}

.ma-t-no {
  margin-top: 0 !important;
}

.red {
  color: #e11010;
}

.gre {
  color: #00956e;
}

/* フェイドアップ */
/* 下から */
.fadeUpTrigger {
  opacity: 0;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 左から */
.fadeLeftTrigger {
  opacity: 0;
}

.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* 右から */
.fadeRightTrigger {
  opacity: 0;
}

.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.toggle_switch {
  position: relative;
  cursor: pointer;
  padding: 5px 0;
  margin-top: 6rem;
  margin-bottom: 5px;
  background-color: #08A222;
  border-radius: 2rem;
  color: #fff;
  text-align: center;
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  .toggle_switch {
    font-size: 1.8rem;
    margin-top: 2rem;
  }
}
.toggle_switch::after {
  content: "▼";
  font-size: 1.8rem;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 3rem;
  transform: translateY(-50%);
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .toggle_switch::after {
    right: 1rem;
    font-size: 1.2rem;
  }
}
.toggle_switch h3 {
  font-weight: 500;
}
.toggle_switch:hover::after {
  transform: translateY(-50%) scale(1.1);
}
.toggle_switch.open::after {
  transform: translateY(-50%) rotate(180deg);
}

.toggle_contents {
  display: none;
}
.toggle_contents .table03 tr:nth-child(1) td:last-child {
  border-radius: 0 1rem 0 0;
}
.toggle_contents .table03 tr:last-child td:nth-child(1) {
  border-radius: 0 0 0 1rem;
}

.btn00 {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4rem;
  aspect-ratio: 10/3;
  box-shadow: inset -5px -5px 4px rgba(0, 0, 0, 0.3), inset 5px -5px 4px rgba(0, 0, 0, 0.3), inset -5px 5px 4px rgba(255, 255, 255, 0.3), inset 5px 5px 4px rgba(255, 255, 255, 0.3);
  transition: all 0.3s;
  /* 769–1440px */
  gap: 0.3472222222vw;
  /* >=1441px（rem固定） */
  /* <=768px（768基準）*/
  /* <=580px（580基準）*/
  /* 769–1440px */
  width: 13.8888888889vw;
  /* >=1441px（rem固定） */
  /* <=768px（768基準）*/
  /* <=580px（580基準）*/
}
.btn01 {
  width: 15.8888888889vw;
  aspect-ratio: 4 / 1;
}
@media (min-width: 1441px) {
  .btn00 {
    gap: 0.5rem;
  }
}
@media (max-width: 768px) {
  .btn00 {
    gap: 0.6510416667vw;
  }
}
@media (max-width: 580px) {
  .btn00 {
    gap: 0.8620689655vw;
  }
}
@media (min-width: 1441px) {
  .btn00 {
    width: 20rem;
  }
}
@media (max-width: 768px) {
  .btn00 {
    width: 26.0416666667vw;
  }
}
@media (max-width: 580px) {
  .btn00 {
    width: 34.4827586207vw;
  }
}
.btn00 p {
  color: #fff;
  font-weight: 500;
  /* 769–1440px */
  font-size: 1.5vw;
  /* >=1441px（rem固定） */
  /* <=768px（768基準）*/
  /* <=580px（580基準）*/
}
@media (min-width: 1441px) {
  .btn00 p {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .btn00 p {
    font-size: 2.4vw;
  }
}
@media (max-width: 580px) {
  .btn00 p {
    font-size: 3.3vw;
  }
}
.btn00 img {
  width: 1.5rem;
  /* 769–1440px */
  width: 1.0416666667vw;
  /* >=1441px（rem固定） */
  /* <=768px（768基準）*/
  /* <=580px（580基準）*/
}
@media (min-width: 1441px) {
  .btn00 img {
    width: 1.5rem;
  }
}
@media (max-width: 768px) {
  .btn00 img {
    width: 1.953125vw;
  }
}
@media (max-width: 580px) {
  .btn00 img {
    width: 2.5862068966vw;
  }
}
.btn00.btn01 {
  background-color: #00956e;
}
.btn00.btn02 {
  background-color: #06c755;
  display: none;
}

.btn00.btn03 {
  box-shadow: 5px 5px 5px rgba(51, 51, 51, 0.5);
  background-color: #6560c3;
  aspect-ratio: 10/2;
  /* 769–1440px */
  width: 16.6666666667vw;
  /* >=1441px（rem固定） */
  /* <=768px（768基準）*/
  /* <=580px（580基準）*/
  /* 769–1440px */
  margin: 3.4722222222vw auto;
  /* >=1441px（rem固定） */
  /* <=768px（768基準）*/
  /* <=580px（580基準）*/
}
@media (min-width: 1441px) {
  .btn00.btn03 {
    width: 24rem;
  }
}
@media (max-width: 768px) {
  .btn00.btn03 {
    width: 31.25vw;
  }
}
@media (max-width: 580px) {
  .btn00.btn03 {
    width: 41.3793103448vw;
  }
}
@media (min-width: 1441px) {
  .btn00.btn03 {
    margin: 5rem auto;
  }
}
@media (max-width: 768px) {
  .btn00.btn03 {
    margin: 6.5104166667vw auto;
  }
}
@media (max-width: 580px) {
  .btn00.btn03 {
    margin: 8.6206896552vw auto;
  }
}
.btn00:hover {
  box-shadow: none;
}

.btn04 {
  display: flex;
  gap: 1rem;
  margin: 3rem 5% 3rem auto;
  /* 769–1440px */
  gap: 0.6944444444vw;
  /* >=1441px（rem固定） */
  /* <=768px（768基準）*/
  /* <=580px（580基準）*/
}
@media (min-width: 1441px) {
  .btn04 {
    gap: 1rem;
  }
}
@media (max-width: 768px) {
  .btn04 {
    gap: 1.3020833333vw;
  }
}
@media (max-width: 580px) {
  .btn04 {
    gap: 1.724137931vw;
  }
}
.btn04 p {
  color: #fff;
}
.btn04 img {
  -o-object-fit: contain;
     object-fit: contain;
  /* 769–1440px */
  width: 2.0833333333vw;
  /* >=1441px（rem固定） */
  /* <=768px（768基準）*/
  /* <=580px（580基準）*/
}
@media (min-width: 1441px) {
  .btn04 img {
    width: 3rem;
  }
}
@media (max-width: 768px) {
  .btn04 img {
    width: 3.90625vw;
  }
}
@media (max-width: 580px) {
  .btn04 img {
    width: 5.1724137931vw;
  }
}

/* === 一度だけ設定する値（必要に応じて変更）=== */
/* rem(数値) → vw を算出（あなたの式に準拠） */
/* 値を rem とみなして vw へ変換（auto, 0, %, 既に単位付きにも配慮） */
/* 値を rem として固定（>=1441px 用） */
/* リスト（1〜4値のショートハンド等）をまとめて変換 */
/* ★ 汎用：任意プロパティに “rem入力 → 3レンジvw＋largeでrem固定” を適用 */
/* 使いやすいエイリアス */
/* =====================
   追記：calc対応ユーティリティ
   - width: calc((100% - 4rem) / 2) 等を各レンジで自動展開
   - あなたのルール（769–1440=/1440、〜768=/768、〜580=/580、>=1441はrem固定）準拠
   ===================== */
/* calc((<percent> - <rem>)/<divisor>) を各レンジで出力 */
/* calc((<percent> + <rem>)/<divisor>) 版（必要時に） */
/* =====================
   追記：列レイアウト用（カード幅など）
   - n列、列間ギャップ=rem指定 → 幅を自動計算
   - 例: 2列・gap=2rem → width: calc((100% - 2rem)/2) を各レンジで出力
   ===================== */
/* =====================
   追記：軸ショートハンド
   - margin/padding の X/Y 方向をまとめて指定
   ===================== */
/* =====================
   追記：!important 版（必要な場面だけ）
   ===================== */
/* vw-font は vw-prop の薄いラッパー */
.pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

/* br-sp */
.br-sp_1420 {
  display: none;
}
@media screen and (max-width: 1420px) {
  .br-sp_1420 {
    display: block;
  }
}

.br-sp_1380 {
  display: none;
}
@media screen and (max-width: 1380px) {
  .br-sp_1380 {
    display: block;
  }
}

.br-sp_1280 {
  display: none;
}
@media screen and (max-width: 1280px) {
  .br-sp_1280 {
    display: block;
  }
}

.br-sp_1180 {
  display: none;
}
@media screen and (max-width: 1180px) {
  .br-sp_1180 {
    display: block;
  }
}

.br-sp_1080 {
  display: none;
}
@media screen and (max-width: 1080px) {
  .br-sp_1080 {
    display: block;
  }
}

.br-sp_820 {
  display: none;
}
@media screen and (max-width: 800px) {
  .br-sp_820 {
    display: block;
  }
}

.br-sp_580 {
  display: none;
}
@media screen and (max-width: 580px) {
  .br-sp_580 {
    display: block;
  }
}

.br-sp_480 {
  display: none;
}
@media screen and (max-width: 480px) {
  .br-sp_480 {
    display: block;
  }
}

/* br-sp_oo-oo */
/* br-pc */
/* br-pc_oo-oo */
.br-pc_480 {
  display: block;
}
@media screen and (max-width: 480px) {
  .br-pc_480 {
    display: none;
  }
}

/* === 一度だけ設定する値（必要に応じて変更）=== */
/* rem(数値) → vw を算出（あなたの式に準拠） */
/* 値を rem とみなして vw へ変換（auto, 0, %, 既に単位付きにも配慮） */
/* 値を rem として固定（>=1441px 用） */
/* リスト（1〜4値のショートハンド等）をまとめて変換 */
/* ★ 汎用：任意プロパティに “rem入力 → 3レンジvw＋largeでrem固定” を適用 */
/* 使いやすいエイリアス */
/* =====================
   追記：calc対応ユーティリティ
   - width: calc((100% - 4rem) / 2) 等を各レンジで自動展開
   - あなたのルール（769–1440=/1440、〜768=/768、〜580=/580、>=1441はrem固定）準拠
   ===================== */
/* calc((<percent> - <rem>)/<divisor>) を各レンジで出力 */
/* calc((<percent> + <rem>)/<divisor>) 版（必要時に） */
/* =====================
   追記：列レイアウト用（カード幅など）
   - n列、列間ギャップ=rem指定 → 幅を自動計算
   - 例: 2列・gap=2rem → width: calc((100% - 2rem)/2) を各レンジで出力
   ===================== */
/* =====================
   追記：軸ショートハンド
   - margin/padding の X/Y 方向をまとめて指定
   ===================== */
/* =====================
   追記：!important 版（必要な場面だけ）
   ===================== */
/* vw-font は vw-prop の薄いラッパー */
/*ヘッダー*/
.header {
  padding: 0.69vw 0;
  position: fixed;
  z-index: 9999;
  top: 0;
  width: 100%;
  background-color: #fcf7e1;
}
@media screen and (min-width: 1441px) {
  .header {
    padding: 1rem 0;
  }
}
@media screen and (max-width: 768px) {
  .header {
    padding: 1.3vw 0;
  }
}
@media screen and (max-width: 580px) {
  .header {
    padding: 1.72vw 0;
  }
}
.header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .left a {
  width: 22.22vw;
}
@media screen and (min-width: 1441px) {
  .header .left a {
    width: 32rem;
  }
}
@media screen and (max-width: 768px) {
  .header .left a {
    width: 41.67vw;
  }
}
@media screen and (max-width: 580px) {
  .header .left a {
    width: 55.17vw;
  }
}
.header .right {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 0.69vw;
}
@media screen and (min-width: 1441px) {
  .header .right {
    gap: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .header .right {
    gap: 1.3vw;
  }
}
@media screen and (max-width: 580px) {
  .header .right {
    gap: 1.72vw;
  }
}
.header .right .btn02 {
  margin-right: 2.08vw;
}
@media screen and (min-width: 1441px) {
  .header .right .btn02 {
    margin-right: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .header .right .btn02 {
    margin-right: 3.91vw;
  }
}
@media screen and (max-width: 580px) {
  .header .right .btn02 {
    margin-right: 5.17vw;
  }
}
@media screen and (max-width: 768px) {
  .header .right .btn00 {
    display: none;
  }
}

/*ハンバーガースイッチ*/
.sp-menu .list .item {
  position: relative;
}
.sp-menu .list .item .menu-trigger {
  cursor: pointer;
}
.sp-menu .list .item .menu-trigger img {
  transition: all 0.3s;
  width: 4.17vw;
}
@media screen and (min-width: 1441px) {
  .sp-menu .list .item .menu-trigger img {
    width: 6rem;
  }
}
@media screen and (max-width: 768px) {
  .sp-menu .list .item .menu-trigger img {
    width: 7.81vw;
  }
}
@media screen and (max-width: 580px) {
  .sp-menu .list .item .menu-trigger img {
    width: 10.34vw;
  }
}
.sp-menu .list .item .menu-trigger.open img {
  transform: rotate(360deg);
}

/*SPメニュー*/
.sp-nav {
  display: none;
  width: 20rem;
  position: fixed;
  top: 6.5rem;
  right: 0rem;
  z-index: 10;
  padding: 2rem;
  background-color: #fcf7e1;
  border: 2px solid #00956e;
  border-radius: 0 0 2rem 2rem;
}
@media screen and (max-width: 580px) {
  .sp-nav {
    width: 100%;
    top: 4.5rem;
  }
}
.sp-nav nav ul li a {
  margin-left: auto;
  margin-bottom: 1.1em;
  font-weight: 500;
  text-align: end;
  font-size: 1.6rem;
  transition: all .3s;
}
.sp-nav nav ul li a:hover {
  color: #00956e;
}
@media screen and (max-width: 580px) {
  .sp-nav nav ul li a {
    margin-inline: auto;
  }
}
.sp-nav nav ul li.active a {
  color: #00956e;
  font-weight: 700;
  font-size: 1.8rem;
}

.cal {
  margin-top: 6.94vw;
  margin-bottom: 4.17vw;
}
@media screen and (min-width: 1441px) {
  .cal {
    margin-top: 10rem;
    margin-bottom: 6rem;
  }
}
@media screen and (max-width: 768px) {
  .cal {
    margin-top: 13.02vw;
    margin-bottom: 7.81vw;
  }
}
@media screen and (max-width: 580px) {
  .cal {
    margin-top: 17.24vw;
    margin-bottom: 10.34vw;
  }
}
.cal .inner {
  display: flex;
  gap: 2.08vw;
}
@media screen and (min-width: 1441px) {
  .cal .inner {
    gap: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .cal .inner {
    gap: 3.91vw;
    flex-direction: column;
  }
}
@media screen and (max-width: 580px) {
  .cal .inner {
    gap: 5.17vw;
  }
}
.cal h2 {
  font-weight: 700;
  font-size: 2.78vw;
  width: 22.22vw;
  min-width: 20vw;
}
@media screen and (min-width: 1441px) {
  .cal h2 {
    font-size: 4rem;
    width: 32rem;
  }
}
@media screen and (max-width: 768px) {
  .cal h2 {
    font-size: 5.21vw;
    width: 100%;
  }
}
@media screen and (max-width: 580px) {
  .cal h2 {
    font-size: 6.9vw;
  }
}
.cal .box {
  display: flex;
  border-radius: 2rem;
  overflow: hidden;
}
@media screen and (min-width: 1441px) {
  .cal .box {
    width: calc(100% - 32rem);
  }
}
@media screen and (max-width: 768px) {
  .cal .box {
    width: 100%;
    justify-content: center;
  }
}
.cal .box img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.cal .box a {
  width: 21.18vw;
}
@media screen and (min-width: 1441px) {
  .cal .box a {
    width: 30.5rem;
  }
}
@media screen and (max-width: 768px) {
  .cal .box a {
    width: 24.71vw;
  }
}
@media screen and (max-width: 580px) {
  .cal .box a {
    width: 28.59vw;
  }
}
.cal .box > img {
  -o-object-fit: cover;
     object-fit: cover;
  width: calc(100% - 21.18vw);
}
@media screen and (min-width: 1441px) {
  .cal .box > img {
    width: calc(100% - 30.5rem);
  }
}
@media screen and (max-width: 768px) {
  .cal .box > img {
    width: calc(100% - 39.71vw);
  }
}
@media screen and (max-width: 580px) {
  .cal .box > img {
    width: calc(100% - 27.59vw);
  }
}

.mv {
  position: relative;
  margin-top: 11.11vw;
}
@media screen and (min-width: 1441px) {
  .mv {
    margin-top: 16rem;
  }
}
@media screen and (max-width: 768px) {
  .mv {
    margin-top: 20.83vw;
  }
}
@media screen and (max-width: 580px) {
  .mv {
    margin-top: 13.59vw;
  }
}
.mv .txtbox {
  width: 45.14vw;
  position: absolute;
  top: 0rem;
  transform: translateY(-50%);
  color: #00956e;
  display: flex;
  align-items: center;
  left: 8.33vw;
  /*
  p {
      line-height: 1;
      font-weight: 700;
      &.txt01 {
          @media screen and (min-width: 1441px) {
              font-size: 25rem;
          }
      }
      &.txt02 {
          @media screen and (min-width: 1441px) {
              font-size: 10rem;
          }
      }
      span {
          color: #fff;
          @media screen and (min-width: 1441px) {
              font-size: 5rem;
          }
      }
  }*/
}
@media screen and (min-width: 1441px) {
  .mv .txtbox {
    left: 12rem;
    width: 65rem;
  }
}
@media screen and (max-width: 768px) {
  .mv .txtbox {
    left: 2rem;
    width: 30rem;
  }
}
@media screen and (max-width: 580px) {
  .mv .txtbox {
    width: 20rem;
  }
}
.mv .slider_item {
  position: relative;
}
.mv .slider_item .txt {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
}
.mv .slider_item.slick-current .txt {
  animation-name: slidetxt;
  animation-duration: 1.5s;
  animation-delay: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes slidetxt {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.sec01 .box {
  position: relative;
  z-index: 0;
  width: 95%;
  margin-inline: auto;
  margin-top: 4.17vw;
}
@media screen and (min-width: 1441px) {
  .sec01 .box {
    margin-top: 6rem;
  }
}
@media screen and (max-width: 768px) {
  .sec01 .box {
    margin-top: 7.81vw;
    width: 90%;
    margin-bottom: 4rem;
  }
}
@media screen and (max-width: 580px) {
  .sec01 .box {
    margin-top: 5.34vw;
  }
}
.sec01 .box p {
  font-weight: 500;
  line-height: 2.5;
  font-size: 1.39vw;
}
@media screen and (min-width: 1441px) {
  .sec01 .box p {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .sec01 .box p {
    font-size: 2.6vw;
    line-height: 2;
  }
}
@media screen and (max-width: 580px) {
  .sec01 .box p {
    font-size: 3.45vw;
  }
}
.sec01 .box .ttlbox {
  position: absolute;
  z-index: -1;
  top: 0;
  right: -3%;
  transform: translateY(-40%);
  color: #f5f0dc;
  font-weight: 700;
  font-size: 15rem;
}
@media screen and (max-width: 1441px) {
  .sec01 .box .ttlbox {
    font-size: 15rem;
  }
}
@media screen and (max-width: 768px) {
  .sec01 .box .ttlbox {
    font-size: 7rem;
  }
}
.sec01 .box02 {
  position: relative;
  z-index: 0;
  /* 769–1440px */
  margin: 4.8611111111vw 0vw 4.8611111111vw 0vw;
  /* >=1441px（rem固定） */
  /* <=768px（768基準）*/
  /* <=580px（580基準）*/
}
@media (min-width: 1441px) {
  .sec01 .box02 {
    margin: 7rem 0rem 7rem 0rem;
  }
}
@media (max-width: 768px) {
  .sec01 .box02 {
    margin: 9.1145833333vw 0vw 9.1145833333vw 0vw;
  }
}
@media (max-width: 580px) {
  .sec01 .box02 {
    margin: 12.0689655172vw 0vw 12.0689655172vw 0vw;
  }
}

.sec01 .box02 ul {
  display: flex;
  flex-wrap: wrap;
  /* 769–1440px */
  gap: 0vw 2.7777777778vw;
  /* >=1441px（rem固定） */
  /* <=768px（768基準）*/
  /* <=580px（580基準）*/
}
@media (min-width: 1441px) {
  .sec01 .box02 ul {
    gap: 0rem 4rem;
  }
}
@media (max-width: 768px) {
  .sec01 .box02 ul {
    gap: 0vw 5.2083333333vw;
  }
}
@media (max-width: 580px) {
  .sec01 .box02 ul {
    gap: 0vw 6.8965517241vw;
  }
}
@media screen and (max-width: 768px) {
  .sec01 .box02 ul {
    flex-direction: column;
  }
}
.sec01 .box02 ul li {
  display: flex;
  align-items: start;
  background-color: rgba(254, 251, 236, 0.8);
  border-radius: 2rem;
  padding: 1.5%;
  /* 769–1440px */
  gap: 1.3888888889vw;
  /* >=1441px（rem固定） */
  /* <=768px（768基準）*/
  /* <=580px（580基準）*/
  /* 769–1440px */
  width: calc((100% - 2.7777777778vw) / 2);
  /* >=1441px（rem固定） */
  /* 〜768px */
  /* 〜580px */
}
@media (min-width: 1441px) {
  .sec01 .box02 ul li {
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .sec01 .box02 ul li {
    gap: 2.6041666667vw;
  }
}
@media (max-width: 580px) {
  .sec01 .box02 ul li {
    gap: 3.4482758621vw;
  }
}
@media (min-width: 1441px) {
  .sec01 .box02 ul li {
    width: calc((100% - 4rem) / 2);
  }
}
@media (max-width: 768px) {
  .sec01 .box02 ul li {
    width: calc((100% - 5.2083333333vw) / 2);
  }
}
@media (max-width: 580px) {
  .sec01 .box02 ul li {
    width: calc((100% - 6.8965517241vw) / 2);
  }
}
@media screen and (max-width: 768px) {
  .sec01 .box02 ul li {
    width: 100%;
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 580px) {
  .sec01 .box02 ul li {
    flex-direction: column;
  }
}
.sec01 .box02 ul li:last-child {
  width: 80%;
  margin-inline: auto;
  margin-top: 8rem;
}
.sec01 .box02 ul li img {
  border-radius: 2rem;
}
.sec01 .box02 ul li .left {
  position: relative;
  width: 60%;
}
@media screen and (max-width: 580px) {
  .sec01 .box02 ul li .left {
    width: 100%;
  }
}
.sec01 .box02 ul li .left p {
  white-space: normal;
  overflow-wrap: anywhere;
}
.sec01 .box02 ul li .left img {
  /* 769–1440px */
  margin-bottom: 0.6944444444vw;
  /* >=1441px（rem固定） */
  /* <=768px（768基準）*/
  /* <=580px（580基準）*/
}
@media (min-width: 1441px) {
  .sec01 .box02 ul li .left img {
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .sec01 .box02 ul li .left img {
    margin-bottom: 1.3020833333vw;
  }
}
@media (max-width: 580px) {
  .sec01 .box02 ul li .left img {
    margin-bottom: 1.724137931vw;
  }
}
.sec01 .box02 ul li .right {
  width: 38%;
}
@media screen and (max-width: 580px) {
  .sec01 .box02 ul li .right {
    width: 80%;
    margin-inline: auto;
  }
}

.sec01 .box002 {
  margin-top: 4rem;
  display: flex;
  gap: 3%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sec01 .box002 {
    flex-direction: column;
  }
}
.sec01 .box002::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #eee8d2;
  width: 60%;
  aspect-ratio: 1;
  border-radius: 50%;
  z-index: -1;
}
/* --- clearfix --- */
.floatbox::after {
  content: "";
  display: block;
  clear: both;
}

/* レスポンシブ用の標準余白（CSSカスタムプロパティ） */
.floatbox {
  --gap: 1rem;
  width: calc((100% - 3%) / 2);
  border-radius: 2rem;
  padding: 1.5%;
  background-color: rgba(254, 251, 236, 0.8);
}
@media screen and (max-width: 768px) {
  .floatbox {
    width: 100%;
  }
}
@media screen and (max-width: 580px) {
  .floatbox {
    background-color: #fff;
    margin-bottom: 40px;
    padding: 5.5%;
    position: relative;
  }
  .floatbox::before {
      content: "";
      display: inline-block;
      width: 100%;
      height: 1px;
      background-color: #000;
      position: absolute;
      bottom: -20px;
      left: 0;
  }
}
/* 1枚目：横長 → 左に回り込み */
.floatbox .img1 {
  float: left;
  width: clamp(48%, 60vw, 62%); /* だいたい6割 */
  height: auto;
  margin: 0 var(--gap) var(--gap) 0;
  border-radius: 12px;
  /* テキスト回り込みを角丸に近づける（任意） */
  shape-outside: inset(0 round 12px);
}

/* 2枚目：縦長 → 右に回り込み（下にはみ出す） */
.floatbox .img2 {
  float: right;
  width: clamp(26%, 32vw, 34%); /* だいたい3割 */
  height: auto;
  margin: 0 0 var(--gap) var(--gap);
  border-radius: 12px;
  /* 画像輪郭に沿わせる。角丸ぶんを反映 */
  shape-outside: inset(0 round 12px);
}
@media screen and (max-width: 1352px) {
  .floatbox .img2 {
    width: clamp(26%, 32vw, 33%);
  }
}
@media screen and (max-width: 1005px) {
  .floatbox .img2 {
    width: clamp(26%, 32vw, 32%);
  }
}
@media screen and (max-width: 840px) {
  .floatbox .img2 {
    width: clamp(26%, 32vw, 31%);
  }
}

/* 本文：読みやすさ調整 */
.floatbox p {
  line-height: 1.9;
  margin: 0; /* 余白は画像側で確保 */
  font-size: 1.25vw;
}
@media screen and (max-width: 768px) {
  .floatbox p {
    font-size: 2.34375vw;
  }
}
@media screen and (max-width: 580px) {
  .floatbox p {
    font-size: 3.1034482759vw;
  }
}
/* スマホでは縦積み */
@media (max-width: 768px) {
  .floatbox .img1,
  .floatbox .img2 {
    float: none;
    width: 100%;
    margin: 0 auto 0.75rem;
    shape-outside: auto;
    max-width: 400px;
  }
}
@media screen and (max-width: 580px) {
  .floatbox .img2 {
    width: 70%;
  }
}
.img000 {
  width: 90%;
  max-width: 900px;
  margin: 4rem auto;
}

.sec01 .txt {
  width: fit-content;
  margin-inline: auto;
  /* 769–1440px */
  margin-bottom: 5.5555555556vw;
  /* >=1441px（rem固定） */
  /* <=768px（768基準）*/
  /* <=580px（580基準）*/
  /* 769–1440px */
  font-size: 1.25vw;
  /* >=1441px（rem固定） */
  /* <=768px（768基準）*/
  /* <=580px（580基準）*/
}
@media (min-width: 1441px) {
  .sec01 .txt {
    margin-bottom: 8rem;
  }
}
@media (max-width: 768px) {
  .sec01 .txt {
    margin-bottom: 10.4166666667vw;
  }
}
@media (max-width: 580px) {
  .sec01 .txt {
    margin-bottom: 13.7931034483vw;
  }
}
@media (min-width: 1441px) {
  .sec01 .txt {
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) {
  .sec01 .txt {
    font-size: 2.34375vw;
  }
}
@media (max-width: 580px) {
  .sec01 .txt {
    font-size: 3.1034482759vw;
  }
}
@media screen and (max-width: 768px) {
  .sec01 .txt {
    width: 90%;
  }
}
.sec01 .txt000 {
  margin-bottom: 0;
  width: fit-content;
}
.sec01 .table01 {
  border: 1px solid #333;
  width: 68%;
  /* 769–1440px */
  margin: 1.3888888889vw auto;
  /* >=1441px（rem固定） */
  /* <=768px（768基準）*/
  /* <=580px（580基準）*/
  margin-inline: none;
}
@media screen and (min-width: 1441px) {
  .sec01 .table01 {
    width: 100%;
    max-width: 900px;
  }
}
@media (min-width: 1441px) {
  .sec01 .table01 {
    margin: 2rem auto;
  }
}
@media (max-width: 768px) {
  .sec01 .table01 {
    margin: 2.6041666667vw auto;
    width: 90%;
  }
}
@media (max-width: 580px) {
  .sec01 .table01 {
    margin: 3.4482758621vw auto;
  }
}
.sec01 .table01 tr:nth-child(odd) {
  background-color: #F3EDCF;
}
.sec01 .table01 tr:nth-child(even) {
  background-color: #fff;
}
.sec01 .table01 tr th, .sec01 .table01 tr td {
  padding: 1rem 1em;
  /* 769–1440px */
  font-size: 1.25vw;
  /* >=1441px（rem固定） */
  /* <=768px（768基準）*/
  /* <=580px（580基準）*/
}
@media (min-width: 1441px) {
  .sec01 .table01 tr th, .sec01 .table01 tr td {
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) {
  .sec01 .table01 tr th, .sec01 .table01 tr td {
    font-size: 2.34375vw;
  }
}
@media (max-width: 580px) {
  .sec01 .table01 tr th, .sec01 .table01 tr td {
    font-size: 3.1034482759vw;
  }
}
.sec01 .table01 tr th {
  text-align: left;
  /* 769–1440px */
  width: 17.3611111111vw;
  /* >=1441px（rem固定） */
  /* <=768px（768基準）*/
  /* <=580px（580基準）*/
}
@media (min-width: 1441px) {
  .sec01 .table01 tr th {
    width: 25rem;
  }
}
@media (max-width: 768px) {
  .sec01 .table01 tr th {
    width: 32.5520833333vw;
  }
}
@media (max-width: 580px) {
  .sec01 .table01 tr th {
    width: 43.1034482759vw;
  }
}
@media screen and (max-width: 580px) {
  .sec01 .table01 tr th {
    width: 32%;
  }
}
.sec01 .table01 tr td {
  /* 769–1440px */
  width: calc((100% - 17.3611111111vw) / 1);
  /* >=1441px（rem固定） */
  /* 〜768px */
  /* 〜580px */
}
@media (min-width: 1441px) {
  .sec01 .table01 tr td {
    width: calc((100% - 25rem) / 1);
  }
}
@media (max-width: 768px) {
  .sec01 .table01 tr td {
    width: calc((100% - 32.5520833333vw) / 1);
  }
}
@media (max-width: 580px) {
  .sec01 .table01 tr td {
    width: calc((100% - 43.1034482759vw) / 1);
  }
}
@media screen and (max-width: 580px) {
  .sec01 .table01 tr td {
    width: 68%;
  }
}

.sec02 .h2 {
  justify-content: center;
}
.subttl {
  /* 769–1440px */
  font-size: 2.0833333333vw;
  /* >=1441px（rem固定） */
  /* <=768px（768基準）*/
  /* <=580px（580基準）*/
}
@media (min-width: 1441px) {
  .subttl {
    font-size: 3rem;
  }
}
@media (max-width: 768px) {
  .subttl {
    font-size: 3.90625vw;
  }
}
@media (max-width: 580px) {
  .subttl {
    font-size: 5.1724137931vw;
  }
}
.sec02 p {
  text-align: center;
}
.sec02 .txt01 {
  font-weight: 500;
  /* 769–1440px */
  font-size: 2.0833333333vw;
  /* >=1441px（rem固定） */
  /* <=768px（768基準）*/
  /* <=580px（580基準）*/
  /* 769–1440px */
  margin-bottom: 2.7777777778vw;
  /* >=1441px（rem固定） */
  /* <=768px（768基準）*/
  /* <=580px（580基準）*/
}
@media (min-width: 1441px) {
  .sec02 .txt01 {
    font-size: 3rem;
  }
}
@media (max-width: 768px) {
  .sec02 .txt01 {
    font-size: 3.90625vw;
  }
}
@media (max-width: 580px) {
  .sec02 .txt01 {
    font-size: 5.1724137931vw;
  }
}
@media (min-width: 1441px) {
  .sec02 .txt01 {
    margin-bottom: 4rem;
  }
}
@media (max-width: 768px) {
  .sec02 .txt01 {
    margin-bottom: 5.2083333333vw;
  }
}
@media (max-width: 580px) {
  .sec02 .txt01 {
    margin-bottom: 6.8965517241vw;
  }
}
.sec02 .txt02 {
  /* 769–1440px */
  font-size: 1.3888888889vw;
  /* >=1441px（rem固定） */
  /* <=768px（768基準）*/
  /* <=580px（580基準）*/
  /* 769–1440px */
  margin-bottom: 4.1666666667vw;
  /* >=1441px（rem固定） */
  /* <=768px（768基準）*/
  /* <=580px（580基準）*/
}
@media (min-width: 1441px) {
  .sec02 .txt02 {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .sec02 .txt02 {
    font-size: 2.6041666667vw;
  }
}
@media (max-width: 580px) {
  .sec02 .txt02 {
    font-size: 3.4482758621vw;
  }
}
@media (min-width: 1441px) {
  .sec02 .txt02 {
    margin-bottom: 6rem;
  }
}
@media (max-width: 768px) {
  .sec02 .txt02 {
    margin-bottom: 7.8125vw;
  }
}
@media (max-width: 580px) {
  .sec02 .txt02 {
    margin-bottom: 10.3448275862vw;
  }
}
.sec02 .box {
  max-width: 1280px;
  margin-inline: auto;
  display: flex;
  /* 769–1440px */
  gap: 1.7361111111vw;
  /* >=1441px（rem固定） */
  /* <=768px（768基準）*/
  /* <=580px（580基準）*/
}
@media (min-width: 1441px) {
  .sec02 .box {
    gap: 2.5rem;
  }
}
@media (max-width: 768px) {
  .sec02 .box {
    gap: 3.2552083333vw;
  }
}
@media (max-width: 580px) {
  .sec02 .box {
    gap: 4.3103448276vw;
  }
}
.sec02 .box svg:nth-child(1) {
  display: block;
}
.sec02 .box svg:nth-child(2) {
  display: none;
}
@media screen and (max-width: 768px) {
  .sec02 .box svg:nth-child(1) {
  display: none;
}
.sec02 .box svg:nth-child(2) {
  display: block;
}
}
.sec02 .box .inbox00 {
  box-shadow: inset -5px -5px 4px rgba(0, 0, 0, 0.3), inset 5px -5px 4px rgba(0, 0, 0, 0.3), inset -5px 5px 4px rgba(255, 255, 255, 0.3), inset 5px 5px 4px rgba(255, 255, 255, 0.3);
  border-radius: 2rem;
  /* 769–1440px */
  padding: 1.3888888889vw;
  /* >=1441px（rem固定） */
  /* <=768px（768基準）*/
  /* <=580px（580基準）*/
  /* 769–1440px */
  font-size: 1.25vw;
  /* >=1441px（rem固定） */
  /* <=768px（768基準）*/
  /* <=580px（580基準）*/
}
@media (min-width: 1441px) {
  .sec02 .box .inbox00 {
    padding: 2rem;
  }
}
@media (max-width: 768px) {
  .sec02 .box .inbox00 {
    padding: 2.6041666667vw;
  }
}
@media (max-width: 580px) {
  .sec02 .box .inbox00 {
    padding: 3.4482758621vw;
  }
}
@media (min-width: 1441px) {
  .sec02 .box .inbox00 {
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) {
  .sec02 .box .inbox00 {
    font-size: 2.34375vw;
  }
}
@media (max-width: 580px) {
  .sec02 .box .inbox00 {
    font-size: 3.1034482759vw;
  }
}
.sec02 .box .inbox00 .top {
  border-bottom: 1px solid #00956e;
  /* 769–1440px */
  padding: 0.6944444444vw;
  /* >=1441px（rem固定） */
  /* <=768px（768基準）*/
  /* <=580px（580基準）*/
  /* 769–1440px */
  margin-bottom: 0.6944444444vw;
  /* >=1441px（rem固定） */
  /* <=768px（768基準）*/
  /* <=580px（580基準）*/
}
@media (min-width: 1441px) {
  .sec02 .box .inbox00 .top {
    padding: 1rem;
  }
}
@media (max-width: 768px) {
  .sec02 .box .inbox00 .top {
    padding: 1.3020833333vw;
  }
}
@media (max-width: 580px) {
  .sec02 .box .inbox00 .top {
    padding: 1.724137931vw;
  }
}
@media (min-width: 1441px) {
  .sec02 .box .inbox00 .top {
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .sec02 .box .inbox00 .top {
    margin-bottom: 1.3020833333vw;
  }
}
@media (max-width: 580px) {
  .sec02 .box .inbox00 .top {
    margin-bottom: 1.724137931vw;
  }
}
.sec02 .box .inbox00 .bottom {
  padding-inline: 1em;
}
.sec02 .box .inbox00 img {
  margin-inline: auto;
}
.sec02 .box .inbox01, .sec02 .box .inbox03, .sec02 .box .inbox06, .sec02 .box .inbox08 {
  background-color: #b2dfd3;
  aspect-ratio: 410/188;
}
.sec02 .box .inbox01 .top, .sec02 .box .inbox03 .top, .sec02 .box .inbox06 .top, .sec02 .box .inbox08 .top {
  display: flex;
  align-items: center;
}
.sec02 .box .inbox02, .sec02 .box .inbox04, .sec02 .box .inbox05, .sec02 .box .inbox07 {
  aspect-ratio: 1;
  background-color: #8dd7c3;
}
.sec02 .box .inbox01 img {
  /* 769–1440px */
  width: 4.3055555556vw;
  /* >=1441px（rem固定） */
  /* <=768px（768基準）*/
  /* <=580px（580基準）*/
}
@media (min-width: 1441px) {
  .sec02 .box .inbox01 img {
    width: 6.2rem;
  }
}
@media (max-width: 768px) {
  .sec02 .box .inbox01 img {
    width: 8.0729166667vw;
  }
}
@media (max-width: 580px) {
  .sec02 .box .inbox01 img {
    width: 10.6896551724vw;
  }
}
.sec02 .box .inbox02 img {
  /* 769–1440px */
  width: 9.0277777778vw;
  /* >=1441px（rem固定） */
  /* <=768px（768基準）*/
  /* <=580px（580基準）*/
}
@media (min-width: 1441px) {
  .sec02 .box .inbox02 img {
    width: 13rem;
  }
}
@media (max-width: 768px) {
  .sec02 .box .inbox02 img {
    width: 16.9270833333vw;
  }
}
@media (max-width: 580px) {
  .sec02 .box .inbox02 img {
    width: 22.4137931034vw;
  }
}
.sec02 .box .inbox03 img {
  /* 769–1440px */
  width: 6.1111111111vw;
  /* >=1441px（rem固定） */
  /* <=768px（768基準）*/
  /* <=580px（580基準）*/
}
@media (min-width: 1441px) {
  .sec02 .box .inbox03 img {
    width: 8.8rem;
  }
}
@media (max-width: 768px) {
  .sec02 .box .inbox03 img {
    width: 11.4583333333vw;
  }
}
@media (max-width: 580px) {
  .sec02 .box .inbox03 img {
    width: 15.1724137931vw;
  }
}
.sec02 .box .inbox04 img {
  /* 769–1440px */
  width: 7.5vw;
  /* >=1441px（rem固定） */
  /* <=768px（768基準）*/
  /* <=580px（580基準）*/
}
@media (min-width: 1441px) {
  .sec02 .box .inbox04 img {
    width: 10.8rem;
  }
}
@media (max-width: 768px) {
  .sec02 .box .inbox04 img {
    width: 14.0625vw;
  }
}
@media (max-width: 580px) {
  .sec02 .box .inbox04 img {
    width: 18.6206896552vw;
  }
}
.sec02 .box .inbox05 img {
  /* 769–1440px */
  width: 11.3194444444vw;
  /* >=1441px（rem固定） */
  /* <=768px（768基準）*/
  /* <=580px（580基準）*/
}
@media (min-width: 1441px) {
  .sec02 .box .inbox05 img {
    width: 16.3rem;
  }
}
@media (max-width: 768px) {
  .sec02 .box .inbox05 img {
    width: 21.2239583333vw;
  }
}
@media (max-width: 580px) {
  .sec02 .box .inbox05 img {
    width: 28.1034482759vw;
  }
}
.sec02 .box .inbox06 img {
  /* 769–1440px */
  width: 8.3333333333vw;
  /* >=1441px（rem固定） */
  /* <=768px（768基準）*/
  /* <=580px（580基準）*/
}
@media (min-width: 1441px) {
  .sec02 .box .inbox06 img {
    width: 12rem;
  }
}
@media (max-width: 768px) {
  .sec02 .box .inbox06 img {
    width: 15.625vw;
  }
}
@media (max-width: 580px) {
  .sec02 .box .inbox06 img {
    width: 20.6896551724vw;
  }
}
.sec02 .box .inbox07 img {
  /* 769–1440px */
  width: 10.6944444444vw;
  /* >=1441px（rem固定） */
  /* <=768px（768基準）*/
  /* <=580px（580基準）*/
}
@media (min-width: 1441px) {
  .sec02 .box .inbox07 img {
    width: 15.4rem;
  }
}
@media (max-width: 768px) {
  .sec02 .box .inbox07 img {
    width: 20.0520833333vw;
  }
}
@media (max-width: 580px) {
  .sec02 .box .inbox07 img {
    width: 26.5517241379vw;
  }
}
.sec02 .box .inbox08 img {
  /* 769–1440px */
  width: 6.7361111111vw;
  /* >=1441px（rem固定） */
  /* <=768px（768基準）*/
  /* <=580px（580基準）*/
}
@media screen and (min-width: 1441px) {
  .sec02 .box .inbox08 img {
    width: 9.7rem;
  }
}
@media (min-width: 1441px) {
  .sec02 .box .inbox08 img {
    width: 9.7rem;
  }
}
@media (max-width: 768px) {
  .sec02 .box .inbox08 img {
    width: 12.6302083333vw;
  }
}
@media (max-width: 580px) {
  .sec02 .box .inbox08 img {
    width: 16.724137931vw;
  }
}
.sec02 .box .left, .sec02 .box .center, .sec02 .box .right {
  /* 769–1440px */
  width: calc((100% - 3.4722222222vw) / 3);
  /* >=1441px（rem固定） */
  /* 〜768px */
  /* 〜580px */
}
@media (min-width: 1441px) {
  .sec02 .box .left, .sec02 .box .center, .sec02 .box .right {
    width: calc((100% - 5rem) / 3);
  }
}
@media (max-width: 768px) {
  .sec02 .box .left, .sec02 .box .center, .sec02 .box .right {
    width: calc((100% - 6.5104166667vw) / 3);
  }
}
@media (max-width: 580px) {
  .sec02 .box .left, .sec02 .box .center, .sec02 .box .right {
    width: calc((100% - 8.6206896552vw) / 3);
  }
}

.sec03 {
  display: flex;
}
@media screen and (max-width: 768px) {
  .sec03 {
    flex-direction: column;
  }
}
.sec03 .left {
  background-color: #fff;
  border-radius: 0 2rem 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* 769–1440px */
  width: 29.8611111111vw;
  /* >=1441px（rem固定） */
  /* <=768px（768基準）*/
  /* <=580px（580基準）*/
  /* 769–1440px */
  padding: 0vw 2.7777777778vw;
  /* >=1441px（rem固定） */
  /* <=768px（768基準）*/
  /* <=580px（580基準）*/
}
@media (min-width: 1441px) {
  .sec03 .left {
    width: 43rem;
  }
}
@media (max-width: 768px) {
  .sec03 .left {
    width: 55.9895833333vw;
  }
}
@media (max-width: 580px) {
  .sec03 .left {
    width: 74.1379310345vw;
  }
}
@media (min-width: 1441px) {
  .sec03 .left {
    padding: 0rem 4rem;
  }
}
@media (max-width: 768px) {
  .sec03 .left {
    padding: 0vw 5.2083333333vw;
  }
}
@media (max-width: 580px) {
  .sec03 .left {
    padding: 0vw 6.8965517241vw;
  }
}
@media screen and (max-width: 768px) {
  .sec03 .left {
    width: 100%;
    align-items: center;
    border-radius: 0;
    padding: 5rem 0;
  }
}
@media screen and (max-width: 580px) {
  .sec03 .left {
    padding-inline: 3%;
  }
}
.sec03 .left .subttl {
  /* 769–1440px */
  font-size: 2.0833333333vw;
  /* >=1441px（rem固定） */
  /* <=768px（768基準）*/
  /* <=580px（580基準）*/
  /* 769–1440px */
  margin: 2.7777777778vw 0vw;
  /* >=1441px（rem固定） */
  /* <=768px（768基準）*/
  /* <=580px（580基準）*/
}
@media (min-width: 1441px) {
  .sec03 .left .subttl {
    font-size: 3rem;
  }
}
@media (max-width: 768px) {
  .sec03 .left .subttl {
    font-size: 3.90625vw;
  }
}
@media (max-width: 580px) {
  .sec03 .left .subttl {
    font-size: 5.1724137931vw;
  }
}
@media (min-width: 1441px) {
  .sec03 .left .subttl {
    margin: 4rem 0rem;
  }
}
@media (max-width: 768px) {
  .sec03 .left .subttl {
    margin: 5.2083333333vw 0vw;
  }
  .sec03 .left .txt01 {
    text-align: center;
  }
}
@media (max-width: 580px) {
  .sec03 .left .subttl {
    margin: 6.8965517241vw 0vw;
  }
}
.sec03 .left .txt02 {
  color: #00956e;
  /* 769–1440px */
  font-size: 2.0833333333vw;
  /* >=1441px（rem固定） */
  /* <=768px（768基準）*/
  /* <=580px（580基準）*/
}
@media (min-width: 1441px) {
  .sec03 .left .txt02 {
    font-size: 3rem;
  }
}
@media (max-width: 768px) {
  .sec03 .left .txt02 {
    font-size: 3.90625vw;
  }
}
@media (max-width: 580px) {
  .sec03 .left .txt02 {
    font-size: 5.1724137931vw;
  }
}
.sec03 .left .txt03 {
  color: #00956e;
  /* 769–1440px */
  font-size: 0.9722222222vw;
  /* >=1441px（rem固定） */
  /* <=768px（768基準）*/
  /* <=580px（580基準）*/
}
@media (min-width: 1441px) {
  .sec03 .left .txt03 {
    font-size: 1.4rem;
  }
}
@media (max-width: 768px) {
  .sec03 .left .txt03 {
    font-size: 1.8229166667vw;
  }
}
@media (max-width: 580px) {
  .sec03 .left .txt03 {
    font-size: 2.4137931034vw;
  }
}
.sec03 .right {
  /* 769–1440px */
  width: calc((100% - 29.8611111111vw) / 1);
  /* >=1441px（rem固定） */
  /* 〜768px */
  /* 〜580px */
  /* 769–1440px */
  margin-top: 6.9444444444vw;
  /* >=1441px（rem固定） */
  /* <=768px（768基準）*/
  /* <=580px（580基準）*/
}
@media (min-width: 1441px) {
  .sec03 .right {
    width: calc((100% - 43rem) / 1);
  }
}
@media (max-width: 768px) {
  .sec03 .right {
    width: calc((100% - 55.9895833333vw) / 1);
  }
}
@media (max-width: 580px) {
  .sec03 .right {
    width: calc((100% - 74.1379310345vw) / 1);
  }
}
@media (min-width: 1441px) {
  .sec03 .right {
    margin-top: 10rem;
  }
}
@media (max-width: 768px) {
  .sec03 .right {
    margin-top: 13.0208333333vw;
  }
}
@media (max-width: 580px) {
  .sec03 .right {
    margin-top: 17.2413793103vw;
  }
}
@media screen and (max-width: 768px) {
  .sec03 .right {
    width: 100%;
    margin-top: 0;
  }
}
.sec03 .right .sliderbox {
  background-image: url("../img/bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  max-width: 100vw;
  overflow-x: hidden;
  /* 769–1440px */
  padding: 5.5555555556vw 0vw;
  /* >=1441px（rem固定） */
  /* <=768px（768基準）*/
  /* <=580px（580基準）*/
}
@media (min-width: 1441px) {
  .sec03 .right .sliderbox {
    padding: 8rem 0rem;
  }
}
@media (max-width: 768px) {
  .sec03 .right .sliderbox {
    padding: 10.4166666667vw 0vw;
  }
}
@media (max-width: 580px) {
  .sec03 .right .sliderbox {
    padding: 13.7931034483vw 0vw;
  }
}
.sec03 .right .sliderbox .slider02 {
  /* 769–1440px */
  height: 41.6666666667vw;
  /* >=1441px（rem固定） */
  /* <=768px（768基準）*/
  /* <=580px（580基準）*/
  /*
  .slick-arrow {
      position: absolute;
      color: #fff;
      bottom: -1vw;
      z-index: 12;
      transform: translateY(-50%);
      display: none!important;
      @media screen and (min-width: 1441px) {
          bottom: -2.2rem;
      }
      @media screen and (max-width: 768px) {
          bottom: -4%;
      }
      cursor: pointer;
      &.slick-prev {
          left: 27vw;
          @media screen and (min-width: 1441px) {
              left: 40%;
          }
          @media screen and (max-width: 768px) {
              left: 32%;
          }
      }
      &.slick-next {
          right: 27vw;
          @media screen and (min-width: 1441px) {
              right: 40%;
          }
          @media screen and (max-width: 768px) {
              right: 32%;
          }
      }
  }*/
}
@media (min-width: 1441px) {
  .sec03 .right .sliderbox .slider02 {
    height: 60rem;
  }
}
@media (max-width: 768px) {
  .sec03 .right .sliderbox .slider02 {
    height: 78.125vw;
  }
}
@media (max-width: 580px) {
  .sec03 .right .sliderbox .slider02 {
    height: 103.4482758621vw;
  }
}
.sec03 .right .sliderbox .slider02 .slider_item {
  transform: translateX(10%) scale(0.8);
  transition: transform 0.3s; /* all ではなく transform のみにすると安定 */
  /* 769–1440px */
  height: 41.6666666667vw;
  /* >=1441px（rem固定） */
  /* <=768px（768基準）*/
  /* <=580px（580基準）*/
  /* 769–1440px */
  height: 41.6666666667vw;
  /* >=1441px（rem固定） */
  /* <=768px（768基準）*/
  /* <=580px（580基準）*/
}
@media (min-width: 1441px) {
  .sec03 .right .sliderbox .slider02 .slider_item {
    height: 60rem;
  }
}
@media (max-width: 768px) {
  .sec03 .right .sliderbox .slider02 .slider_item {
    height: 78.125vw;
  }
}
@media (max-width: 580px) {
  .sec03 .right .sliderbox .slider02 .slider_item {
    height: 103.4482758621vw;
  }
}
@media (min-width: 1441px) {
  .sec03 .right .sliderbox .slider02 .slider_item {
    height: 60rem;
  }
}
@media (max-width: 768px) {
  .sec03 .right .sliderbox .slider02 .slider_item {
    height: 78.125vw;
  }
}
@media (max-width: 580px) {
  .sec03 .right .sliderbox .slider02 .slider_item {
    height: 103.4482758621vw;
  }
}
@media screen and (max-width: 580px) {
  .sec03 .right .sliderbox .slider02 .slider_item {
    transform: translateX(0%) scale(1);
    padding-inline: 100px;
  }
}
.sec03 .right .sliderbox .slider02 .slider_item a {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100vw;
}
@media screen and (max-width: 580px) {
  .sec03 .right .sliderbox .slider02 .slider_item a {
    width: 300px;
    
  }
}
.sec03 .right .sliderbox .slider02 .slider_item a::after {
  content: "";
  display: inline-block;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0), rgb(0, 0, 0));
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20%;
}
.sec03 .right .sliderbox .slider02 .slider_item a .name {
  position: absolute;
  bottom: 6%;
  left: 0;
  padding-left: 2em;
  color: #fff;
  z-index: 5;
}
.sec03 .right .sliderbox .slider02 .slider_item img {
  -o-object-fit: contain;
     object-fit: contain;
  /* 769–1440px */
  height: 41.6666666667vw;
  /* >=1441px（rem固定） */
  /* <=768px（768基準）*/
  /* <=580px（580基準）*/
  border-radius: 2rem;
}
@media (min-width: 1441px) {
  .sec03 .right .sliderbox .slider02 .slider_item img {
    height: 60rem;
  }
}
@media (max-width: 768px) {
  .sec03 .right .sliderbox .slider02 .slider_item img {
    height: 78.125vw;
  }
}
@media (max-width: 580px) {
  .sec03 .right .sliderbox .slider02 .slider_item img {
    height: 103.4482758621vw;
    object-fit: cover;
  }
}
.sec03 .right .sliderbox .slider02 .slider_item.is-current {
  transform: translateX(50%) scale(1);
  transition: all 0.3s;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 580px) {
  .sec03 .right .sliderbox .slider02 .slider_item.is-current {
    transform: translateX(0%) scale(1);
    
  }
}
.sec03 .right .sliderbox .slider-controls {
  background-color: #00956e;
  padding: 1rem 2rem;
  border-radius: 4rem;
  position: absolute;
  bottom: 2.5vw;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 30rem;
}
@media screen and (min-width: 1441px) {
  .sec03 .right .sliderbox .slider-controls {
    bottom: 5%;
    padding: 1rem 2rem;
  }
}
@media screen and (max-width: 768px) {
  .sec03 .right .sliderbox .slider-controls {
    bottom: 2%;
  }
}
.sec03 .right .sliderbox .slider-controls .slick_pause {
  margin-inline: auto;
  color: #fff;
  cursor: pointer;
}
.sec03 .right .sliderbox .slider-controls::before, .sec03 .right .sliderbox .slider-controls::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 50%;
  background-color: #fff;
}
.sec03 .right .sliderbox .slider-controls::before {
  left: 33%;
}
.sec03 .right .sliderbox .slider-controls::after {
  right: 33%;
}
.sec03 .right .sliderbox .slider-controls .ctrl-btn {
  color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.sec03 .right .sliderbox .slider-controls .ctrl-btn.prev {
  left: 15%;
}
.sec03 .right .sliderbox .slider-controls .ctrl-btn.next {
  right: 15%;
}

.sec04 {
  background-color: #00956e;
  /* 769–1440px */
  padding: 3.4722222222vw 0vw;
  /* >=1441px（rem固定） */
  /* <=768px（768基準）*/
  /* <=580px（580基準）*/
}
@media (min-width: 1441px) {
  .sec04 {
    padding: 5rem 0rem;
  }
}
@media (max-width: 768px) {
  .sec04 {
    padding: 6.5104166667vw 0vw;
  }
}
@media (max-width: 580px) {
  .sec04 {
    padding: 8.6206896552vw 0vw;
  }
}
.sec04 .h2 {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .sec04 .h2 {
    justify-content: center;
  }
}
.sec04 .h2::before {
  color: #fff;
}
.sec04 .h2::after {
  background-color: #fff;
}
.sec04 .subttl {
  color: #fff;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  /* 769–1440px */
  font-size: 2.0833333333vw;
  /* >=1441px（rem固定） */
  /* <=768px（768基準）*/
  /* <=580px（580基準）*/
  /* 769–1440px */
  margin: 2.0833333333vw 0vw;
  /* >=1441px（rem固定） */
  /* <=768px（768基準）*/
  /* <=580px（580基準）*/
}
@media (min-width: 1441px) {
  .sec04 .subttl {
    font-size: 3rem;
  }
}
@media (max-width: 768px) {
  .sec04 .subttl {
    font-size: 3.90625vw;
  }
}
@media (max-width: 580px) {
  .sec04 .subttl {
    font-size: 5.1724137931vw;
  }
}
@media (min-width: 1441px) {
  .sec04 .subttl {
    margin: 3rem 0rem;
  }
}
@media (max-width: 768px) {
  .sec04 .subttl {
    margin: 3.90625vw 0vw;
  }
}
@media (max-width: 580px) {
  .sec04 .subttl {
    margin: 5.1724137931vw 0vw;
  }
}
@media screen and (max-width: 768px) {
  .sec04 .subttl {
    margin-inline: auto;
  }
}
.sec04 .subttl::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(150%, -50%);
  aspect-ratio: 69/48;
  background-image: url("../img/17.png");
  background-repeat: no-repeat;
  background-size: contain;
  /* 769–1440px */
  width: 4.1666666667vw;
  /* >=1441px（rem固定） */
  /* <=768px（768基準）*/
  /* <=580px（580基準）*/
}
@media (min-width: 1441px) {
  .sec04 .subttl::after {
    width: 6rem;
  }
}
@media (max-width: 768px) {
  .sec04 .subttl::after {
    width: 7.8125vw;
  }
}
@media (max-width: 580px) {
  .sec04 .subttl::after {
    width: 10.3448275862vw;
  }
}
.sec04 .box {
  background-color: #fff;
  border-radius: 2rem;
  /* 769–1440px */
  padding: 2.7777777778vw 4.1666666667vw;
  /* >=1441px（rem固定） */
  /* <=768px（768基準）*/
  /* <=580px（580基準）*/
  padding-bottom: 0;
}
@media screen and (min-width: 1441px) {
  .sec04 .box {
    padding: 3rem 6rem;
  }
}
@media (min-width: 1441px) {
  .sec04 .box {
    padding: 4rem 6rem;
  }
}
@media (max-width: 768px) {
  .sec04 .box {
    padding: 5.2083333333vw 7.8125vw;
  }
}
@media (max-width: 580px) {
  .sec04 .box {
    padding: 6.8965517241vw 10.3448275862vw;
  }
}
@media screen and (max-width: 580px) {
  .sec04 .box {
    padding-inline: 3%;
  }
}
.sec04 .box .news-grid {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(2, auto);
  grid-auto-columns: 1fr;
  gap: 0px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sec04 .box .news-grid {
    display: block;
  }
}
.sec04 .box .news-grid::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 100%;
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #00956e;
}
@media screen and (max-width: 768px) {
  .sec04 .box .news-grid::after {
    display: none;
  }
}
.sec04 .box .news-grid li {
  padding-bottom: 2rem;
  padding-left: 2em;
}
.sec04 .box .news-grid li a {
  color: #00956e;
}
@media screen and (max-width: 768px) {
  .sec04 .box .news-grid li {
    border-bottom: 1px solid #00956e;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
.sec04 .box .news-grid li .txt00 {
  display: flex;
  gap: 1em;
  /* 769–1440px */
  margin-bottom: 1.3888888889vw;
  /* >=1441px（rem固定） */
  /* <=768px（768基準）*/
  /* <=580px（580基準）*/
}
@media (min-width: 1441px) {
  .sec04 .box .news-grid li .txt00 {
    margin-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .sec04 .box .news-grid li .txt00 {
    margin-bottom: 2.6041666667vw;
  }
}
@media (max-width: 580px) {
  .sec04 .box .news-grid li .txt00 {
    margin-bottom: 3.4482758621vw;
  }
}
.sec04 .box .news-grid li .txt00 img {
  -o-object-fit: contain;
     object-fit: contain;
  /* 769–1440px */
  width: 2.0833333333vw;
  /* >=1441px（rem固定） */
  /* <=768px（768基準）*/
  /* <=580px（580基準）*/
}
@media (min-width: 1441px) {
  .sec04 .box .news-grid li .txt00 img {
    width: 3rem;
  }
}
@media (max-width: 768px) {
  .sec04 .box .news-grid li .txt00 img {
    width: 3.90625vw;
  }
}
@media (max-width: 580px) {
  .sec04 .box .news-grid li .txt00 img {
    width: 5.1724137931vw;
  }
}
.sec04 .box .news-grid li .txt02 {
  padding-left: 1em;
}

.sec05 {
  background-color: #e7e0c5;
  /* 769–1440px */
  padding: 3.4722222222vw 0vw;
  /* >=1441px（rem固定） */
  /* <=768px（768基準）*/
  /* <=580px（580基準）*/
}
@media (min-width: 1441px) {
  .sec05 {
    padding: 5rem 0rem;
  }
}
@media (max-width: 768px) {
  .sec05 {
    padding: 6.5104166667vw 0vw;
  }
}
@media (max-width: 580px) {
  .sec05 {
    padding: 8.6206896552vw 0vw;
  }
}
.sec05 .h2 {
  justify-content: center;
}
.sec05 .subttl {
  position: relative;
  text-align: center;
  /* 769–1440px */
  font-size: 2.0833333333vw;
  /* >=1441px（rem固定） */
  /* <=768px（768基準）*/
  /* <=580px（580基準）*/
  /* 769–1440px */
  margin: 2.0833333333vw 0vw;
  /* >=1441px（rem固定） */
  /* <=768px（768基準）*/
  /* <=580px（580基準）*/
}
@media (min-width: 1441px) {
  .sec05 .subttl {
    font-size: 3rem;
  }
}
@media (max-width: 768px) {
  .sec05 .subttl {
    font-size: 3.90625vw;
  }
}
@media (max-width: 580px) {
  .sec05 .subttl {
    font-size: 5.1724137931vw;
  }
}
@media (min-width: 1441px) {
  .sec05 .subttl {
    margin: 3rem 0rem;
  }
}
@media (max-width: 768px) {
  .sec05 .subttl {
    margin: 3.90625vw 0vw;
  }
}
@media (max-width: 580px) {
  .sec05 .subttl {
    margin: 5.1724137931vw 0vw;
  }
}
.sec05 .txt {
  text-align: center;
}
.box_saiyou ul {
  display: flex;
  gap: 5%;
  justify-content: center;
  width: 100%;
  max-width: 900px;
  margin: 10% auto;
}
@media screen and (max-width: 768px) {
  .box_saiyou ul {
    flex-direction: column;
    gap: 2rem;
  }
}
.box_saiyou ul li {
  width: 47.5%;
}
@media screen and (max-width: 768px) {
  .box_saiyou ul li {
    width: 100%;
    max-width: 500px;
    margin-inline: auto;
  }
}
.box_saiyou ul li a {
  width: 100%;
  background-color: #fff;
  border-radius: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5%;
  padding: 5%;
}
.box_saiyou ul li a .txt02 {
  background-color: #e7e0c5;
  padding: 1% 2%;
  border-radius: 1rem;
}
.box_saiyou ul li a img {
  /* 769–1440px */
  width: 2.0833333333vw;
  /* >=1441px（rem固定） */
  /* <=768px（768基準）*/
  /* <=580px（580基準）*/
}
@media (min-width: 1441px) {
  .box_saiyou ul li a img {
    width: 3rem;
  }
}
@media (max-width: 768px) {
  .box_saiyou ul li a img {
    width: 3.90625vw;
  }
}
@media (max-width: 580px) {
  .box_saiyou ul li a img {
    width: 5.1724137931vw;
  }
}

.access {
  background-color: #fff;
  /* 769–1440px */
  padding: 3.4722222222vw 0vw;
  /* >=1441px（rem固定） */
  /* <=768px（768基準）*/
  /* <=580px（580基準）*/
}
.access .h2 {
  justify-content: center;
}
.access .subttl {
  text-align: center;
  margin-bottom: 4rem;
}
@media (min-width: 1441px) {
  .access {
    padding: 5rem 0rem;
  }
}
@media (max-width: 768px) {
  .access {
    padding: 6.5104166667vw 0vw;
  }
}
@media (max-width: 580px) {
  .access {
    padding: 8.6206896552vw 0vw;
  }
}
.access .box {
  display: flex;
  border-radius: 2rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .access .box {
    flex-direction: column;
  }
}
.access .box .left,.access .box .right {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .access .box .left,.access .box .right {
  width: 100%;
}
}
.access .box .left {
  background-color: #e7e0c5;
  padding: 3rem;
}
.access .box .left .inbox01 {
  border-bottom: 1px solid #000;
  margin-bottom: 3rem;
  padding-left: 7%;
}
@media screen and (max-width: 580px) {
  .access .box .left .inbox01 {
    padding-left: 10%;
  }
}
.access .box .left .inbox01 img {
  width: 50%;
  margin-bottom: 2rem;
}
.access .box .left .inbox01 p {
  font-size: 1.4rem;
}
.access .box .left .inbox01 a {
  padding: 0rem 0 4rem 0%;
}
.access .box .left .inbox02 {
  padding-left: 7%;
}
@media screen and (max-width: 580px) {
  .access .box .left .inbox02 {
    padding-left: 10%;
  }
}
.access .box .left .inbox02 dl dt {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.5em;
}
.access .box .left .inbox02 dl dd {
  font-size: 1.2rem;
  margin-bottom: 2em;
  line-height: 2;

}
.access .box .left .inbox02 dl dd a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.access .box .left .inbox02 dl dd a::after {
  content: "";
  display: inline-block;
  width: 1.5rem;
  aspect-ratio: 1;
  background-image: url("../img/arr02.png");
  background-repeat: no-repeat;
  background-size: contain;
  transition: all .3s;
}
.access .box .left .inbox02 dl dd a:hover::after {
  transform: translate(3px , -3px);
}
.access .box .right {
  aspect-ratio: 1;
}
@media screen and (max-width: 768px) {
  .access .box .right {
    aspect-ratio: 2 / 1;
  }
}
@media screen and (max-width: 568px) {
  .access .box .right {
    aspect-ratio: 1;
  }
}

#map {
  padding-inline: 5.5555555556vw;
}
.map {
  width: 100%;
  padding: 10% 2% 2% 10%;
  background-image: url("../img/bg02.png");
  background-repeat: no-repeat;
  background-size: cover;
  margin: 6rem 0;
  position: relative;
}
@media screen and (max-width: 580px) {
  .map {
    padding: 3%;
  }
}
.map .box {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 2rem;
  
}
@media screen and (max-width: 768px) {
  .map .box  {
    aspect-ratio: 19 / 14;
  }
}
@media screen and (max-width: 580px) {
  .map .box {
    aspect-ratio: 2 / 3;
  }
}
.map .ttl_map {
  font-size: 2.4rem;
  position: absolute;
  top: 5%;
  left: 0;
  text-align: center;
  width: 100%;
  color: #00956e;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .map .ttl_map {
    font-size: 2rem;
  }
}
@media screen and (max-width: 580px) {
  .map .ttl_map {
    position: static;
    padding: 2rem 0;
  }
}
footer {
  margin-top: 10rem;
}
footer .box {
  width: 100%;
  max-width: 900px;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  gap: 10%;
}
footer .box .subttl {
  margin-bottom: 1em;
  /* 769–1440px */
  padding: 1.3888888889vw 0vw;
  /* >=1441px（rem固定） */
  /* <=768px（768基準）*/
  /* <=580px（580基準）*/
}
@media (min-width: 1441px) {
  footer .box .subttl {
    padding: 2rem 0rem;
  }
}
footer .box ul {
  padding-left: 2em;
}
footer .box .ul02 {
  padding-top: 2rem;
}
footer .box ul li {
  margin-bottom: 1em;
  text-align: center;
}
footer .box .center, footer .box .right {
  border-left: 1px solid #000;
}
footer .copy {
  text-align: center;
  margin: 10% 0;
}
footer .box02 {
  display: none;
}
@media screen and (max-width: 768px) {
  footer .box02 {
    display: flex;
    justify-content: center;
    gap: 10%;
    position: fixed;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
  }
}
footer .box .wrap {
  display: flex;
  gap: 10%;
  width: 55%;
}
@media screen and (max-width: 768px) {
  footer {
    margin-top: 3rem;
  }
  footer .box {
    flex-wrap: wrap;
    align-items: start;
    gap: 0;
    justify-content: space-between;
    position: relative;
  }
  footer .box::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 100%;
    background-color: #333;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  footer .box a {
    font-size: 14px;
  }
  footer .box .subttl {
    padding: 2.6041666667vw 0vw;
  }
  footer .box .subttl {
    text-align: center;
  }
  footer .box ul {
    padding-left: 0;
  }
  footer .box ul li a {
    margin-inline: auto;
  }
  footer .box .left {
    width: 45%;
  }
  footer .box .wrap {
    width: 45%;
    flex-direction: column;
  }
  footer .box .center, footer .box .right {
    border-left: none;
    width: 100%;
  }
}
@media (max-width: 580px) {
  footer .box .subttl {
    padding: 3.4482758621vw 0vw;
  }
}
/* トップページ・wrap_01,wrap_02 タイトル縦 */
.ttl_tate {
  font-size: 16rem;
  font-weight: 900;
  font-family: "Roboto", sans-serif;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #08A222;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  position: absolute;
  top: 0;
  left: 5rem;
}
@media screen and (max-width: 1280px) {
  .ttl_tate {
    font-size: 12rem;
    left: 2rem;
  }
}
@media screen and (max-width: 1080px) {
  .ttl_tate {
    writing-mode: unset;
  }
}
@media screen and (max-width: 580px) {
  .ttl_tate {
    font-size: 5.5rem;
  }
}

.txt_wh-bl {
  color: #fff;
  font-weight: 900;
  text-shadow: -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000, 2px 2px 0 #000, 0px 0px 5px #000, 0px 0px 19px rgba(0, 0, 0, 0.8);
}

.mv_parts {
  background-color: #D9D9D9;
  width: 100%;
  height: 50rem;
}
@media screen and (max-width: 768px) {
  .mv_parts {
    height: 40rem;
  }
}

.h_01 {
  font-size: 5rem;
  vertical-align: bottom;
  color: #08A222;
  position: relative;
  padding-left: 9rem;
  margin: 8rem 0 2.4rem;
}
@media screen and (max-width: 768px) {
  .h_01 {
    font-size: 2.5rem;
    padding-left: 3rem;
    text-align: center;
  }
}
.h_01 span {
  font-size: 7rem;
  display: inline-block;
  vertical-align: baseline;
}
@media screen and (max-width: 768px) {
  .h_01 span {
    font-size: 4rem;
  }
}
.h_01::before {
  content: "";
  display: inline-block;
  background-image: url("../img/arrow_gre.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 7.3rem;
  aspect-ratio: 73/65;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .h_01::before {
    width: 2.3rem;
  }
}

.h_02 {
  position: relative;
  font-weight: 900;
  font-size: 5rem;
  line-height: 1;
  vertical-align: bottom;
  margin: 8rem 0 2.4rem;
  color: #08A222;
}
@media screen and (max-width: 768px) {
  .h_02 {
    font-size: 2.5rem;
    text-align: center;
  }
}
.h_02 span {
  font-size: 7rem;
  color: #fff;
  vertical-align: baseline;
  position: relative;
  display: inline-block;
  margin-right: 2rem;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .h_02 span {
    font-size: 4rem;
    margin-right: 1.5rem;
  }
}
.h_02 span::after {
  content: "";
  display: inline-block;
  background-color: #08A222;
  width: 9.2rem;
  aspect-ratio: 1;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -46%);
}
@media screen and (max-width: 768px) {
  .h_02 span::after {
    width: 5.5rem;
  }
}

.h_03 {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  font-weight: 900;
  font-size: 5rem;
  line-height: 1;
  margin: 8rem 0 2.4rem;
  color: #787878;
  padding-bottom: 2rem;
  padding-right: 10%;
  border-bottom: 8px solid #08A222;
}
@media screen and (max-width: 768px) {
  .h_03 {
    font-size: 2.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #08A222;
    text-align: center;
  }
}

.h_04 {
  margin: 8rem 0 2.4rem;
  font-size: 3.2rem;
  color: #fff;
  background-color: rgba(8, 162, 34, 0.8);
  font-weight: 700;
  border-radius: 3rem;
  line-height: 1;
  padding: 1.6rem 3.5rem;
}
@media screen and (max-width: 768px) {
  .h_04 {
    font-size: 2rem;
    text-align: center;
  }
}

.colorbox {
  margin: 8rem 0;
}
.colorbox p {
  margin-bottom: 1rem;
}
.colorbox .ul_color {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.colorbox .ul_color li {
  width: 9.5rem;
  aspect-ratio: 1;
  color: #fff;
  padding: 1rem;
}
.colorbox .ul_color li:nth-child(1) {
  background-color: #08A222;
}
.colorbox .ul_color li:nth-child(2) {
  background-color: #FFD200;
}
.colorbox .ul_color li:nth-child(3) {
  background-color: #0086EB;
}
.colorbox .ul_color li:nth-child(4) {
  background-color: #FE0202;
}

.wrap_base {
  padding-top: 3.6rem;
  position: relative;
}
.wrap_base .ttl_tate {
  top: 3.3rem;
  left: 2rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .wrap_base .ttl_tate {
    font-size: 5rem;
  }
}
.wrap_base .ttl_tate span {
  vertical-align: sub;
  display: inline-block;
  transform: translateX(11px);
}
@media screen and (max-width: 1080px) {
  .wrap_base .ttl_tate span {
    transform: translateY(-25px);
  }
}
@media screen and (max-width: 768px) {
  .wrap_base .ttl_tate span {
    transform: translateY(-11px);
  }
}
@media screen and (max-width: 768px) {
  .wrap_base .inner_01 {
    padding-top: 8rem;
  }
}
.wrap_base.wrap_01 {
  background-color: #FFD200;
  padding-bottom: 18rem;
  padding-right: 3%;
}
@media screen and (max-width: 768px) {
  .wrap_base.wrap_01 {
    padding-bottom: 8rem;
  }
}
.wrap_base.wrap_01 .ttl_tate {
  color: #fff;
}
.wrap_base.wrap_01 .ttl_tate span {
  font-size: 10rem;
}
@media screen and (max-width: 768px) {
  .wrap_base.wrap_01 .ttl_tate span {
    font-size: 3.5rem;
  }
}
.wrap_base.wrap_01 .box {
  padding-right: 5%;
}
.wrap_base.wrap_01 .box .ul_wrap01 li {
  margin-bottom: 3rem;
}
.wrap_base.wrap_01 .box .ul_wrap01 li span {
  line-height: 1.5;
  margin-bottom: 2rem;
  padding-right: 5%;
}
@media screen and (max-width: 768px) {
  .wrap_base.wrap_01 .box .ul_wrap01 li span {
    line-height: 1.8;
  }
}
.wrap_base.wrap_01 .box .ul_wrap01 li span:nth-child(1) {
  display: block;
  color: #08A222;
  font-size: 3.2rem;
  font-weight: 700;
  background-color: unset;
  border-radius: 0;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .wrap_base.wrap_01 .box .ul_wrap01 li span:nth-child(1) {
    font-size: 2rem;
  }
}
.wrap_base.wrap_01 .box .ul_wrap01 li span:nth-child(2) {
  margin-bottom: 0;
}
.wrap_base.wrap_01 .box .ul_wrap01 li .toggle_switch {
  margin-top: 0;
}
.wrap_base.wrap_02 {
  background-color: #F2EFD8;
  padding-bottom: 6rem;
}
.wrap_base.wrap_02 .ttl_tate {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .wrap_base.wrap_02 .box {
    padding-right: 3%;
  }
}
.wrap_base.wrap_02 .box .txt_wh-bl {
  font-size: 4.5rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .wrap_base.wrap_02 .box .txt_wh-bl {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 580px) {
  .wrap_base.wrap_02 .box .txt_wh-bl {
    font-size: 2.4rem;
  }
}
.wrap_base.wrap_02 .box .ul_wrap02 li {
  margin-bottom: 4rem;
  line-height: 1;
}
.wrap_base.wrap_02 .box .ul_wrap02 li span {
  display: block;
}
.wrap_base.wrap_02 .box .ul_wrap02 li span:nth-child(1) {
  font-weight: 700;
  margin-bottom: 2rem;
}
.wrap_base.wrap_03 {
  background-color: #F0F0F0;
  padding-bottom: 6rem;
}
.wrap_base.wrap_03 .box .txt_note {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 3rem;
}
.wrap_base.wrap_03 .box .txt_note::before {
  content: "";
  display: inline-block;
  background-image: url("../img/note.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 3.9rem;
  aspect-ratio: 39/35;
}
.wrap_base.wrap_03 .box .ul_note li {
  line-height: 2;
  position: relative;
}
.wrap_base.wrap_03 .box .ul_note li::before {
  content: "※";
  display: inline-block;
  margin-right: 3px;
}
.wrap_base.wrap_04 {
  background-color: #DCF0DC;
  padding-bottom: 18rem;
}
@media screen and (max-width: 768px) {
  .wrap_base.wrap_04 {
    padding-bottom: 8rem;
  }
}
.wrap_base.wrap_04 .ttl_tate {
  color: #fff;
}
@media screen and (max-width: 1080px) {
  .wrap_base.wrap_04 .box {
    padding-right: 3%;
  }
}
.wrap_base.wrap_04 .box .ul_wrap04 li span {
  display: block;
  border-radius: 2rem;
  padding: 3rem;
  position: relative;
  line-height: 2;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .wrap_base.wrap_04 .box .ul_wrap04 li span {
    font-size: 1.6rem;
    padding: 1.5rem;
  }
}
.wrap_base.wrap_04 .box .ul_wrap04 li span:nth-child(1) {
  background-color: #08A222;
  color: #fff;
  margin-bottom: 3rem;
  width: 95%;
  margin-left: auto;
}
.wrap_base.wrap_04 .box .ul_wrap04 li span:nth-child(1)::after {
  content: "";
  display: inline-block;
  background-image: url("../img/radius.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 7.2rem;
  aspect-ratio: 72/63;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(-40%, 50%);
}
@media screen and (max-width: 768px) {
  .wrap_base.wrap_04 .box .ul_wrap04 li span:nth-child(1)::after {
    width: 4.2rem;
  }
}
.wrap_base.wrap_04 .box .ul_wrap04 li span:nth-child(2) {
  background-color: #FFD200;
  width: 80%;
  margin-left: auto;
}
.wrap_base.wrap_05 {
  background-color: #FFE6E6;
  padding-bottom: 18rem;
  padding-right: 5rem;
}
@media screen and (max-width: 1280px) {
  .wrap_base.wrap_05 {
    padding-right: 3%;
  }
}
@media screen and (max-width: 768px) {
  .wrap_base.wrap_05 {
    padding-bottom: 8rem;
  }
}
.wrap_base.wrap_05 .ttl_tate {
  color: #fff;
}
.wrap_base.wrap_05 .box h3 {
  color: #F26695;
  font-size: 4.5rem;
  font-weight: 900;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .wrap_base.wrap_05 .box h3 {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 580px) {
  .wrap_base.wrap_05 .box h3 {
    font-size: 2.4rem;
  }
}
.wrap_base.wrap_05 .box .ul_wrap05 {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  width: 100%;
}
@media screen and (max-width: 1280px) {
  .wrap_base.wrap_05 .box .ul_wrap05 {
    gap: 1.5rem;
  }
}
.wrap_base.wrap_05 .box .ul_wrap05 li {
  width: calc((100% - 9rem) / 4);
}
@media screen and (max-width: 1280px) {
  .wrap_base.wrap_05 .box .ul_wrap05 li {
    width: calc((100% - 3rem) / 3);
  }
}
@media screen and (max-width: 768px) {
  .wrap_base.wrap_05 .box .ul_wrap05 li {
    width: calc((100% - 1.5rem) / 2);
  }
}
.wrap_base.wrap_05 .box .ul_wrap05 li a {
  width: 100%;
}
.wrap_base.wrap_05 .box .ul_wrap05 li .img {
  overflow: hidden;
  border-radius: 2rem;
  margin-bottom: 2rem;
  aspect-ratio: 291/194;
}
.wrap_base.wrap_05 .box .ul_wrap05 li .img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all 0.3s;
}
.wrap_base.wrap_05 .box .ul_wrap05 li .txtbox {
  font-size: 1.8rem;
}
.wrap_base.wrap_05 .box .ul_wrap05 li .txtbox h4 {
  font-weight: 500;
}
.wrap_base.wrap_05 .box .ul_wrap05 li .txtbox .kyori {
  font-weight: 500;
}
.wrap_base.wrap_05 .box .ul_wrap05 li .txtbox .price {
  font-size: 2rem;
  font-weight: 700;
}
.wrap_base.wrap_05 .box .ul_wrap05 li .txtbox .cat {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.wrap_base.wrap_05 .box .ul_wrap05 li .txtbox .cat a {
  display: inline-block;
  font-size: 12px;
  background-color: #08A222;
  color: #fff;
  border-radius: 1rem;
  padding: 5px 10px;
  line-height: 1;
}
.wrap_base.wrap_06 {
  background-color: #E2F3FF;
  padding-bottom: 18rem;
  padding-right: 5rem;
}
@media screen and (max-width: 1380px) {
  .wrap_base.wrap_06 {
    padding-right: 3%;
  }
}
@media screen and (max-width: 768px) {
  .wrap_base.wrap_06 {
    padding-bottom: 8rem;
  }
}
.wrap_base.wrap_06 .ttl_tate {
  color: #fff;
}
.wrap_base.wrap_06 .box h3 {
  color: #0274CA;
  font-size: 4.5rem;
  font-weight: 900;
  margin-bottom: 4rem;
}
.wrap_base.wrap_06 .box .ul_wrap06 {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}
@media screen and (max-width: 1380px) {
  .wrap_base.wrap_06 .box .ul_wrap06 {
    gap: 1.5rem;
  }
}
.wrap_base.wrap_06 .box .ul_wrap06 > li {
  border-radius: 2rem;
  width: calc((100% - 3rem) / 2);
  overflow: hidden;
  background-color: #fff;
}
@media screen and (max-width: 1380px) {
  .wrap_base.wrap_06 .box .ul_wrap06 > li {
    width: calc((100% - 1.5rem) / 2);
  }
}
@media screen and (max-width: 1080px) {
  .wrap_base.wrap_06 .box .ul_wrap06 > li {
    width: 100%;
  }
}
.wrap_base.wrap_06 .box .ul_wrap06 > li h4 {
  background-color: #0086EB;
  text-align: center;
  padding: 1.2rem 0;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
}
@media screen and (max-width: 1380px) {
  .wrap_base.wrap_06 .box .ul_wrap06 > li h4 {
    font-size: 2rem;
  }
}
.wrap_base.wrap_06 .box .ul_wrap06 > li h4 span {
  font-size: 2rem;
  display: inline-block;
  vertical-align: baseline;
}
@media screen and (max-width: 1380px) {
  .wrap_base.wrap_06 .box .ul_wrap06 > li h4 span {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 580px) {
  .wrap_base.wrap_06 .box .ul_wrap06 > li h4 span {
    font-size: 2rem;
  }
}
.wrap_base.wrap_06 .box .ul_wrap06 > li .inbox .ul02 {
  padding-inline: 1.4rem;
}
.wrap_base.wrap_06 .box .ul_wrap06 > li .inbox .ul02 > li {
  display: flex;
  align-items: center;
  padding: 1.4rem 0;
  position: relative;
}
.wrap_base.wrap_06 .box .ul_wrap06 > li .inbox .ul02 > li::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: calc(100% - 2.8rem);
  background-color: #0086EB;
  position: absolute;
  top: 50%;
  left: 13rem;
  transform: translateY(-50%);
}
@media screen and (max-width: 1380px) {
  .wrap_base.wrap_06 .box .ul_wrap06 > li .inbox .ul02 > li::after {
    left: 9rem;
  }
}
.wrap_base.wrap_06 .box .ul_wrap06 > li .inbox .ul02 > li .ttl {
  width: 13rem;
  text-align: center;
  color: #0274CA;
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 1380px) {
  .wrap_base.wrap_06 .box .ul_wrap06 > li .inbox .ul02 > li .ttl {
    font-size: 1.6rem;
    width: 9rem;
  }
}
.wrap_base.wrap_06 .box .ul_wrap06 > li .inbox .ul02 > li .txt {
  width: calc(100% - 13rem);
  font-size: 1.8rem;
  font-weight: 700;
  padding: 2rem 0 2rem 2rem;
  line-height: 2;
}
@media screen and (max-width: 1380px) {
  .wrap_base.wrap_06 .box .ul_wrap06 > li .inbox .ul02 > li .txt {
    font-size: 1.6rem;
    width: calc(100% - 9rem);
  }
}
.wrap_base.wrap_06 .box .ul_wrap06 > li .inbox .ul02 > li:nth-child(1) {
  border-bottom: 2px solid #0086EB;
}

.ul_verbox {
  margin-bottom: 4rem;
}
.ul_verbox .ttl {
  margin-bottom: 2rem;
  font-size: 2.4rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .ul_verbox .ttl {
    font-size: 2rem;
  }
}
.ul_verbox ul {
  padding-left: 1.5em;
}
.ul_verbox ul li {
  margin-bottom: 1rem;
}
.ul_verbox .ul_ver01 {
  list-style: disc;
}
.ul_verbox .ul_ver02 {
  list-style: decimal;
}

.tablebox {
  margin-bottom: 8rem;
}
.tablebox table {
  width: 100%;
  border-radius: 2rem;
  border: 6px solid #08A222;
  border-collapse: separate;
  border-spacing: 0;
}
.tablebox table tr th, .tablebox table tr td {
  font-size: 2.4rem;
  font-weight: 700;
  padding: 1.6rem 5px;
  text-align: center;
}
@media screen and (max-width: 1080px) {
  .tablebox table tr th, .tablebox table tr td {
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .tablebox table tr th, .tablebox table tr td {
    font-size: 1.6rem;
  }
}
.tablebox table tr th {
  color: #fff;
  background-color: #08A222;
}
@media screen and (max-width: 768px) {
  .tablebox table tr th {
    font-size: 1.8rem;
  }
}
.tablebox.tablebox01 {
  display: flex;
}
@media screen and (max-width: 1080px) {
  .tablebox.tablebox01 {
    display: block;
  }
}
.tablebox.tablebox01 .table01 {
  width: 33.3333333333%;
}
@media screen and (max-width: 1080px) {
  .tablebox.tablebox01 .table01 {
    width: 100%;
    border: none;
  }
}
.tablebox.tablebox01 .table01 tr th {
  border-right: 3px solid #fff;
}
.tablebox.tablebox01 .table01 tr th:last-child {
  border-right: none;
}
.tablebox.tablebox01 .table01 tr td {
  border-bottom: 2px solid #08A222;
  border-right: 2px solid #08A222;
}
.tablebox.tablebox01 .table01 tr td:last-child {
  border-right: none;
}
.tablebox.tablebox01 .table01 tr:last-child td {
  border-bottom: none;
}
.tablebox.tablebox01 .table01:nth-child(1) {
  border-radius: 2rem 0 0 2rem;
  border-right: none;
}
@media screen and (max-width: 1080px) {
  .tablebox.tablebox01 .table01:nth-child(1) {
    border-radius: 0;
  }
}
@media screen and (max-width: 1080px) {
  .tablebox.tablebox01 .table01:nth-child(1) tr th {
    border-radius: 2rem 2rem 0 0;
  }
}
@media screen and (max-width: 1080px) {
  .tablebox.tablebox01 .table01:nth-child(1) tr td {
    border-left: 4px solid #08A222;
    border-right: 4px solid #08A222;
  }
}
.tablebox.tablebox01 .table01:nth-child(2) {
  border-collapse: collapse;
  border-left: none;
  border-right: none;
}
.tablebox.tablebox01 .table01:nth-child(2) tr th {
  border-right: 2px solid #fff;
  border-left: 2px solid #fff;
}
@media screen and (max-width: 1080px) {
  .tablebox.tablebox01 .table01:nth-child(2) tr th {
    border-left: none;
    border-right: none;
  }
}
.tablebox.tablebox01 .table01:nth-child(2) tr td {
  border-left: 2px solid #08A222;
  border-right: 2px solid #08A222;
}
@media screen and (max-width: 1080px) {
  .tablebox.tablebox01 .table01:nth-child(2) tr td {
    border-left: 4px solid #08A222;
    border-right: 4px solid #08A222;
  }
}
.tablebox.tablebox01 .table01:last-child {
  border-radius: 0 2rem 2rem 0;
  border-left: none;
}
@media screen and (max-width: 1080px) {
  .tablebox.tablebox01 .table01:last-child {
    border-radius: 0;
  }
}
@media screen and (max-width: 1080px) {
  .tablebox.tablebox01 .table01:last-child tr td {
    border-left: 4px solid #08A222;
    border-right: 4px solid #08A222;
  }
}
@media screen and (max-width: 1080px) {
  .tablebox.tablebox01 .table01:last-child tr:last-child td {
    border-radius: 0 0 2rem 2rem;
    border-bottom: 4px solid #08A222;
  }
}
.tablebox.tablebox02 .table02 tr th {
  border-bottom: 2px solid #fff;
}
.tablebox.tablebox02 .table02 tr td {
  border-bottom: 2px solid #08A222;
  border-right: 2px solid #08A222;
}
@media screen and (max-width: 1080px) {
  .tablebox.tablebox02 .table02 tr td {
    border-right: none;
  }
}
.tablebox.tablebox02 .table02 tr td:last-child {
  border-right: none;
}
.tablebox.tablebox02 .table02 tr:last-child th {
  border-bottom: none;
}
.tablebox.tablebox02 .table02 tr:last-child td {
  border-bottom: none;
}
@media screen and (max-width: 1080px) {
  .tablebox.tablebox02 .table02 tr:last-child td {
    border-bottom: 2px solid #08A222;
  }
  .tablebox.tablebox02 .table02 tr:last-child td:last-child {
    border-bottom: none;
  }
}
@media screen and (max-width: 1280px) {
  .tablebox.tablebox03 {
    overflow-x: scroll;
  }
}
.tablebox.tablebox03 .table03 {
  min-width: 1080px;
}
.tablebox.tablebox03 .table03 tr .td_red {
  background-color: #FFE6E6;
  color: #FE0202;
}
.tablebox.tablebox03 .table03 tr .td_gre {
  background-color: #DCF0DC;
  color: #08A222;
}
@media screen and (max-width: 1080px) {
  .tablebox.tablebox03 .table03 tr th, .tablebox.tablebox03 .table03 tr td {
    display: table-cell;
    width: unset;
  }
}
.tablebox.tablebox03 .table03 tr th {
  border-bottom: 2px solid #fff;
  vertical-align: middle;
}
.tablebox.tablebox03 .table03 tr td {
  background-color: #fff;
  border-bottom: 2px solid #08A222;
  border-right: 2px solid #08A222;
}
.tablebox.tablebox03 .table03 tr td:last-child {
  border-right: none;
}
@media screen and (max-width: 580px) {
  .tablebox.tablebox03 .table03 tr:nth-child(1) th {
    text-align: left;
    padding-left: 4em;
  }
}
.tablebox.tablebox03 .table03 tr:last-child th {
  border-bottom: none;
}
.tablebox.tablebox03 .table03 tr:last-child td {
  border-bottom: none;
}
.tablebox.tablebox03 .table03 tr:last-child td:last-child {
  border-radius: 0 0 1.5rem 0;
}

.flexbox {
  display: flex;
  align-items: center;
  gap: 7rem;
  border-radius: 2rem;
  margin-bottom: 8rem;
}
@media screen and (max-width: 1320px) {
  .flexbox {
    gap: 4rem;
  }
}
@media screen and (max-width: 1080px) {
  .flexbox {
    flex-direction: column;
  }
}
.flexbox .left {
  width: 28rem;
}
@media screen and (max-width: 1320px) {
  .flexbox .left {
    width: 23rem;
  }
}
.flexbox .left a {
  width: 100%;
}
.flexbox .left a img {
  transition: all 0.3s;
}
.flexbox .left a:hover img {
  transform: rotate(-5deg);
}
.flexbox .right {
  width: calc(100% - 28rem - 7rem);
  padding: 3rem;
  background-color: #0274CA;
  border-radius: 2rem;
}
@media screen and (max-width: 1320px) {
  .flexbox .right {
    width: calc(100% - 23rem - 4rem);
  }
}
@media screen and (max-width: 1080px) {
  .flexbox .right {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .flexbox .right {
    padding: 1rem;
  }
}
.flexbox .right .box {
  display: flex;
  align-items: end;
  gap: 3rem;
}
@media screen and (max-width: 1320px) {
  .flexbox .right .box {
    gap: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .flexbox .right .box {
    flex-direction: column;
    align-items: center;
  }
}
.flexbox .right .box .inleft {
  font-size: 5.3rem;
  font-weight: 900;
  color: #fff;
  padding-bottom: 1rem;
  border-bottom: 1px solid #fff;
  position: relative;
  width: 14.5rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .flexbox .right .box .inleft {
    font-size: 3.5rem;
  }
}
.flexbox .right .box .inleft .chara {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -100%);
  width: 8.8rem;
  aspect-ratio: 88/187;
}
@media screen and (max-width: 768px) {
  .flexbox .right .box .inleft .chara {
    top: unset;
    bottom: 0;
    left: unset;
    right: 0;
    transform: translate(100%, 0);
    width: 5.8rem;
  }
}
.flexbox .right .box .inright {
  width: calc(100% - 3rem - 14.5rem);
}
@media screen and (max-width: 1320px) {
  .flexbox .right .box .inright {
    width: calc(100% - 1.5rem - 14.5rem);
  }
}
@media screen and (max-width: 768px) {
  .flexbox .right .box .inright {
    width: 100%;
  }
}
.flexbox .right .box .inright ul {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}
@media screen and (max-width: 1320px) {
  .flexbox .right .box .inright ul {
    gap: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .flexbox .right .box .inright ul {
    gap: 1rem;
  }
}
.flexbox .right .box .inright ul li {
  width: calc((100% - 3rem) / 2);
  border-radius: 2rem;
  overflow: hidden;
}
.flexbox .right .box .inright ul li a {
  width: 100%;
  padding: 1rem;
  background-color: #fff;
  color: #0274CA;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.flexbox .right .box .inright ul li a img {
  width: 9.4rem;
  aspect-ratio: 1;
  transition: all 0.3s;
}
@media screen and (max-width: 1320px) {
  .flexbox .right .box .inright ul li a img {
    width: 6.4rem;
  }
}
@media screen and (max-width: 768px) {
  .flexbox .right .box .inright ul li a img {
    width: 4rem;
  }
}
@media screen and (max-width: 580px) {
  .flexbox .right .box .inright ul li a img {
    width: 2.8rem;
  }
}
.flexbox .right .box .inright ul li a p {
  font-size: 4rem;
  font-weight: 900;
}
@media screen and (max-width: 1320px) {
  .flexbox .right .box .inright ul li a p {
    font-size: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .flexbox .right .box .inright ul li a p {
    font-size: 2rem;
  }
}
@media screen and (max-width: 580px) {
  .flexbox .right .box .inright ul li a p {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1320px) {
  .flexbox .right .box .inright ul li a {
    width: 100%;
    gap: 1rem;
  }
}
.flexbox .right .box .inright ul li a:hover img {
  transform: scale(1.1);
}

.flex00 {
  display: flex;
  gap: 4rem;
  margin-bottom: 8rem;
}
@media screen and (max-width: 1080px) {
  .flex00 {
    flex-direction: column;
  }
}
.flex00 .left {
  width: 34rem;
}
@media screen and (max-width: 1080px) {
  .flex00 .left {
    margin-inline: auto;
  }
}
@media screen and (max-width: 580px) {
  .flex00 .left {
    width: 90%;
  }
}
.flex00 .left a {
  width: 100%;
  overflow: hidden;
}
.flex00 .left a img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all 0.3s;
}
.flex00 .left a:hover img {
  transform: scale(1.1);
}
.flex00 .right {
  width: calc(100% - 4rem - 34rem);
}
@media screen and (max-width: 1080px) {
  .flex00 .right {
    width: 100%;
  }
}

