@charset "UTF-8";
/* =======================================
	このCSSファイルはSassにて生成されています。
	This file is created by Sass Files.
=========================================*/
/***
    The new CSS reset - version 1.11.3 (last updated 25.08.2024)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" element is excluded, otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Fix mobile Safari increase font-size on landscape mode */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
      text-size-adjust: none;
}

/* Reapply the pointer cursor for anchor tags */
a,
button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol,
ul,
menu,
summary {
  list-style: none;
}

/* Firefox: solve issue where nested ordered lists continue numbering from parent (https://bugzilla.mozilla.org/show_bug.cgi?id=1881517) */
ol {
  counter-reset: revert;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input,
textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* reset default text opacity of input placeholder */
::-webkit-input-placeholder {
  color: unset;
}
::-moz-placeholder {
  color: unset;
}
:-ms-input-placeholder {
  color: unset;
}
::-ms-input-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove details summary webkit styles */
::-webkit-details-marker {
  display: none;
}

/* ---------------------------------------
	Mixin
-----------------------------------------*/
/* ---------------------------------------
	Basic Settings
-----------------------------------------*/
:root {
  --cl-bg01: #f9f3eb;
  --cl-bg02: #fffecf;
  --cl-bg03: #fff;
  --cl-bg04: #e5dacb;
  --cl-accent: #ff3378;
  --cl-border: #ccc;
  --cl-bg: #fff;
  --cl-text: #1d1d1d;
  --cl-link: #1d1d1d;
  --cl-link-hover: #1d1d1d;
  --cl-gray: #ccc;
  --cl-white: #fff;
  --cl-child: green;
  --cl-facility: yellowgreen;
  --cl-business: orange;
  --cl-supporter: royalblue;
  --cl-exchange_supporter: #83ccd2;
  --cl-exchange_dinner: #86b3e0;
  --cl-exchange_magager: #7ecef4;
  --cl-navy: #274382;
  --font-awesome: "Font Awesome 6 Free";
  --font-noto: "Noto Sans JP", sans-serif;
  --font-zenmaru: "Zen Maru Gothic", sans-serif;
  --scale: 1.1;
  --trim-leading: calc((1em - 1lh) / 2);
  --transition: 0.3s ease-in-out;
  --opacity: 0.8;
}

html body {
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  font-family: var(--font-noto);
  font-size: 1rem;
  background-color: var(--cl-bg01);
  color: var(--cl-text);
  display: grid;
  grid-template: "header" auto "contents" 1fr "footer" auto/1fr;
  min-height: 100dvh;
}
html body img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  font-size: 0;
  line-height: 0;
}
html body a {
  color: var(--cl-link);
  text-decoration: none;
  word-break: break-all;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
html body a:hover, html body a:link, html body a:visited, html body a:active {
  text-decoration: none;
}
@media (any-hover: hover) {
  html body a:hover {
    color: var(--cl-link-hover);
    opacity: var(--opacity);
  }
}
html body input[type=checkbox] {
  cursor: pointer;
  border-radius: 0.25rem;
  border: 1px solid var(--cl-accent);
  accent-color: var(--cl-accent);
}
html body input[type=checkbox]:checked {
  background-color: var(--cl-accent);
}
@media screen and (width <= 768px) {
  html body .pc_only {
    display: none;
  }
}
@media screen and (width > 768px) {
  html body .sp_only {
    display: none;
  }
}

/* ---------------------------------------
	Header
-----------------------------------------*/
.header {
  grid-area: header;
  position: sticky;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (width > 768px) {
  .header {
    height: 6.25rem;
  }
}
@media screen and (width <= 768px) {
  .header {
    height: 5rem;
  }
}
.header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-inline: auto;
}
@media screen and (width > 768px) {
  .header__wrapper {
    width: calc(100% - 2.5rem);
  }
}
@media screen and (width <= 768px) {
  .header__wrapper {
    width: calc(100% - 2rem);
  }
}
@media screen and (width > 768px) {
  .header__logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 20.625rem;
            flex: 0 1 20.625rem;
  }
}
@media screen and (width <= 768px) {
  .header__logo {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 70%;
  }
}
.header.is_sticked {
  background-color: color-mix(in srgb, var(--cl-bg03) 90%, transparent);
}

/* ---------------------------------------
	Global Navigation
-----------------------------------------*/
@media screen and (width > 1200px) {
  .gNavi {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
  }
}
@media screen and (width <= 1200px) {
  .gNavi {
    position: fixed;
    width: 80%;
    height: calc(100dvh - 6.25rem);
    overflow-y: auto;
    top: 6.25rem;
    right: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: var(--transition);
    transition: var(--transition);
    background-color: color-mix(in srgb, var(--cl-bg03) 90%, transparent);
    padding: 1rem;
  }
}
@media screen and (width <= 1200px) and (width <= 1200px) {
  .gNavi.is_active {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
@media screen and (width <= 768px) {
  .gNavi {
    height: calc(100dvh - 5rem);
    top: 5rem;
  }
}
.gNavi__navi {
  padding-left: 0;
  margin-bottom: 0;
}
@media screen and (width > 1200px) {
  .gNavi__navi {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
  }
}
@media screen and (width <= 1200px) {
  .gNavi__navi {
    width: 100%;
    margin-bottom: 1rem;
  }
}
.gNavi__navi > li {
  font-family: var(--font-zenmaru);
  position: relative;
  font-size: 1rem;
}
@media screen and (width <= 1200px) {
  .gNavi__navi > li {
    border-bottom: var(--cl-border) 1px solid;
  }
}
@media screen and (width <= 1200px) {
  .gNavi__navi > li:not(:last-child) {
    padding: 0.5rem 1rem 0 1rem;
  }
}
@media screen and (width <= 1200px) {
  .gNavi__navi > li:last-child {
    padding: 0.5rem 1rem;
  }
}
.gNavi__navi > li > a {
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
@media screen and (width <= 1200px) {
  .gNavi__navi > li > a {
    display: block;
  }
}
@media screen and (width > 1200px) {
  .gNavi__navi > li:hover > .gNavi__navi__sub {
    display: block;
  }
}
@media screen and (width > 1200px) {
  .gNavi__navi__sub {
    display: none;
    padding-left: 0;
    position: absolute;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    background-color: color-mix(in srgb, var(--cl-bg03) 80%, transparent);
  }
}
.gNavi__navi__sub > li {
  font-family: var(--font-zenmaru);
}
@media screen and (width > 1200px) {
  .gNavi__navi__sub > li {
    font-size: 0.875rem;
  }
}
@media screen and (width <= 1200px) {
  .gNavi__navi__sub > li {
    font-size: 0.75rem;
    width: 100%;
  }
}
.gNavi__navi__sub > li:not(:last-child) {
  border-bottom: var(--cl-border) 1px solid;
}
.gNavi__navi__sub > li > a {
  display: block;
  padding: 0.5rem 1rem;
}
.gNavi__navi__sub > li > a::before {
  content: "\f054";
  font-family: var(--font-awesome);
  font-weight: bold;
  color: var(--cl-accent);
  font-size: 0.75rem;
  margin-right: 0.25rem;
}
.gNavi__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (width > 1200px) {
  .gNavi__menu {
    -webkit-column-gap: 0.5rem;
       -moz-column-gap: 0.5rem;
            column-gap: 0.5rem;
  }
}
@media screen and (width <= 1200px) {
  .gNavi__menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 0.5rem;
  }
}
.gNavi__menu__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--cl-white);
  font-family: var(--font-zenmaru);
}
@media screen and (width > 1200px) {
  .gNavi__menu__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 0.625rem;
    width: 7.5rem;
    height: 5rem;
    font-size: 0.875rem;
    line-height: 1.2;
    text-align: center;
  }
}
@media screen and (width <= 1200px) {
  .gNavi__menu__item {
    width: 70%;
    border-radius: 0.25rem;
    padding: 1rem;
    font-size: 1rem;
    margin-inline: auto;
  }
}
@media screen and (width <= 768px) {
  .gNavi__menu__item {
    width: 100%;
    border-radius: 0.25rem;
    padding: 1rem;
    font-size: 1rem;
  }
}
.gNavi__menu__item--support_project {
  background-color: #b9b513;
}
.gNavi__menu__item--needlist {
  background-color: #33a7c8;
}
@media (any-hover: hover) {
  .gNavi__menu__item:hover {
    color: var(--cl-white);
  }
}
@media screen and (width > 1200px) {
  .gNavi__menu__icon {
    margin-bottom: 0.25rem;
  }
}
@media screen and (width <= 1200px) {
  .gNavi__menu__icon {
    margin-right: 0.5rem;
  }
}
.gNavi__menu__icon img {
  height: 100%;
  max-height: 1.4375rem;
  -o-object-fit: contain;
     object-fit: contain;
}

/* ---------------------------------------
	Global Navigation for Smartphone
-----------------------------------------*/
.navToggle {
  display: none;
}
@media screen and (width <= 1200px) {
  .navToggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 3.125rem;
    height: 3.125rem;
    cursor: pointer;
    z-index: 20;
    border: var(--cl-border) 1px solid;
    background-color: var(--cl-bg03);
    border-radius: 0.25rem;
    font-size: 0.875rem;
  }
  .navToggle i {
    font-size: 1rem;
    color: var(--cl-accent);
  }
}

/* ---------------------------------------
	Main
-----------------------------------------*/
.main {
  grid-area: contents;
}

/* ---------------------------------------
	Footer
-----------------------------------------*/
.footer {
  grid-area: footer;
}

.bottom_content {
  background-color: var(--cl-bg01);
  border-top: 2px solid var(--cl-bg04);
}
.bottom_content__bg {
  background-image: url(../../assets/img/footer/bg_bottom_content.png);
  background-repeat: repeat;
}
@media screen and (width > 768px) {
  .bottom_content__bg {
    margin-top: 1rem;
  }
}
@media screen and (width <= 768px) {
  .bottom_content__bg {
    margin-top: 0.5rem;
  }
}
.bottom_content__wrapper {
  margin-inline: auto;
}
@media screen and (width > 768px) {
  .bottom_content__wrapper {
    width: calc(100% - 2.5rem);
    max-width: 80rem;
    padding-block: 5rem 7.5rem;
  }
}
@media screen and (width <= 768px) {
  .bottom_content__wrapper {
    width: calc(100% - 2rem);
    padding-block: 2.5rem 3.75rem;
  }
}
.bottom_content__title {
  font-weight: 400;
  line-height: 1.3;
  text-align: center;
}
@media screen and (width > 768px) {
  .bottom_content__title {
    font-size: 2.25rem;
    margin-bottom: 2.5rem;
  }
}
@media screen and (width <= 768px) {
  .bottom_content__title {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }
}
.bottom_content__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 0;
}
@media screen and (width > 768px) {
  .bottom_content__list {
    gap: 1.25rem;
  }
}
@media screen and (width <= 768px) {
  .bottom_content__list {
    gap: 1rem;
  }
}
.bottom_content__btn {
  display: grid;
  place-content: center;
  width: 100%;
  border: 1px solid var(--cl-accent);
  border-radius: calc(infinity * 1px);
  background-color: var(--cl-white);
  font-weight: 400;
  color: var(--cl-accent);
  position: relative;
  margin-inline: auto;
}
@media screen and (width > 768px) {
  .bottom_content__btn {
    max-width: 27.5rem;
    height: 3.75rem;
    -webkit-box-shadow: 0 0.625rem 0.625rem 0 rgba(0, 0, 0, 0.2);
            box-shadow: 0 0.625rem 0.625rem 0 rgba(0, 0, 0, 0.2);
    font-size: 1.5rem;
  }
}
@media screen and (width <= 768px) {
  .bottom_content__btn {
    max-width: 80%;
    height: 2.5rem;
    -webkit-box-shadow: 0 0.25rem 0.25rem 0 rgba(0, 0, 0, 0.2);
            box-shadow: 0 0.25rem 0.25rem 0 rgba(0, 0, 0, 0.2);
    font-size: 1rem;
  }
}
@media (any-hover: hover) {
  .bottom_content__btn:hover {
    background-color: color-mix(in srgb, var(--cl-accent) 5%, white);
    color: var(--cl-accent);
  }
}
.bottom_content__btn__icon {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (width > 768px) {
  .bottom_content__btn__icon {
    width: 1.625rem;
    height: 1.625rem;
    left: 1.25rem;
  }
}
@media screen and (width <= 768px) {
  .bottom_content__btn__icon {
    width: 1.125rem;
    height: 1.125rem;
    left: 1rem;
  }
}
.bottom_content__btn__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  vertical-align: top;
}
.bottom_content__desc {
  font-weight: 400;
}
@media screen and (width > 768px) {
  .bottom_content__desc {
    width: min(100%, 27.5rem);
    margin-inline: auto;
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
  }
}
@media screen and (width <= 768px) {
  .bottom_content__desc {
    width: 100%;
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }
}
.bottom_content__bnr {
  margin-inline: auto;
}
@media screen and (width > 768px) {
  .bottom_content__bnr {
    width: 21.875rem;
    height: 9.375rem;
  }
}
@media screen and (width <= 768px) {
  .bottom_content__bnr {
    width: 100%;
    text-align: center;
  }
}
.bottom_content__bnr img {
  -webkit-box-shadow: 0 0.625rem 0.625rem 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0.625rem 0.625rem 0 rgba(0, 0, 0, 0.2);
}

.info {
  background-color: var(--cl-bg03);
}
.info__wrapper {
  margin-inline: auto;
}
@media screen and (width > 768px) {
  .info__wrapper {
    width: calc(100% - 2.5rem);
    max-width: 80rem;
    padding-block: 1.25rem;
  }
}
@media screen and (width <= 768px) {
  .info__wrapper {
    width: calc(100% - 2rem);
    padding-block: 1rem;
  }
}
.info__list {
  padding-left: 0;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (width > 768px) {
  .info__list {
    gap: 2rem;
    font-size: 0.875rem;
  }
}
@media screen and (width <= 768px) {
  .info__list {
    gap: 1rem;
    font-size: 0.75rem;
  }
}

.copyright {
  background-color: var(--cl-bg01);
  border-top: 2px solid var(--cl-bg04);
}
.copyright__wrapper {
  margin-inline: auto;
}
@media screen and (width > 768px) {
  .copyright__wrapper {
    width: calc(100% - 2.5rem);
    max-width: 80rem;
    padding-block: 1.25rem;
  }
}
@media screen and (width <= 768px) {
  .copyright__wrapper {
    width: calc(100% - 2rem);
    padding-block: 1rem;
  }
}
.copyright__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
}
@media screen and (width > 768px) {
  .copyright__list {
    gap: 3.75rem;
    margin-bottom: 3.75rem;
  }
}
@media screen and (width <= 768px) {
  .copyright__list {
    gap: 0.5rem 2rem;
    margin-bottom: 2.5rem;
  }
}
.copyright__list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (width > 768px) {
  .copyright__list__item {
    gap: 1rem;
  }
}
@media screen and (width <= 768px) {
  .copyright__list__item {
    gap: 0.5rem;
  }
}
.copyright__list__title {
  font-weight: 400;
}
@media screen and (width > 768px) {
  .copyright__list__title {
    font-size: 0.75rem;
  }
}
@media screen and (width <= 768px) {
  .copyright__list__title {
    font-size: 0.625rem;
  }
}
.copyright__name {
  display: block;
  text-align: right;
}
@media screen and (width > 768px) {
  .copyright__name {
    font-size: 0.75rem;
  }
}
@media screen and (width <= 768px) {
  .copyright__name {
    font-size: 0.625rem;
  }
}

/*
/* background
-----------------------------------------*/
.bg_01 {
  background-color: var(--cl-bg01);
}

.bg_02 {
  background-color: var(--cl-bg02);
}

.bg_03 {
  background-color: var(--cl-bg03);
}

.bg_04 {
  background-color: var(--cl-bg04);
}

.bg_accent {
  background-color: var(--cl-accent);
}

.bg_child {
  background-color: var(--cl-child);
}

.bg_facility {
  background-color: var(--cl-facility);
}

.bg_business {
  background-color: var(--cl-business);
}

.bg_supporter {
  background-color: var(--cl-supporter);
}

.bg_exchange_supporter {
  background-color: var(--cl-exchange_supporter);
}

.bg_exchange_dinner {
  background-color: var(--cl-exchange_dinner);
}

.bg_exchange_magager {
  background-color: var(--cl-exchange_magager);
}

.bg_navy {
  background-color: var(--cl-navy);
}

/* ---------------------------------------
	Breadcrumb
-----------------------------------------*/
.breadcrumb {
  background-color: var(--cl-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  width: calc(100% - 2rem);
  max-width: 75rem;
  margin: 0 auto;
  padding: 0.5rem;
}
@media screen and (width > 768px) {
  .breadcrumb {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.breadcrumb li {
  font-size: 0.75rem;
}
.breadcrumb li a {
  color: var(--cl-gray);
}
.breadcrumb li:not(:first-child)::before {
  content: ">";
  margin-inline: 0.5rem;
}
.breadcrumb li.is_current {
  color: var(--cl-text);
}

/* ---------------------------------------
	Button（Bootstrap .btn と併用）
-----------------------------------------*/
.button {
  border-radius: calc(infinity * 1px);
  font-weight: 400;
  display: grid;
  place-content: center;
}
@media screen and (width > 768px) {
  .button {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 15rem;
    font-size: 1.125rem;
    padding: 0.5rem 1rem;
    -webkit-box-shadow: 0 0.5rem 0.5rem 0 rgba(0, 0, 0, 0.15);
            box-shadow: 0 0.5rem 0.5rem 0 rgba(0, 0, 0, 0.15);
  }
}
@media screen and (width <= 768px) {
  .button {
    width: 100%;
    font-size: 1rem;
    -webkit-box-shadow: 0 0.25rem 0.25rem 0 rgba(0, 0, 0, 0.15);
            box-shadow: 0 0.25rem 0.25rem 0 rgba(0, 0, 0, 0.15);
  }
}
.button__white {
  background-color: var(--cl-white);
  border: 1px solid var(--cl-accent);
  color: var(--cl-accent);
}
@media (any-hover: hover) {
  .button__white:hover {
    background-color: color-mix(in srgb, var(--cl-accent) 5%, white);
    color: var(--cl-accent);
  }
}
.button__accent {
  background-color: var(--cl-accent);
  border-color: var(--cl-accent);
  color: var(--cl-white);
}
@media (any-hover: hover) {
  .button__accent:hover {
    background-color: color-mix(in srgb, var(--cl-accent) 5%, white);
  }
}
.button__accent:focus-visible, .button__accent.focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(255, 51, 120, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(255, 51, 120, 0.5);
}
.button__accent:active {
  background-color: var(--cl-accent-active, #cc2960);
  border-color: var(--cl-accent-active, #cc2960);
}
.button__bg02 {
  background-color: var(--cl-bg02);
  border: 1px solid var(--cl-accent);
  color: var(--cl-accent);
}
@media (any-hover: hover) {
  .button__bg02:hover {
    background-color: color-mix(in srgb, var(--cl-bg02) 50%, white);
    color: var(--cl-accent);
  }
}
.button__arrow_right {
  position: relative;
  padding: 0.5rem 2.5rem 0.5rem 1.5rem;
}
.button__arrow_right::after {
  content: "\f0da";
  font-family: var(--font-awesome);
  font-weight: bold;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 1rem;
}
.button__arrow_left {
  position: relative;
  padding: 0.5rem 1.5rem 0.5rem 2.5rem;
}
.button__arrow_left::before {
  content: "\f0d9";
  font-family: var(--font-awesome);
  font-weight: bold;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 1rem;
}
@media screen and (width > 768px) {
  .button__lg {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 18.75rem;
    font-size: 1.5rem;
    padding: 0.5rem 2rem;
    -webkit-box-shadow: 0 0.625rem 0.625rem 0 rgba(0, 0, 0, 0.15);
            box-shadow: 0 0.625rem 0.625rem 0 rgba(0, 0, 0, 0.15);
  }
}
@media screen and (width <= 768px) {
  .button__lg {
    width: 100%;
    font-size: 1rem;
    -webkit-box-shadow: 0 0.25rem 0.25rem 0 rgba(0, 0, 0, 0.15);
            box-shadow: 0 0.25rem 0.25rem 0 rgba(0, 0, 0, 0.15);
  }
}

.btn.btn_accent {
  background-color: var(--cl-accent);
  border-color: var(--cl-accent);
  color: var(--cl-white);
}
@media (any-hover: hover) {
  .btn.btn_accent:hover {
    background-color: color-mix(in srgb, var(--cl-accent) 80%, white);
    color: var(--cl-white);
  }
}

.btn.btn_bg02 {
  background-color: var(--cl-bg02);
  border-color: var(--cl-bg02);
  color: var(--cl-text);
}
.btn.btn_bg02:hover {
  background-color: color-mix(in srgb, var(--cl-bg02) 50%, white);
}

.btn.btn_bg04 {
  background-color: var(--cl-bg04);
  border-color: var(--cl-bg04);
  color: var(--cl-text);
}
.btn.btn_bg04:hover {
  background-color: var(--cl-bg04-hover, #e0e0e0);
  border-color: var(--cl-bg04-hover, #e0e0e0);
}

.btn.btn_logo img {
  width: 100%;
  max-width: 1.25rem;
  height: auto;
}

/* ---------------------------------------
	Card
-----------------------------------------*/
.c-card {
  background-color: var(--cl-white);
  border-radius: 6px;
  padding: 16px;
  display: grid;
  grid-template: "img subject" auto "img summary" 1fr;
  gap: 8px 16px;
  position: relative;
}
.c-card__img {
  grid-area: img;
}
.c-card__img img {
  width: 100%;
  max-width: 150px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-card__subject {
  grid-area: subject;
  font-size: 1.375rem;
  color: var(--cl-primary);
}
.c-card__subject a {
  display: block;
}
.c-card__subject a::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  border-radius: 6px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.c-card__summary {
  grid-area: summary;
  font-size: 0.875rem;
}

/* ---------------------------------------
	Head Navigations
-----------------------------------------*/
@media screen and (width > 768px) {
  .head_navigations {
    margin-top: 3.125rem;
  }
}
@media screen and (width <= 768px) {
  .head_navigations {
    margin-top: 1.5rem;
  }
}
.head_navigations__wrapper {
  width: calc(100% - 2rem);
  max-width: 80rem;
  margin: 0 auto;
  background-color: var(--cl-white);
}
@media screen and (width > 768px) {
  .head_navigations__wrapper {
    border-radius: calc(infinity * 1px);
    padding: 1rem;
  }
}
@media screen and (width <= 768px) {
  .head_navigations__wrapper {
    border-radius: 0.5rem;
    padding: 0.5rem;
  }
}
.head_navigations__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-bottom: 0;
  padding-left: 0;
}
@media screen and (width > 768px) {
  .head_navigations__list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0.5rem 1rem;
  }
}
@media screen and (width <= 768px) {
  .head_navigations__list {
    gap: 0.25rem 1rem;
  }
}
.head_navigations__list li {
  font-size: 0.875rem;
}
@media screen and (width <= 768px) {
  .head_navigations__list li {
    max-width: 100%;
  }
}
.head_navigations__list li::after {
  content: "\f0d7";
  font-family: var(--font-awesome);
  font-weight: bold;
  margin-left: 0.25rem;
}

/* ---------------------------------------
	Section Head
-----------------------------------------*/
.section_head__wrapper {
  width: calc(100% - 2rem);
  margin-inline: auto;
}
@media screen and (width > 768px) {
  .section_head__wrapper {
    max-width: 75rem;
    padding-block: 5rem;
  }
}
@media screen and (width <= 768px) {
  .section_head__wrapper {
    padding-block: 3rem;
  }
}
.section_head__title {
  font-family: var(--font-zenmaru);
  font-weight: bold;
  text-align: center;
  margin-bottom: 0;
}
@media screen and (width > 768px) {
  .section_head__title {
    font-size: 3.75rem;
  }
}
@media screen and (width <= 768px) {
  .section_head__title {
    font-size: 2rem;
  }
}

/* ---------------------------------------
	Table
-----------------------------------------*/
/* Bootstrap table-responsive: 親をはみ出さないよう横スクロールをコンテナ内に収める */
.table-responsive {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.c-table__table {
  width: 100%;
  border-collapse: collapse;
  border-top: var(--cl-border) 1px solid;
}
.c-table__table th,
.c-table__table td {
  padding: 1rem;
  border-bottom: var(--cl-border) 1px solid;
}
.c-table__table th {
  -moz-text-align-last: justify;
       text-align-last: justify;
  width: 100px;
}
.c-table__table.is_stripe tr:nth-of-type(even) {
  background-color: var(--cl-primary-light);
}

/*
/* text
-----------------------------------------*/
.font-zenmaru {
  font-family: var(--font-zenmaru);
}

.cl_white {
  color: var(--cl-white);
}

.cl_accent {
  color: var(--cl-accent);
}

.cl_gray {
  color: var(--cl-gray);
}

.cl_text {
  color: var(--cl-text);
}

.cl_child {
  color: var(--cl-child);
}

.cl_facility {
  color: var(--cl-facility);
}

.cl_business {
  color: var(--cl-business);
}

.cl_supporter {
  color: var(--cl-supporter);
}

.cl_exchange_supporter {
  color: var(--cl-exchange_supporter);
}

.cl_exchange_dinner {
  color: var(--cl-exchange_dinner);
}

.cl_exchange_magager {
  color: var(--cl-exchange_magager);
}

.cl_navy {
  color: var(--cl-navy);
}

/* ---------------------------------------
	Pagination
-----------------------------------------*/
.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (width > 768px) {
  .pagination {
    margin-top: 2rem;
  }
}
@media screen and (width <= 768px) {
  .pagination {
    margin-top: 8.2051282051vw;
  }
}
.pagination .page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 0;
  margin-bottom: 0;
}
@media screen and (width > 768px) {
  .pagination .page-numbers {
    gap: 1rem;
  }
}
@media screen and (width <= 768px) {
  .pagination .page-numbers {
    gap: 0.5rem;
  }
}
.pagination .page-numbers .page-numbers {
  display: grid;
  place-content: center;
  border-radius: 50%;
  border: 1px solid var(--cl-text);
}
@media screen and (width > 768px) {
  .pagination .page-numbers .page-numbers {
    width: 3rem;
    height: 3rem;
    font-size: 1.125rem;
  }
}
@media screen and (width <= 768px) {
  .pagination .page-numbers .page-numbers {
    width: 2rem;
    height: 2rem;
    font-size: 0.875rem;
  }
}
@media (any-hover: hover) {
  .pagination .page-numbers .page-numbers:hover {
    background-color: var(--cl-text);
    color: var(--cl-white);
  }
}
.pagination .page-numbers.current {
  background-color: var(--cl-text);
  color: var(--cl-white);
}
.pagination .page-numbers.prev, .pagination .page-numbers.next, .pagination .page-numbers.dots {
  border: none;
}
@media (any-hover: hover) {
  .pagination .page-numbers.prev:hover, .pagination .page-numbers.next:hover, .pagination .page-numbers.dots:hover {
    background-color: transparent;
    color: var(--cl-text);
  }
}

/* ---------------------------------------
	支援プロジェクト一覧用コンポーネント
-----------------------------------------*/
.project_articles_loop {
  display: grid;
}
@media screen and (width > 768px) {
  .project_articles_loop {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
@media screen and (width <= 768px) {
  .project_articles_loop {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.project_article {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 5;
  gap: 0;
  background-color: var(--cl-bg03);
  position: relative;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
@media screen and (width > 768px) {
  .project_article {
    padding-bottom: 1.5rem;
  }
}
@media screen and (width <= 768px) {
  .project_article {
    padding-bottom: 1rem;
  }
}
@media (any-hover: hover) {
  .project_article:hover {
    opacity: var(--opacity);
  }
}
.project_article__img {
  position: relative;
}
.project_article__img img {
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}
.project_article__slug {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ffee33;
  color: var(--cl-accent);
}
@media screen and (width > 768px) {
  .project_article__slug {
    font-size: 1rem;
    padding: 0.25rem 0.5rem;
  }
}
@media screen and (width <= 768px) {
  .project_article__slug {
    font-size: 0.75rem;
    padding: 0.125rem 0.25rem;
  }
}
.project_article__categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (width > 768px) {
  .project_article__categories {
    gap: 0.25rem 0.5rem;
    padding-inline: 1.5rem;
    margin-block: 1.5rem;
  }
}
@media screen and (width <= 768px) {
  .project_article__categories {
    gap: 0.125rem 0.25rem;
    padding-inline: 1rem;
    margin-block: 1rem;
  }
}
.project_article__category {
  display: inline-block;
  font-weight: 400;
  background-color: var(--cl-bg01);
}
@media screen and (width > 768px) {
  .project_article__category {
    font-size: 1rem;
    padding: 0.25rem 0.5rem;
  }
}
@media screen and (width <= 768px) {
  .project_article__category {
    font-size: 0.75rem;
    padding: 0.125rem 0.25rem;
  }
}
.project_article__category.is_jidoufukushi {
  background-color: #fdd22b;
}
.project_article__category.is_shisetsu {
  background-color: #f5b2b2;
}
.project_article__title {
  font-weight: 400;
}
@media screen and (width > 768px) {
  .project_article__title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    padding-inline: 1.5rem;
  }
}
@media screen and (width <= 768px) {
  .project_article__title {
    font-size: 1rem;
    margin-bottom: 1rem;
    padding-inline: 1rem;
  }
}
.project_article__title-link:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}
.project_article__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (width > 768px) {
  .project_article__meta {
    padding-inline: 1.5rem;
    margin-bottom: 1rem;
  }
}
@media screen and (width <= 768px) {
  .project_article__meta {
    padding-inline: 1rem;
    margin-bottom: 0.5rem;
  }
}
.project_article__meta dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 0;
}
@media screen and (width > 768px) {
  .project_article__meta dl {
    font-size: 1rem;
    gap: 0 0.5rem;
  }
}
@media screen and (width <= 768px) {
  .project_article__meta dl {
    font-size: 0.875rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.project_article__meta dl dt {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-weight: 400;
  color: var(--cl-accent);
}
.project_article__meta dl dt::before {
  content: "●";
}
.project_article__meta dl dd {
  margin-bottom: 0;
}
.project_article__countdown {
  background-color: color-mix(in srgb, var(--cl-accent) 10%, white);
}
@media screen and (width > 768px) {
  .project_article__countdown {
    margin-inline: 1.5rem;
  }
}
@media screen and (width <= 768px) {
  .project_article__countdown {
    margin-inline: 1rem;
    padding-block: 1rem;
  }
}
.project_article__countdown:has(.hurrytimer-campaign-message) {
  display: grid;
  place-content: center;
}
.project_article .hurrytimer-headline {
  text-align: center;
}
.project_article .hurrytimer-timer {
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}
.project_article .hurrytimer-campaign-message {
  text-align: center;
  margin-bottom: 0;
}
@media screen and (width > 768px) {
  .project_article .hurrytimer-campaign-message {
    font-size: 1.125rem;
    padding: 0.5rem;
  }
}
@media screen and (width <= 768px) {
  .project_article .hurrytimer-campaign-message {
    font-size: 0.875rem;
    padding: 0.25rem;
  }
}
.project_article.is_past .project_article__img {
  position: relative;
}
.project_article.is_past .project_article__img::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: color-mix(in srgb, #ffee33 70%, transparent);
}
.project_article.is_past .project_article__img::after {
  content: "";
  background-image: url(../img/pages/project/icon_project_end.png);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (width > 768px) {
  .project_article.is_past .project_article__img::after {
    width: 8.125rem;
    height: 8.125rem;
  }
}
@media screen and (width <= 768px) {
  .project_article.is_past .project_article__img::after {
    width: 3.75rem;
    height: 3.75rem;
  }
}/*# sourceMappingURL=style.css.map */