@charset "UTF-8";
* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address,
cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd,
ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section,
summary, time, mark, audio, video {
  margin: 0;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  padding: 0;
  -webkit-padding-start: 0;
  -webkit-padding-end: 0;
  -webkit-padding-before: 0;
  -webkit-padding-after: 0;
  border: 0;
  outline: 0;
  font-weight: 400;
  vertical-align: center;
  box-sizing: border-box;
  background: transparent;
}

body {
  line-height: 1;
}

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

ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  color: inherit;
  font-size: 1em;
  cursor: pointer;
  text-decoration: none;
  vertical-align: baseline;
  background: transparent;
}

a:focus,
*:focus {
  outline: none;
}

img {
  max-width: 100%;
}

ins {
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: unset;
  font-weight: normal;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

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

/**
 * 色の定義
 */
:root {
  --white: #FFFFFF;
  --black: #1A1A1A;
  --gray: #8C8C8C;
  --light-gray: #E5E7EB;
  --yellow: #E3BA01;
  --deep-brown: #2C2416;
  --brown: #D4BFA0;
  --light-brown: #F5EFE6;
  --blue: #0010C0;
  --light-green: #EAF4F0;
  --cerulean: #344d63;
  --light-cerulean: #52687D;
  --orange: #d98120;
  --deep-orange: #b26405;
  --light-orange: #EEDEC7;
}

/**
 * レイアウト系
 */
.inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.6rem;
}
.inner.-post {
  max-width: 900px;
}
@media (min-width: 1000px) {
  .inner {
    padding: 0;
  }
}

.flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}
@media (max-width: 768px) {
  .flex {
    flex-direction: column;
  }
}
.flex.-align-center {
  align-items: center;
}
.flex--left {
  width: 50%;
}
@media (max-width: 768px) {
  .flex--left {
    width: 100%;
  }
}
.flex--right {
  width: 50%;
}
@media (max-width: 768px) {
  .flex--right {
    width: 100%;
  }
}

/**
 * コンポーネント
 */
.button {
  width: 45rem;
  max-width: 90%;
  margin: 0 auto;
  padding: 2rem 1rem;
  display: block;
  font-size: 2rem;
  color: var(--black);
  text-align: center;
  line-height: 1em;
  border-radius: 3rem;
  border: solid 1px var(--black);
  transition: opacity 0.3s ease;
  cursor: pointer;
  appearance: none;
  background: none;
}
.button.-primary {
  color: var(--white);
  border: none;
  background-color: var(--black);
}
.button.-square {
  width: 30rem;
  max-width: 90%;
  color: var(--white);
  border-radius: 1rem;
  border: none;
  background-color: var(--deep-brown);
}
.button:hover {
  opacity: 0.7;
}

.uline {
  background: linear-gradient(transparent 60%, rgba(0, 153, 102, 0.4392156863) 60%);
}

.skip-link {
  position: absolute;
  top: -100%;
}
.skip-link:focus {
  top: 0;
}

/**
 * 文字系
 */
.notice {
  font-size: 1.4rem;
}

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

.no-pointer-event {
  pointer-events: none;
  text-decoration: none;
}

.aigo-icon {
  padding-left: 1.5em;
  position: relative;
}
.aigo-icon::before {
  content: "";
  width: 1.25em;
  height: 1.25em;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../images/head-icon-aigo.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

/**
 * 色系
 */
.bg-color--light-brown {
  background-color: var(--light-brown);
}

/**
 * レスポンシブの表示制御系
 */
.pc_none {
  display: none;
}
@media (max-width: 768px) {
  .pc_none {
    display: block;
  }
}

br.pc_none {
  display: none;
}
@media (max-width: 768px) {
  br.pc_none {
    display: inline;
  }
}

span.pc_none {
  display: none;
}
@media (max-width: 768px) {
  span.pc_none {
    display: inline;
  }
}

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

br.sp_none {
  display: inline;
}
@media (max-width: 768px) {
  br.sp_none {
    display: none;
  }
}

span.sp_none {
  display: inline;
}
@media (max-width: 768px) {
  span.sp_none {
    display: none !important;
  }
}

/**
 * マージン系
 */
.mt--0_5 {
  margin-top: 0.5rem;
}

.mt--1 {
  margin-top: 1rem;
}

.mt--1_5 {
  margin-top: 1.5rem;
}

.mt--2 {
  margin-top: 2rem;
}

.mt--3 {
  margin-top: 3rem;
}

.mt--4 {
  margin-top: 4rem;
}

.mt--5 {
  margin-top: 5rem;
}

.mt--6 {
  margin-top: 6rem;
}

.mt--7 {
  margin-top: 7rem;
}

.mt--8 {
  margin-top: 8rem;
}

.mt--9 {
  margin-top: 9rem;
}

.mr--1 {
  margin-right: 1rem;
}

.mr--2 {
  margin-right: 2rem;
}

.mr--3 {
  margin-right: 3rem;
}

.mr--4 {
  margin-right: 4rem;
}

.mr--5 {
  margin-right: 5rem;
}

.ml--0_5 {
  margin-left: 0.5rem;
}

.ml--0_7 {
  margin-left: 0.7rem;
}

.ml--1 {
  margin-left: 1rem;
}

.ml--2 {
  margin-left: 2rem;
}

.ml--3 {
  margin-left: 3rem;
}

.ml--4 {
  margin-left: 4rem;
}

.ml--5 {
  margin-left: 5rem;
}

.mb--0_5 {
  margin-bottom: 0.5rem;
}

.mb--1 {
  margin-bottom: 1rem;
}

.mb--1_5 {
  margin-bottom: 1.5rem;
}

.mb--2 {
  margin-bottom: 2rem;
}

.mb--3 {
  margin-bottom: 3rem;
}

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

.mb--5 {
  margin-bottom: 5rem;
}

.mb--6 {
  margin-bottom: 6rem;
}

.mb--7 {
  margin-bottom: 7rem;
}

.mb--8 {
  margin-bottom: 8rem;
}

.mb--9 {
  margin-bottom: 9rem;
}

.pt--0_5 {
  padding-top: 0.5rem;
}

.pt--1 {
  padding-top: 1rem;
}

.pt--1_5 {
  padding-top: 1.5rem;
}

.pt--2 {
  padding-top: 2rem;
}

.pt--3 {
  padding-top: 3rem;
}

.pt--4 {
  padding-top: 4rem;
}

.pt--5 {
  padding-top: 5rem;
}

.pt--6 {
  padding-top: 6rem;
}

.pt--7 {
  padding-top: 7rem;
}

.pt--8 {
  padding-top: 8rem;
}

.pt--9 {
  padding-top: 9rem;
}

.pb--0_5 {
  padding-bottom: 0.5rem;
}

.pb--1 {
  padding-bottom: 1rem;
}

.pb--1_5 {
  padding-bottom: 1.5rem;
}

.pb--2 {
  padding-bottom: 2rem;
}

.pb--3 {
  padding-bottom: 3rem;
}

.pb--4 {
  padding-bottom: 4rem;
}

.pb--5 {
  padding-bottom: 5rem;
}

.pb--6 {
  padding-bottom: 6rem;
}

.pb--7 {
  padding-bottom: 7rem;
}

.pb--8 {
  padding-bottom: 8rem;
}

.pb--9 {
  padding-bottom: 9rem;
}

html, body {
  margin: 0;
  padding: 0;
  color: var(--black);
  box-sizing: border-box;
  font-size: 10px;
  font-family: "Noto Sans JP", sans-serif;
  background-color: var(--white);
}
@media (max-width: 768px) {
  html, body {
    font-size: 8px;
  }
}

h1 {
  margin-bottom: 1em;
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.25em;
}

h2 {
  margin-bottom: 1em;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.25em;
}

h3 {
  margin-bottom: 1em;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5em;
}

h4 {
  margin-bottom: 1em;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5em;
}

h5 {
  margin-bottom: 1em;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5em;
}

h6 {
  margin-bottom: 1em;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.5em;
}

strong {
  font-weight: 700;
}

p {
  margin-bottom: 1em;
  font-size: 2rem;
  line-height: 1.75em;
}
p.nomargin {
  margin-bottom: 0;
}

table {
  width: 100%;
  margin: 0 auto;
}
table tr {
  border-bottom: 1px solid var(--gray);
}
table th {
  padding: 1rem 0;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5em;
  text-align: left;
  vertical-align: top;
}
table td {
  padding: 1rem 0;
  font-size: 1.8rem;
  line-height: 1.5em;
  vertical-align: top;
}

.site_header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #FFF;
  z-index: 100;
  transform: translateY(0);
  transition: transform 0.3s;
}
.site_header--inner {
  width: 100%;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.site_header--logo {
  margin: 0;
  z-index: 101;
}
.site_header--logo a {
  width: 100%;
  height: 100%;
  display: block;
  text-align: left;
}
.site_header--logo img {
  width: 34rem;
  height: 3.9rem;
  margin: 0 auto 0 0;
  object-fit: contain;
  object-position: left;
  position: relative;
}
.site_header--nav {
  margin: 0;
  padding: 0;
  line-height: 1em;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.site_header--nav li {
  margin: 0;
  position: relative;
  display: flex;
}
.site_header--nav li a {
  width: 100%;
  height: 100%;
  padding: 10px 10px;
  display: block;
  font-size: 1.4rem;
  color: var(--black);
  text-align: center;
}
.site_header--nav li a:hover, .site_header--nav li a[aria-current=page] {
  text-decoration: underline;
}
.site_header--nav li a.-yellow {
  color: var(--yellow);
}
.site_header--nav li:hover > ul {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.site_header--button {
  padding: 10px;
  display: none;
  flex-direction: column;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 101;
}
.site_header--button span {
  width: 25px;
  height: 1px;
  display: block;
  border-radius: 5px;
  transition: all 0.3s;
  background-color: #FFF;
}
.site_header--button.-active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
  background-color: #FFF;
}
.site_header--button.-active span:nth-child(2) {
  opacity: 0;
}
.site_header--button.-active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  background-color: #FFF;
}

@media (max-width: 1020px) {
  .site_header {
    background-color: transparent;
  }
  .site_header--inner {
    padding: 0;
    justify-content: space-between;
  }
  .site_header--logo {
    padding-left: 2rem;
  }
  .site_header--button {
    padding: 2.2rem 2rem;
    display: flex;
    background-color: var(--orange);
  }
  .site_header--nav {
    width: 80%;
    max-width: 300px;
    height: 100vh;
    padding: 80px 0 20px;
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 100;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    transition: right 0.3s;
    overflow-y: auto;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    background-color: var(--white);
  }
  .site_header--nav li a {
    padding: 20px 10px;
    font-size: 2rem;
    line-height: 1em;
    box-sizing: border-box;
  }
  .site_header--nav.-active {
    right: 0;
  }
  body.-menu-open::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(85, 50, 12, 0.8);
    z-index: 99;
  }
}
.footer {
  padding: 5rem 0;
  border-top: 1px solid var(--light-gray);
}
.footer--links {
  margin-bottom: 5rem;
}
.footer--links ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer--links li a {
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--gray);
  text-decoration: underline;
}
.footer--links li a:hover {
  color: var(--black);
}
.footer--logo {
  margin-bottom: 4rem;
  text-align: center;
}
.footer--logo img {
  width: 4rem;
  opacity: 0.5;
}
.footer--copyright p {
  font-size: 1.4rem;
  color: var(--gray);
  text-align: center;
}

.page--title {
  padding: 14rem 0 9rem;
  font-size: 4rem;
  text-align: center;
  background-color: var(--light-brown);
}
@media (max-width: 768px) {
  .page--title {
    padding: 9rem 0 9rem;
  }
}

.donation--wrap {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
@media (max-width: 768px) {
  .donation--wrap {
    flex-direction: column;
    gap: 1rem;
  }
}
.donation--inner {
  display: flex;
  flex-direction: column;
}
.donation--item {
  display: flex;
  flex-direction: column;
  width: 49%;
  padding: 2rem 3rem;
  border: solid 1px var(--light-gray);
  border-radius: 1.6rem;
  background-color: var(--white);
}
@media (max-width: 768px) {
  .donation--item {
    width: 100%;
  }
}
.donation--item.-black {
  border: solid 2px var(--black);
}
.donation--item.-black .icon {
  background-color: var(--black);
}
.donation--item.-black .button {
  color: var(--white);
  background-color: var(--black);
}
.donation--item.-black .button:hover {
  color: var(--black);
  background-color: var(--white);
}
.donation--head {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;
}
.donation--head .icon {
  width: 4.5rem;
  height: 4.5rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--brown);
}
.donation--head h3 {
  margin-bottom: 0;
  font-size: 2.3rem;
  line-height: 1em;
}
.donation--content {
  flex-grow: 1;
}
.donation--button {
  width: 100%;
  max-width: none;
  margin-top: auto;
  padding: 2rem 1rem;
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--black);
  box-sizing: border-box;
  border-radius: 0.5rem;
  border: solid 2px var(--black);
  background-color: var(--white);
}
.donation--button:hover {
  opacity: 1;
  color: var(--white);
  background-color: var(--black);
}
.donation--notice {
  width: 100%;
  padding: 2.8rem;
  text-align: center;
  border-radius: 1.6rem;
  background-color: var(--white);
}