@charset "UTF-8";

:root {
  --header_height: 110px;
  --color_bg: #F7F7F7;
  --color_text: #5b3838;
  --color_link: #333;
  --color_border: #D9D9D9;
  --color_primary: #54AF78;
  --color_secondary: #F47778;
  --color_white: #fff;
  --color_black: #000;
  --color_gray: #717171;
  --color_gray_light: #F7F7F7;
  --color_green_light: #E4F6E4;
  --color_green_dark: #3D7C56;
  --color_red_light: #FFE5E5;
  --font_base: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  --easing: cubic-bezier(.12, 1, .5, 1);
}

/*-----------------------------------------------------------
Reset
-----------------------------------------------------------*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: none;
  -moz-tab-size: 2;
  -o-tab-size: 2;
  tab-size: 2;
}

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeSpeed;
  min-block-size: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

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

:where(button) {
  all: unset;
}

:where(a, input, button, textarea, select) {
  touch-action: manipulation;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

textarea {
  resize: block;
}

:where(button, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:focus-visible) {
  outline: 2px solid #2e2c29;
  outline-offset: 2px;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(ul, ol, li) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg, video) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(em, dfn) {
  font-style: inherit;
}

sup {
  vertical-align: text-top;
  font-size: 0.65em;
  line-height: 1;
}

sub {
  vertical-align: text-bottom;
  font-size: 0.65em;
  line-height: 1;
}

hr {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

::selection {
  background: #d4dcd6;
}

/*-----------------------------------------------------------
Bace
-----------------------------------------------------------*/
body {
  background-color: var(--color_bg);
  display: flex;
  flex-direction: column;
  font-family: var(--font_base);
  color: var(--color_text);
  font-size: 1.6rem;
  line-height: 1.875;
  letter-spacing: 0.1em;
  padding-top: var(--header_height);
}

@media (max-width: 800px) {
  body {
    padding-top: 60px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  letter-spacing: 0.15em;
}

th,
dt {
  font-weight: 500;
}

.link {
  color: var(--color_primary);
  display: inline-block;
  text-decoration: underline;
  word-break: break-all;
  position: relative;
  text-wrap: pretty;
}

.link[target=_blank]::after {
  content: "";
  display: inline-block;
  background: url(../images/share/icon_out.svg) no-repeat center/contain;
  width: 12px;
  height: 10px;
  margin-left: 5px;
}

.link:is(:hover, :focus) {
  text-decoration: none;
}

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

a[href^=tel] {
  cursor: default;
}

:target {
  scroll-margin-top: 100px;
}

@media (max-width: 800px) {
  :target {
    scroll-margin-top: 60px;
  }
}

.container {
  margin: 0 auto;
  max-width: 1024px;
  width: 90%;
}

.container.wide {
  max-width: 1200px;
}

.container.narrow {
  max-width: 1024px;
}

/*-----------------------------------------------------------
Header
-----------------------------------------------------------*/
.header {
  background-color: var(--color_white);
  border-bottom: 10px solid var(--color_primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-gap: 2.5rem;
  position: fixed;
  top: 0;
  width: 100%;
  height: 110px;
  padding-left: 2.5rem;
  z-index: 100;
}

.header:has(.menu-btn.is-open) {
  border-color: var(--color_green_dark);
}

.h-utility {
  display: flex;
  align-items: center;
  line-height: 1.2;
}

.h-counter {
  font-weight: bold;
  font-size: 1.5rem;
  text-align: right;
  margin-right: 3rem;
}

.h-counter .number {
  color: var(--color_secondary);
  font-size: 3.2rem;
  margin: 0 0.5rem;
}

.h-contact {
  background-color: var(--color_red_light);
  display: grid;
  place-content: center;
  aspect-ratio: 1/1;
  width: 100px;
  height: 100px;
}

.menu-btn {
  box-sizing: content-box;
  background: url(../images/share/icon_search.svg) no-repeat center/32px;
  background-color: var(--color_primary);
  display: grid;
  place-content: center;
  aspect-ratio: 1/1;
  width: 100px;
  height: 100px;
  transition: background-color 0.3s;
}

.menu-btn.is-open {
  background: url(../images/share/icon_close.svg) no-repeat center/32px;
  background-color: var(--color_green_dark);
}

html.is-open {
  height: 100%;
  overflow: hidden;
}

@media (max-width: 800px) {
  .header {
    border-bottom: 1px solid var(--color_primary);
    grid-gap: 1.5rem;
    padding-left: 1.5rem;
    height: 60px;
  }

  .h-utility {
    display: flex;
    align-items: center;
    line-height: 1.2;
  }

  .h-counter {
    border-top: 1px solid var(--color_border);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color_white);
    text-align: center;
    font-size: 1.1rem;
    padding: 1rem 0;
    margin: 0;
  }

  .h-counter .number {
    font-size: 2.5rem;
  }

  .h-contact {
    width: 60px;
    height: 59px;
  }

  .h-contact img {
    width: 20px;
  }

  .menu-btn {
    background-size: 20px;
    width: 60px;
    height: 60px;
  }

  .menu-btn.is-open {
    background-size: 20px;
  }
}

/*------------
Gnavi
--------------*/
/*drawer*/
.gnavi-drawer {
  pointer-events: none;
  background-color: var(--color_green_dark);
  position: fixed;
  inset: var(--header_height) 0 0 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.5s;
  will-change: opacity;
}

.gnavi-drawer.is-open {
  opacity: 1;
  pointer-events: all;
}

.gnavi-drawer-container {
  display: grid;
  align-items: center;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  padding: 50px 0 100px;
}

@media (max-width: 800px) {
  .gnavi-drawer {
    inset: 60px 0 0 0;
  }
}

/*-----------------------------------------------------------
Hero
-----------------------------------------------------------*/
.hero {
  display: grid;
  place-content: center;
  background-color: var(--color_green_light);
  position: relative;
  padding: 3rem 0;
  overflow: hidden;
}

.hero-img {
  min-width: 1699px;
}

@media (max-width: 800px) {
  .hero-img {
    min-width: 100%;
  }
}

/*-----------------------------------------------------------
Top
-----------------------------------------------------------*/
/*------------
Common
--------------*/
.t-ttl {
  text-align: center;
  margin-bottom: 50px;
}

@media (max-width: 800px) {
  .t-ttl {
    margin-bottom: 30px;
  }
}

/*------------
Block
--------------*/
.sec01 {
  margin-bottom: 10rem;
}

.sec01 .job-search {
  margin-top: -10rem;
  position: relative;
}

@media (max-width: 800px) {
  .sec01 {
    margin-bottom: 5rem;
  }

  .sec01 .job-search {
    margin-top: -5rem;
  }
}

.job-search {
  background-color: var(--color_white);
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 4rem 5rem 5rem;
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

@media (max-width: 800px) {
  .job-search {
    padding: 2rem 1.5rem 2.5rem;
  }
}

.job-search-ttl {
  font-family: var(--font_base);
  font-size: 2.6rem;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 2rem;
}

@media (max-width: 800px) {
  .job-search-ttl {
    font-size: 2rem;
  }
}

.job-search-form>.item {
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: flex-start;
  border-bottom: 1px solid var(--color_border);
  padding: 3.5rem 1.5rem;
  line-height: 1.5;
}

.job-search-form>.item:first-child {
  border-top: 1px solid var(--color_border);
}

.job-search-form .form-item-ttl {
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  color: #717171;
  font-weight: bold;
  align-items: center;
  gap: 2rem;
  margin-top: 0.5rem;
}

.job-search-form .form-item-ttl img {
  margin-bottom: 0.5rem;
}

@media (max-width: 800px) {
  .job-search-form>.item {
    grid-template-columns: 1fr;
    padding: 1.5rem 0;
  }

  .job-search-form .form-item-ttl {
    grid-template-columns: 2.5rem 1fr;
    gap: 1rem;
    margin-top: 0;
    margin-bottom: 1rem;
  }
}

.input-check-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
}

.input-check-list label {
  display: block;
  border: 2px solid var(--color_border);
  border-radius: 100vmax;
  padding: 0.8rem 1.5rem;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1;
}

.input-check-list input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

/* チェックされている場合のlabelスタイル */
.input-check-list label:has(input[type=checkbox]:checked) {
  background-color: var(--color_primary);
  color: var(--color_white);
  border-color: var(--color_primary);
}

/* フォーカス時のlabelスタイル */
.input-check-list label:has(input[type=checkbox]:focus-visible) {
  border-color: var(--color_primary);
  outline: none;
}

@media (any-hover: hover) {

  /* ホバー時のlabelスタイル */
  .input-check-list label:has(input[type=checkbox]:hover) {
    border-color: var(--color_primary);
    outline: none;
  }
}


@media (max-width: 800px) {
  .input-check-list {
    gap: 0.5rem;
  }

  .input-check-list label {
    padding: 0.6rem 1rem;
    font-size: 1.2rem;
  }
}

.input-place-list {
  display: grid;
  gap: 1rem;
}

.input-place-list .item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 2rem;
}

.input-place-list .item dt {
  color: var(--color_green_dark);
  font-weight: bold;
  padding-top: 0.5rem;
}

@media (max-width: 800px) {
  .input-place-list .item {
    grid-template-columns: 55px 1fr;
    gap: 0.5rem;
  }

  .input-place-list .item dt {
    font-size: 1.5rem;
    padding-top: 0.1rem;
  }
}

.input-freeword {
  border: 2px solid var(--color_border);
  background-color: var(--color_gray_light);
  border-radius: 6px;
  padding: 1rem 1.5rem;
  width: 100%;
  line-height: 1.5;
  color: var(--color_gray);
}

.job-search-accordion {
  background-color: var(--color_white);
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 2.5rem 5rem;
  margin: -5rem auto 5rem;
}

.job-search-accordion summary {
  display: grid;
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  position: relative;
  transition: 0.2s;
}

.job-search-accordion summary::after {
  content: "";
  background-color: var(--color_secondary);
  mask: url(../images/share/icon_open.svg) no-repeat center center/contain;
  width: 28px;
  height: 28px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s;
}

.job-search-accordion[open] summary::after {
  background-color: var(--color_gray);
  transform: translateY(-50%) rotate(45deg);
}

.job-search-accordion form {
  padding-top: 3rem;
}

@media (max-width: 800px) {
  .job-search-accordion {
    padding: 1.5rem;
    margin: -3.5rem auto 5rem;
  }

  .job-search-accordion summary {
    font-size: 2rem;
  }

  .job-search-accordion summary::after {
    width: 20px;
    height: 20px;
  }

  .job-search-accordion form {
    padding-top: 3rem;
    padding-bottom: 2.5rem;
  }
}

.btn-search {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background-color: var(--color_secondary);
  border: 2px solid var(--color_secondary);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  color: var(--color_white);
  border-radius: 10px;
  font-size: 2rem;
  padding: 1.5rem 4rem;
  line-height: 1;
  font-weight: bold;
  position: relative;
  width: fit-content;
  margin: 3.5rem auto 0;
  transition: background-color 0.3s;
}

.btn-search::before {
  content: "";
  background-color: var(--color_white);
  mask: url(../images/share/icon_search.svg) no-repeat center center/contain;
  width: 22px;
  height: 22px;
}

@media (any-hover: hover) {
  .btn-search:hover {
    background-color: var(--color_white);
    color: var(--color_secondary);
  }

  .btn-search:hover::before {
    background-color: var(--color_secondary);
  }
}

@media (max-width: 800px) {
  .btn-search {
    font-size: 1.8rem;
    margin-top: 2.5rem;
  }
}

.sec02 {
  padding-bottom: 10rem;
  overflow: hidden;
}

@media (max-width: 800px) {
  .sec02 {
    padding-bottom: 5rem;
  }
}

.top-job-slider {
  margin-bottom: 5rem;
}

.top-job-slider .slider-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 4rem;
}

.top-job-slider .splide {
  margin: 0 auto;
}

.top-job-slider .splide__track {
  overflow: visible;
}

.top-job-slider .splide__slide:not(.is-visible) .slide {
  pointer-events: none;
  opacity: 0.3;
}

@media (max-width: 800px) {
  .top-job-slider {
    margin-bottom: 5rem;
  }

  .top-job-slider .slider-header {
    gap: 1rem;
    margin-bottom: 2.5rem;
  }

  .top-job-slider .splide__arrows {
    display: none;
  }
}

.select-place-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.select-place-wrap p {
  color: var(--color_gray);
  font-size: 1.8rem;
  font-weight: bold;
}

@media (max-width: 800px) {
  .select-place-wrap p {
    font-size: 1.5rem;
  }
}

.select-place {
  all: unset;
  color: var(--color_green_dark);
  background: url(../images/share/icon_place.svg) no-repeat center left 20px/33px auto, url(../images/share/icon_arrow_down.svg) no-repeat center right 20px/20px auto, var(--color_white);
  display: inline-block;
  border-radius: 6px;
  font-size: 1.8rem;
  font-weight: bold;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 1rem 10rem 1rem 6.5rem;
  cursor: pointer;
  position: relative;
}

@media (max-width: 800px) {
  .select-place {
    background: url(../images/share/icon_place.svg) no-repeat center left 15px/30px auto, url(../images/share/icon_arrow_down.svg) no-repeat center right 20px/18px auto, var(--color_white);
    font-size: 1.6rem;
    padding: 1rem 6rem 1rem 5.5rem;
  }
}

.job-post-item a {
  background-color: var(--color_white);
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 3rem 3rem 8rem;
  display: block;
  overflow: hidden;
  height: 100%;
  position: relative;
}

.job-post-item .item-ttl {
  font-size: 1.8rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.job-post-item .item-img {
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.job-post-item .item-img img {
  aspect-ratio: 21/16;
  object-fit: cover;
  transition: transform 0.3s;
  width: 100%;
}

.job-post-item .job {
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.job-post-item .address {
  line-height: 1.7;
}

.job-post-item .item-data {
  display: grid;
  grid-template-columns: 100px 1fr;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.job-post-item .item-data dt {
  display: grid;
  align-items: center;
  background-color: var(--color_primary);
  color: var(--color_white);
  font-size: 1.3rem;
  font-weight: bold;
  padding: 0.5rem 1rem;
}

.job-post-item .item-data .station {
  background: var(--color_primary) url(../images/share/icon_train.svg) no-repeat center left 1rem/13px auto;
  padding-left: 3rem;
}

.job-post-item .item-data dd {
  border: 1px solid var(--color_border);
  border-width: 1px 1px 1px 0;
  padding: 0.5rem 1rem;
  font-size: 1.5rem;
}

.job-post-item .item-btn {
  background-color: var(--color_primary);
  color: var(--color_white);
  font-weight: bold;
  text-align: center;
  padding: 1rem 2rem;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transition: 0.3s;
}

.job-post-item .item-btn::after {
  content: "";
  width: 1rem;
  height: 1rem;
  border: solid var(--color_white);
  border-width: 3px 3px 0 0;
  position: absolute;
  right: 1.7rem;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

@media (any-hover: hover) {
  .job-post-item a:hover .item-img img {
    transform: scale(1.1);
  }

  .job-post-item a:hover .item-btn {
    background-color: var(--color_green_dark);
  }
}

@media (max-width: 800px) {
  .job-post-item a {
    padding: 1.5rem 1.5rem 7rem;
  }

  .job-post-item .address {
    font-size: 1.4rem;
  }

  .job-post-item .item-data dd {
    font-size: 1.4rem;
  }
}

.job-post-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.5rem 3.8rem;
  margin-bottom: 7rem;
}

@media (max-width: 800px) {
  .job-post-list {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 5rem;
  }
}

/*-----------------------------------------------------------
下層レイアウト
-----------------------------------------------------------*/
.btn-back {
  background-color: var(--color_green_light);
  padding: 2rem 2.5rem;
  line-height: 1;
}

.btn-back a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color_gray);
  font-size: 1.6rem;
  font-weight: bold;
  transition: color 0.3s;
}

.btn-back a::before {
  content: "";
  background: url(../images/share/icon_btn_back.svg) no-repeat center/contain;
  width: 25px;
  height: 25px;
}

@media (hover: hover) {
  .btn-back a:hover {
    color: var(--color_secondary);
  }
}

@media (max-width: 800px) {
  .btn-back {
    padding: 1.5rem 1.5rem;
  }

  .btn-back a {
    gap: 10px;
    font-size: 1.3rem;
  }

  .btn-back a::before {
    width: 20px;
    height: 20px;
  }
}

.result-header {
  background-color: var(--color_green_light);
  padding: 4rem 2.5rem 10rem;
  line-height: 1;
  text-align: center;
}

.result-category-list {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.result-category-list li {
  background-color: var(--color_primary);
  color: var(--color_white);
  padding: 1rem 2rem;
  font-size: 1.4rem;
  font-weight: bold;
  border-radius: 100vmax;
}

.result-ttl {
  font-weight: bold;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.result-num {
  color: var(--color_secondary);
  font-size: 4rem;
  font-weight: bold;
  line-height: 1;
}

.result-num span {
  font-size: 1.8rem;
  margin-left: 0.5rem;
}

@media (max-width: 800px) {
  .result-header {
    padding: 4rem 2.5rem 10rem;
  }

  .result-category-list {
    gap: 5px;
    margin-bottom: 3rem;
  }

  .result-category-list li {
    padding: 0.8rem 2rem;
    font-size: 1.2rem;
  }
}

.page-ttl {
  color: var(--color_green_dark);
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 3rem;
}

.breadcrumb {
  position: relative;
  z-index: 1;
}

.breadcrumb ul {
  font-size: 1.4rem;
  padding: 0.5rem 2.5rem;
}

.breadcrumb ul li {
  display: inline;
}

.breadcrumb ul li+li:before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
  transform: rotate(45deg);
  margin: 0 12px 0 3px;
  vertical-align: 1px;
}

.u-contents {
  padding: 100px 0;
}

.u-contents p+p {
  margin-top: 1.5em;
}

:has(.job-search-accordion) .u-contents {
  padding: 0 0 100px;
}

@media (max-width: 800px) {
  .u-contents {
    padding: 50px 0;
  }

  :has(.job-search-accordion) .u-contents {
    padding: 0 0 50px;
  }
}

.u-h2 {
  border-radius: 5px;
  background-color: var(--color_primary);
  color: var(--color_white);
  font-size: 1.8rem;
  padding: 1rem 2.5rem;
  margin-bottom: 30px;
}

.u-h3 {
  border-bottom: 1px solid var(--color_border);
  color: var(--color_green_dark);
  font-size: 1.8rem;
  margin-bottom: 15px;
  padding-bottom: 10px;
}

.u-h4 {
  margin-bottom: 15px;
}

@media (max-width: 800px) {
  .u-h2 {
    margin-bottom: 30px;
  }

  .u-h3 {
    margin-bottom: 20px;
  }

  .u-h4 {
    padding-left: 20px;
  }
}

.tall+.tall {
  margin-top: 120px;
}

.short+.short {
  margin-top: 60px;
}

.x-short+.x-short {
  margin-top: 30px;
}

.hidden {
  overflow: hidden;
}

@media (max-width: 800px) {
  .tall+.tall {
    margin-top: 60px;
  }

  .short+.short {
    margin-top: 50px;
  }
}

.list-disc {
  display: grid;
  grid-gap: 10px;
}

.list-disc li {
  list-style: disc;
  margin-left: 1.5em;
  line-height: 1.5;
}

.list-disc li::marker {
  color: var(--color_secondary);
  font-size: 1.5rem;
}

.list-check {
  display: grid;
  grid-gap: 5px;
}

.list-check li {
  font-weight: bold;
  position: relative;
  padding-left: 30px;
}

.list-check li::before {
  content: "";
  background: url(../images/share/icon_check.svg) no-repeat center/contain;
  position: absolute;
  top: 4px;
  left: 0;
  width: 18px;
  height: 18px;
}

.list-num {
  counter-reset: number;
  display: grid;
  grid-gap: 10px;
}

.list-num>li {
  position: relative;
  padding-left: 30px;
}

.list-num>li:before {
  color: var(--color_green_dark);
  counter-increment: number;
  content: counter(number) ".";
  font-weight: bold;
  position: absolute;
  top: -2px;
  left: 0;
}

.list-num02 {
  display: grid;
  grid-gap: 10px;
}

.list-num02>li {
  counter-increment: item;
  position: relative;
  padding-left: 50px;
}

.list-num02>li:before {
  color: var(--color_green_dark);
  counter-increment: number;
  content: attr(data-num) "-" counter(item) ". ";
  font-weight: bold;
  position: absolute;
  top: -2px;
  left: 0;
}


.table-scroll-txt {
  display: none;
}

@media (max-width: 800px) {
  .table-scroll-txt {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }

  .table-scroll-txt::before {
    content: "";
    display: block;
    background: url(../images/share/icon_scroll.svg) no-repeat center/contain;
    width: 30px;
    height: 24.5px;
    margin-right: 10px;
  }

  .table-scroll {
    overflow-x: scroll;
    overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
  }

  .table-scroll::-webkit-scrollbar {
    height: 5px;
  }

  .table-scroll::-webkit-scrollbar-track {
    border-radius: 5px;
    background: #f5f6f8;
  }

  .table-scroll::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #333;
  }

  .table-scroll table {
    margin-bottom: 10px !important;
    width: 150%;
  }
}

.box-style01 {
  background-color: var(--color_white);
  border-radius: 20px;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.07);
  padding: 3.5rem;
}

@media (max-width: 800px) {
  .box-style01 {
    padding: 2.5rem;
  }
}

.youtube {
  width: 100%;
  aspect-ratio: 16/9;
}

.youtube iframe {
  width: 100%;
  height: 100%;
}

.google-map iframe {
  vertical-align: bottom;
  width: 100%;
  height: 450px;
}

@media (max-width: 800px) {
  .google-map iframe {
    height: 300px;
  }
}

/*------------
レイアウト
--------------*/
.l-imgR,
.l-imgL {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5%;
}

.l-imgR .l-img,
.l-imgL .l-img {
  width: 40%;
}

.l-imgR .l-img.small,
.l-imgL .l-img.small {
  width: 30%;
}

.l-imgR .l-desc,
.l-imgL .l-desc {
  flex: 1;
}

.l-imgR {
  flex-direction: row-reverse;
}

.fl-wrap {
  display: flow-root;
}

.fl-imgR,
.fl-imgL {
  width: 40%;
}

.fl-imgR.small,
.fl-imgL.small {
  width: 30%;
}

.fl-imgR {
  float: right;
  margin: 0 0 15px 35px;
}

.fl-imgL {
  float: left;
  margin: 0 35px 15px 0;
}

@media (max-width: 800px) {

  .l-imgR,
  .l-imgL {
    flex-direction: column;
    gap: 15px;
  }

  .l-imgR .l-img,
  .l-imgL .l-img {
    text-align: center;
    width: 100%;
  }

  .l-imgR .l-img.small,
  .l-imgL .l-img.small {
    width: 100%;
  }

  .fl-imgR,
  .fl-imgL {
    float: none;
    margin: 0 0 15px;
    width: 100%;
  }

  .fl-imgR.small,
  .fl-imgL.small {
    width: 100%;
  }
}

/*------------
個人情報保護方針
--------------*/
.privacy-ttl {
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
}

.dl-privacy {
  display: grid;
  grid-gap: 3rem;
}

.dl-privacy dt {
  border-bottom: 1px solid var(--color_border);
  color: var(--color_green_dark);
  font-weight: bold;
  font-size: 1.8rem;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}

.list-privacy {
  display: grid;
  grid-gap: 2px;
  margin-top: 1.5rem;
}

.list-privacy li {
  position: relative;
  padding-left: 1.5rem;
}

.list-privacy li::before {
  content: "";
  background: #333;
  border-radius: 100vmax;
  display: block;
  position: absolute;
  left: 0;
  top: 1.3rem;
  width: 0.5rem;
  height: 0.5rem;
}

@media (max-width: 800px) {
  .dl-privacy {
    font-size: 1.5rem;
    line-height: 1.7;
  }
}

/*------------
Add
--------------*/
.faq-style {
  display: grid;
  gap: 3rem;
}

.faq-style .item {
  border-bottom: 1px solid var(--color_border);
  padding-bottom: 3rem;
}

.faq-style dt {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.faq-style dt::before {
  content: "";
  background: url(../images/share/icon_q.svg) no-repeat left center/contain;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
}

.faq-style dd {
  display: flex;
  gap: 1.5rem;
}

.faq-style dd::before {
  content: "";
  background: url(../images/share/icon_a.svg) no-repeat left center/contain;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
}

@media (max-width: 800px) {
  .faq-style {
    gap: 3rem;
  }

  .faq-style .item {
    border-bottom: 1px solid var(--color_border);
    padding-bottom: 3rem;
  }

  .faq-style dt {
    gap: 1.5rem;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
  }

  .faq-style dt::before {
    width: 35px;
    height: 35px;
    flex: 0 0 35px;
  }

  .faq-style dd {
    font-size: 1.5rem;
  }

  .faq-style dd::before {
    width: 35px;
    height: 35px;
    flex: 0 0 35px;
  }
}

/*-----------------------------------------------------------
Footer
-----------------------------------------------------------*/
.footer {
  background-color: var(--color_primary);
  color: var(--color_white);
  margin-top: auto;
  position: relative;
  padding: 8rem 0 5rem;
}

@media (max-width: 800px) {
  .footer {
    padding: 5rem 0 8rem;
  }
}

.f-counter {
  border: 1px solid var(--color_white);
  border-radius: 20px;
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.5;
  padding: 1rem 10rem;
  text-align: center;
  width: fit-content;
  margin: 0 auto 4rem;
}

.f-counter .number {
  font-size: 4rem;
  margin: 0 0.5rem;
}

@media (max-width: 800px) {
  .f-counter {
    font-size: 1.8rem;
    line-height: 1.5;
    padding: 1rem 5rem;
    margin-bottom: 5rem;
  }

  .f-counter .number {
    font-size: 4rem;
  }
}

.f-logo {
  width: fit-content;
  margin: 0 auto 4rem;
}

.f-links {
  display: flex;
  justify-content: center;
  gap: 1rem 3.5rem;
  flex-wrap: wrap;
}

@media (any-hover: hover) {
  .f-links a:hover {
    text-decoration: underline;
  }
}

@media (max-width: 800px) {
  .f-links {
    gap: 0.5rem 2rem;
    font-size: 1.5rem;
  }
}

.copyright {
  text-align: center;
  margin-top: 4rem;
}

.pagetop {
  position: absolute;
  bottom: 100px;
  right: 50px;
  transition: transform 0.5s;
  z-index: 5;
}

.pagetop:hover {
  transform: translateY(-10px);
}

@media (max-width: 800px) {
  .pagetop {
    bottom: 130px;
    right: 20px;
  }
}

.fixed-menu {
  border-radius: 4px 0 0 4px;
  background: #37414f;
  color: #fff;
  display: flex;
  position: fixed;
  top: 50%;
  right: 0;
  transition: transform 0.5s;
  transform: translate(400px, -50%);
  z-index: 10;
}

.fixed-menu:hover {
  transform: translate(0, -50%);
}

.fixed-menu .ttl {
  border-radius: 5px 0 0 5px;
  display: flex;
  align-items: center;
  writing-mode: vertical-rl;
  line-height: 1;
  white-space: nowrap;
  font-feature-settings: normal;
  padding: 40px 0;
  width: 60px;
}

.fixed-menu .ttl i {
  margin-bottom: 15px;
}

.fixed-menu .inner {
  display: grid;
  place-items: center;
  padding: 15px;
  padding-left: 0;
  width: 400px;
}

.fixed-menu .txt {
  font-size: 13px;
  text-align: center;
}

.fixed-menu .wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
  margin: 15px 0;
}

.fixed-menu .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid #fff;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  padding: 10px;
  min-width: 170px;
  min-height: 50px;
  width: 100%;
}

.fixed-menu .btn img {
  margin-right: 10px;
}

.fixed-menu .btn .small {
  display: block;
  font-size: 10px;
  margin-top: 5px;
}

@media (max-width: 800px) {
  .fixed-menu {
    display: none;
  }
}

.sp-navi {
  display: none;
}

@media (max-width: 1024px) {
  .sp-navi {
    display: block;
  }

  .sp-navi-btns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
    box-shadow: 0 0 20px rgba(70, 70, 70, 0.2);
    background: #fff;
    font-weight: bold;
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 10px;
    width: 100%;
    height: 70px;
    z-index: 10;
  }

  .sp-navi-btns a {
    background: var(--color_primary);
    color: #fff;
    position: relative;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 14px;
    line-height: 1;
    padding: 8px;
  }

  .sp-navi-btns a img {
    margin-right: 10px;
  }

  .sp-menu-btn {
    cursor: pointer;
    position: fixed;
    top: 23px;
    right: 20px;
    width: 30px;
    height: 15px;
    z-index: 1010;
  }

  .sp-menu-btn::before {
    content: "MENU";
    color: var(--color_primary);
    letter-spacing: 0.05em;
    position: absolute;
    top: 50%;
    left: -50px;
    transform: translateY(-50%);
  }

  .sp-menu-btn span {
    background: var(--color_primary);
    position: absolute;
    width: 30px;
    height: 2px;
    right: 0;
    transition: 0.3s;
    transform-origin: center center;
  }

  .sp-menu-btn span:nth-of-type(1) {
    top: 0;
  }

  .sp-menu-btn span:nth-of-type(2) {
    top: 6px;
  }

  .sp-menu-btn span:nth-of-type(3) {
    top: 12px;
  }

  .sp-menu-btn.is-open::before {
    content: "CLOSE";
    color: #fff;
  }

  .sp-menu-btn.is-open span {
    background-color: #fff;
  }

  .sp-menu-btn.is-open span:nth-of-type(1) {
    transform: rotate(45deg) translate(4.5px, 4.5px);
  }

  .sp-menu-btn.is-open span:nth-of-type(2) {
    opacity: 0;
  }

  .sp-menu-btn.is-open span:nth-of-type(3) {
    transform: rotate(-45deg) translate(4px, -4px);
    width: 30px;
  }

  .sp-logo {
    max-width: 150px;
    margin-bottom: 30px;
  }

  .sp-navi-contents {
    pointer-events: none;
    visibility: hidden;
    background: var(--color_primary);
    color: #fff;
    padding: 50px 30px 100px;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: 0.5s;
    transform: translateX(60px);
    transition: 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
    opacity: 0;
    z-index: 1000;
  }

  .sp-navi-contents.is-open {
    pointer-events: auto;
    visibility: visible;
    overflow-y: auto;
    transform: translateX(0);
    opacity: 1;
    transition-timing-function: cubic-bezier(0.17, 0.84, 0.44, 1);
  }

  .sp-navi-list {
    margin: 0 0 50px;
  }

  .sp-navi-list>li {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .sp-navi-list>li>a {
    display: block;
    background: url(../images/share/sp_navi_arrow.svg) no-repeat center right 15px/13px auto;
    padding: 10px 0;
  }

  .sp-navi-list .sp-dropdown {
    position: relative;
  }

  .sp-navi-list .sp-dropdown::after {
    content: "";
    background-color: rgba(255, 255, 255, 0.5);
    position: absolute;
    top: 15px;
    right: 40px;
    width: 1px;
    height: 17px;
  }

  .sp-navi-list .sp-dropdown-btn .ttl {
    display: block;
    padding: 10px 0;
  }

  .sp-navi-list .sp-dropdown-plus {
    background: url(../images/share/sp_navi_plus.svg) no-repeat center/11px;
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 47px;
    transition: 0.3s;
  }

  .sp-navi-list .is-on .sp-dropdown-plus {
    transform: rotate(45deg);
    transform-origin: center;
  }

  .sp-navi-list .sub-menu {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
    padding: 0 0 15px;
  }

  .sp-navi-list .sub-menu li+li {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .sp-navi-list .sub-menu a {
    display: block;
    background: url(../images/share/sp_navi_arrow.svg) no-repeat center right 15px/13px auto;
    padding: 5px 0;
  }

  .sp-information {
    background-color: #fff;
    color: #333;
    border-radius: 5px;
    padding: 20px 10px;
    line-height: 1.5;
    display: grid;
    gap: 10px;
  }

  .sp-information .item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 20px;
    align-items: center;
  }

  .sp-information dt {
    border-right: 1px solid #BFE0D4;
    color: var(--color_primary);
    font-weight: bold;
    padding-right: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
  }

  .sp-information dt img {
    object-fit: contain;
    width: 25px;
    height: 25px;
  }

  .sp-information a {
    display: inline-block;
  }
}

/*-----------------------------------------------------------
投稿
-----------------------------------------------------------*/
.category-ttl {
  margin-bottom: 15px;
}

.post-ttl {
  color: var(--color_green_dark);
  font-size: 2.4rem;
  margin-bottom: 20px;
}

/*詳細ページ*/
.single-post-layout {
  border-bottom: 1px solid #eee;
  padding-bottom: 50px;
  margin-bottom: 50px;
  max-width: 800px;
  width: 90%;
  margin: 0 auto 50px;
}

.single-post-layout .l-ttl {
  border-bottom: 3px solid #eee;
  font-size: 2rem;
  padding-bottom: 20px;
  margin-bottom: 50px;
}

.single-post-layout .post-data {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.single-post-layout .post-data time {
  display: inline-block;
  color: #98918c;
  font-size: 1.2rem;
  margin-right: 20px;
}

.single-post-layout .post-data .category {
  display: inline-block;
  background-color: var(--color_primary);
  border: 1px solid #fff;
  color: #fff;
  font-size: 1.1rem;
  padding: 0 5px;
  margin-right: 10px;
}

/*ページャー*/
.post-number {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color_white);
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 2.5rem;
}

.post-number .prev,
.post-number .next {
  background-color: var(--color_primary);
  border: 2px solid var(--color_primary);
  border-radius: 100vmax;
  width: 44px;
  height: 44px;
  position: relative;
  transition: 0.3s;
}

.post-number .prev::before,
.post-number .next::before {
  content: "";
  width: 1rem;
  height: 1rem;
  border: solid var(--color_white);
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}


.post-number span.prev,
.post-number span.next {
  border-color: var(--color_border);
  background-color: #FFF;
}

.post-number span.prev::before,
.post-number span.next::before {
  border-color: var(--color_border);
}

@media (any-hover: hover) {

  .post-number a.prev:focus-visible,
  .post-number a.next:focus-visible,
  .post-number a.prev:hover,
  .post-number a.next:hover {
    background-color: var(--color_white);
    color: var(--color_primary);
  }

  .post-number a.prev:focus-visible::before,
  .post-number a.next:focus-visible::before,
  .post-number a.prev:hover::before,
  .post-number a.next:hover::before {
    border-color: var(--color_primary);
  }
}

.post-number .prev {
  margin-right: auto;
}

.post-number .prev::before {
  border-width: 3px 0 0 3px;
  transform: translate(-50%, -50%) rotate(-45deg);
  left: 52%;
}

.post-number .next {
  margin-left: auto;
}

.post-number .next::before {
  border-width: 3px 3px 0 0;
  transform: translate(-50%, -50%) rotate(45deg);
  left: 48%;
}

@media (max-width: 800px) {
  .post-number {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    padding: 1.5rem;
  }

  .post-number .prev,
  .post-number .next {
    width: 35px;
    height: 35px;
  }
}

.post-number-list {
  display: flex;
  align-items: center;
  gap: 20px;
}

.post-number-list span,
.post-number-list a {
  display: inline-block;
  color: var(--color_green_dark);
  border-radius: 100vmax;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0;
  min-width: 30px;
  height: 30px;
  transition: 0.3s;
}

@media (any-hover: hover) {

  .post-number-list a:focus-visible,
  .post-number-list a:hover {
    background: var(--color_primary);
    color: var(--color_white);
  }
}

.post-number-list .current {
  background: var(--color_primary);
  color: var(--color_white);
}

@media (max-width: 800px) {
  .post-number-list {
    gap: 10px;
  }
}

.post-number-single {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-top: 50px;
}

.post-number-single a {
  display: inline-block;
}

.post-number-single .all {
  background: var(--color_primary);
  border: 1px solid var(--color_primary);
  color: #fff;
  font-size: 13px;
  line-height: 28px;
  max-width: 200px;
  margin: 0 10px;
  height: 30px;
  width: 100%;
}

.post-number-single .all:hover {
  background: #fff;
  color: var(--color_primary);
}

.post-number-single .prev,
.post-number-single .next {
  border: 1px solid var(--color_primary);
  width: 30px;
  height: 30px;
  position: relative;
}

.post-number-single .prev::before,
.post-number-single .next::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  border-bottom: 1px solid var(--color_primary);
  margin: 0 auto;
  top: 12px;
}

.post-number-single .prev:hover,
.post-number-single .next:hover {
  background: var(--color_primary);
}

.post-number-single .prev:hover::before,
.post-number-single .next:hover::before {
  border-color: #fff;
}

.post-number-single .prev::before {
  transform: rotate(-135deg);
  left: 13px;
  border-left: 1px solid var(--color_primary);
}

.post-number-single .next::before {
  transform: rotate(135deg);
  right: 13px;
  border-right: 1px solid var(--color_primary);
}

@media (max-width: 800px) {

  /*詳細ページ*/
  .single-post-layout .l-ttl {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}

/*投稿本文用CSS*/
.postdata {
  overflow-wrap: break-word;
}

.postdata .screen-reader-text {
  border: 0;
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.postdata .screen-reader-text:focus {
  background-color: #eee;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

.postdata iframe {
  max-width: 100%;
}

.postdata h2 {
  border-radius: 5px;
  background-color: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--primary-color);
  font-size: 1.8rem;
  padding: 1rem 2.5rem;
  margin-bottom: 30px;
}

.postdata h3 {
  border-bottom: 1px solid var(--wp--preset--color--border);
  color: var(--wp--preset--color--dark-green);
  font-size: 1.8rem;
  margin-bottom: 15px;
  padding-bottom: 10px;
}

.postdata h4 {
  font-size: 2rem;
  margin-top: 25px;
  margin-bottom: 15px;
}

@media (max-width: 800px) {
  .u-h2 {
    margin-bottom: 30px;
  }

  .u-h3 {
    margin-bottom: 20px;
  }

  .u-h4 {
    padding-left: 20px;
  }
}

.postdata p,
.postdata ul,
.postdata ol {
  margin-bottom: 15px;
}

.postdata a:not(.wp-block-button__link) {
  text-decoration: underline;
}

.postdata a:focus-visible {
  text-decoration: none;
}

.postdata strong {
  font-weight: bold;
}

.postdata em {
  font-style: italic;
}

.postdata ul li {
  position: relative;
  padding-left: 15px;
}

.postdata ul li:before {
  content: "";
  background: var(--wp--preset--color--border);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: 0;
  top: 1em;
  width: 5px;
  height: 5px;
}

.postdata ol {
  counter-reset: number;
}

.postdata ol li {
  padding-left: 30px;
  position: relative;
}

.postdata ol li::before {
  background-color: var(--wp--preset--color--primary);
  border-radius: 15px;
  color: #fff;
  counter-increment: number;
  content: counter(number);
  font-size: 1.1rem;
  position: absolute;
  top: 2px;
  left: 0;
  line-height: 20px;
  text-align: center;
  padding-left: 2px;
  width: 20px;
  height: 20px;
}

.postdata ol li>ol {
  counter-reset: number;
}

.postdata sub {
  font-size: 1.1rem;
  position: relative;
  bottom: -0.1em;
}

.postdata sup {
  font-size: 1.1rem;
  position: relative;
  top: -0.1em;
}

@media (any-hover: hover) {
  .postdata a:hover {
    text-decoration: none;
  }
}


/*-----------------------------------------------------------
Common
-----------------------------------------------------------*/
.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

hr {
  max-width: 1024px;
  margin: 50px auto;
}

.fade {
  transition: opacity 0.5s;
}

.fade:hover {
  opacity: 0.5;
}

.fs11 {
  font-size: 1.1rem;
}

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

.color-red {
  color: #F44336;
}

.marker {
  background: linear-gradient(transparent 50%, #80FF00 50%);
}

.notice {
  font-size: 1.3rem;
  text-indent: -1.8rem;
  padding-left: 1.8rem;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mbXS {
  margin-bottom: 0.5rem !important;
}

.mbS {
  margin-bottom: 1.5rem !important;
}

.mbM {
  margin-bottom: 3rem !important;
}

.mbL {
  margin-bottom: 6rem !important;
}

.mbXL {
  margin-bottom: 9rem !important;
}

.mt0 {
  margin-top: 0 !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

.tac {
  text-align: center;
}

.tac img {
  margin-inline: auto;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

.col2 {
  grid-template-columns: repeat(2, 1fr);
}

.col3 {
  grid-template-columns: repeat(3, 1fr);
}

.col4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 800px) {
  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }

  .sp-tac {
    text-align: center !important;
  }

  .sp-tar {
    text-align: right !important;
  }

  .sp-tal {
    text-align: left !important;
  }

  .mbL {
    margin-bottom: 3rem !important;
  }

  .mbXL {
    margin-bottom: 5rem !important;
  }

  .col2,
  .col3,
  .col4 {
    grid-template-columns: 1fr;
  }
}

/*ボタン*/
.btn-out {
  padding-right: 15px;
  position: relative;
}

.btn-out::before {
  content: "";
  background: url(../images/share/icon_out.svg) no-repeat center/contain;
  width: 12px;
  height: 10px;
  display: inline-block;
  position: absolute;
  top: 0.2em;
  right: 0;
}

.btn-out::after {
  content: "";
  transition: background-size 0.3s;
  background: linear-gradient(to top, currentColor 0px, currentColor 1.1px, transparent 1px) no-repeat right bottom;
  background-size: 0% auto;
  position: absolute;
  bottom: 0px;
  left: 0;
  height: 1px;
  width: 100%;
}

.btn-out:hover::after {
  background-position: left bottom;
  background-size: 100% auto;
}

.btn-more {
  background-color: var(--color_secondary);
  border: 2px solid var(--color_secondary);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  color: var(--color_white);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  min-height: 55px;
  min-width: 290px;
  padding: 15px 20px;
  transition: background-color 0.3s;
  line-height: 1.5;
  position: relative;
}

.btn-more::after {
  content: "";
  border-radius: 100vmax;
  border: 2px solid var(--color_secondary);
  background: url(../images/share/icon_btn_arrow.svg) no-repeat center/contain;
  width: 30px;
  height: 30px;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
}

@media (any-hover: hover) {
  .btn-more:hover {
    background-color: var(--color_white);
    color: var(--color_secondary);
  }
}

.btn-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.btn-wrap.center {
  justify-content: center;
}

@media (max-width: 800px) {
  .btn-more {
    font-size: 1.7rem;
    width: 100%;
  }
}

/*------------
splide
-------------*/
.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  backface-visibility: hidden;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized,
.splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }

  to {
    transform: rotate(1turn);
  }
}

.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.splide__track--fade>.splide__list>.splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade>.splide__list>.splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb>.splide__list {
  display: block;
}

.splide__arrows {
  display: flex;
  gap: 15px;
}

.splide__arrow {
  -ms-flex-align: center;
  align-items: center;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  background: var(--color_white);
  border: 0;
  border-radius: 100vmax;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  height: 45px;
  width: 45px;
  -ms-flex-pack: center;
  justify-content: center;
  transition: background-color 0.2s ease;
  z-index: 1;
}

.splide__arrow:hover {
  background-color: var(--color_primary);
}

.splide__arrow:hover::after,
.splide__arrow:hover::after {
  border-color: var(--color_white);
}

.splide__arrow--prev::after,
.splide__arrow--next::after {
  content: "";
  width: 1rem;
  height: 1rem;
  border: solid var(--color_gray);
  border-width: 3px 3px 0 0;
}

.splide__arrow--prev::after {
  margin-left: 0.4rem;
  transform: rotate(-135deg);
}

.splide__arrow--next::after {
  margin-right: 0.4rem;
  transform: rotate(45deg);
}

.splide__arrow:hover:not(:disabled) {
  opacity: 0.9;
}

.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__arrow--prev {
  left: 1em;
}

.splide__arrow--prev svg {
  transform: scaleX(-1);
}

.splide__arrow--next {
  right: 1em;
}

.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__pagination {
  gap: 10px;
  bottom: 0.5em;
  left: 0;
  position: absolute;
  right: 0;
  z-index: 1;
}

.splide__pagination__page {
  background: #fff;
  border: 1px solid var(--color_primary);
  border-radius: 2px;
  display: inline-block;
  padding: 0;
  position: relative;
  transition: transform 0.2s linear;
  height: 10px;
  width: 10px;
}

.splide__pagination__page.is-active {
  background: var(--color_primary);
  z-index: 1;
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}

.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__progress__bar {
  background: #ccc;
  height: 3px;
}

.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}

@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}

@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}

@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }

  .splide.is-focus-in .splide__track>.splide__list>.splide__slide:focus {
    border-color: #0bf;
  }
}

.splide__toggle {
  cursor: pointer;
}

.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__track--nav>.splide__list>.splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}

.splide__track--nav>.splide__list>.splide__slide.is-active {
  border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
  transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg);
}

.splide__pagination--ttb {
  bottom: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

.splide__toggle {
  cursor: pointer;
  background: #1D1D1D;
  border-radius: 8px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.2s ease;
  height: 45px;
  width: 45px;
}

.splide__toggle:hover {
  background: #D3D3D3;
}

.splide__toggle svg {
  fill: #fff;
  transition: fill 0.2s ease;
  width: 12px;
  height: auto;
}

.splide__toggle:focus-visible {
  outline: 3px solid var(--splide-focus-color);
  outline-offset: 3px;
}
