/* シニア for シニア 基金 LP（page-senior-fund.php） */
/* CSS Nesting（& なし・子セレクタをネスト） */
/* 寸法・メディアクエリ: 1rem = 16px 相当 */
:root {
  --sf-cream: #f2efe6;
  --sf-cream-deep: #f1ead4;
  --sf-text: #222;
  --sf-muted: #a7a7a7;
  --sf-cta: #e89b3a;
  --sf-white: #ffffff;
  --sf-inner-pc: 80rem;
  --sf-inner-sp: 24.375rem;
  /* Header: hamburger + modal at max-width 1144px */
  --sf-header-bp: 1144px;
}

.is-senior-fund-lp {
  .c-header,
  .c-button-follow,
  .footer,
  .c-donation-banner,
  .c-awgs-banner {
    display: none;
  }
}

/* アンカー移動：セクション上端を画面上端に合わせる（base.css の scroll-padding-top を打ち消す） */
html:has(body.is-senior-fund-lp) {
  scroll-padding-top: 60px;
}

body.is-senior-fund-lp {
  scroll-padding-top: 60px;
}

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

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

/* ----- .p-sf-header（Figma 1:36815） ----- */
.p-sf {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--sf-text);
  background: var(--sf-cream-deep);
  .sf-inner {
    max-width: 980px;
    width: calc(100% - 60px);
    margin: 0 auto;
    padding: 0 25px;
  }
}

.p-sf .mainvisual img {
  display: block;
  width: 100%;
  height: auto;
}

.p-sf-header-spacer {
  margin: 0;
  padding: 0;
  border: 0;
  flex-shrink: 0;
}

.p-sf-header {
  /* 固定時と同一の余白にし、切り替えで高さが変わらないようにする */
  padding: 0 1rem;
  box-sizing: border-box;
  position: fixed;
  top: 25px;
  left: 0;
  right: 0;
  z-index: 1000;

  @media screen and (max-width: 1144px) {
    top: 0.75rem;
    padding: 0 0.9375rem 0;
  }

  .p-sf-header__inner {
    max-width: 1210px;
    height: 70px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.5rem 2.125rem;
    background: var(--sf-white);
    border-radius: 0.75rem;
    box-shadow: 0 0.0625rem 0.1875rem rgba(0, 0, 0, 0.06);
    overflow: hidden;
    box-sizing: border-box;

    @media screen and (max-width: 1144px) {
      height: auto;
      min-height: 2.875rem;
      padding: 0.5rem 0.9375rem;
      border-radius: 0.75rem;
    }
  }

  .p-sf-header__logo {
    flex-shrink: 0;
    line-height: 0;

    img {
      display: block;
      height: 2.375rem;
      width: auto;
      max-width: 7.6875rem;
      object-fit: contain;

      @media screen and (max-width: 1144px) {
        height: 1.875rem;
        max-width: 6.0625rem;
      }
    }
  }

  .p-sf-header__menu-toggle {
    display: none;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 0.25rem;
    box-sizing: border-box;

    @media screen and (max-width: 1144px) {
      display: flex;
    }

    &:focus-visible {
      outline: 0.125rem solid #4d9743;
      outline-offset: 0.125rem;
    }
  }

  .p-sf-header__menu-toggle-bars {
    display: block;
    width: 1.28125rem;
    height: 0.125rem;
    background: var(--sf-text);
    border-radius: 0.0625rem;
    position: relative;
  }

  .p-sf-header__menu-toggle-bars::before,
  .p-sf-header__menu-toggle-bars::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 0.125rem;
    background: var(--sf-text);
    border-radius: 0.0625rem;
  }

  .p-sf-header__menu-toggle-bars::before {
    top: -0.375rem;
  }

  .p-sf-header__menu-toggle-bars::after {
    top: 0.375rem;
  }

  &.p-sf-header--menu-open .p-sf-header__menu-toggle-bars {
    background: transparent;
  }

  &.p-sf-header--menu-open .p-sf-header__menu-toggle-bars::before {
    top: 0;
    transform: rotate(45deg);
  }

  &.p-sf-header--menu-open .p-sf-header__menu-toggle-bars::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .p-sf-header__nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 2.125rem;
    font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 0.9375rem;
    line-height: 1.1875rem;
    color: #222;

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

  .p-sf-header__link {
    display: block;
    text-align: center;
    text-decoration: none;
    color: inherit;
    box-sizing: border-box;
  }

  .p-sf-header__link:hover {
    opacity: 0.85;
  }

  .p-sf-header__link--single {
    line-height: normal;
    white-space: nowrap;
    align-self: center;
    min-height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .p-sf-header__link-line {
    display: block;
  }

  .p-sf-header__link-line + .p-sf-header__link-line {
    margin: 0;
  }
}

/* SP nav modal: backdrop rgba(0,0,0,0.4) — Figma 1:116142 */
.p-sf-header-menu {
  position: fixed;
  inset: 0;
  z-index: 1001;
  visibility: hidden;
  opacity: 0;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
  pointer-events: none;

  &.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  &[hidden] {
    display: none !important;
  }

  &:not([hidden]).is-open {
    display: block;
  }
}

@media screen and (min-width: 1145px) {
  .p-sf-header-menu {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}

.p-sf-header-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

.p-sf-header-menu__sheet {
  position: absolute;
  top: 50%;
  right: 50%;
  width: calc(100% - 60px);
  max-width: 600px;
  height: auto;
  max-height: 85svh;
  border-radius: 6px;
  background: #F1EAD4;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  overflow: auto;
  overscroll-behavior: contain;
  transform: translate(50%, -50%);
}

.p-sf-header-menu__head {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  flex-shrink: 0;
  padding: 1rem 1rem 0.75rem 1.25rem;
}

.p-sf-header-menu__logo{
  max-width: 280px;
  margin: 0 auto;
  display: block;
}

.p-sf-header-menu__title {
  margin: 0;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--sf-text);
}

.p-sf-header-menu__close {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #a7a7a7;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  text-decoration: none;
  &:focus-visible {
    outline: 0.125rem solid #4d9743;
    outline-offset: 0.125rem;
  }
}

.p-sf-header-menu__nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  align-items: center;
  justify-content: center;
  gap: 32px;
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.35;
  color: var(--sf-text);
  padding: 40px 0 60px;
}

.p-sf-header-menu__link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
  font-size: min(19px, calc(19 / 390 * 100vw));
}

.p-sf-header-menu__link:hover {
  background: rgba(77, 151, 67, 0.06);
}

.p-sf-header-menu__link--single {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.p-sf-header-menu__link-line {
  display: inline-flex;
}

.p-sf-header-menu__link-line + .p-sf-header-menu__link-line {
  margin-top: 0.125rem;
}

body.p-sf-header-menu-open {
  overflow: hidden;
}

.is-senior-fund-lp .c-modal.is-open {
  z-index: 1200;
}

.p-sf-header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5625rem 1rem 0;
  backface-visibility: hidden;
}

/* ログイン時：管理バー（#wpadminbar）と固定ヘッダーの重なり防止 */
body.admin-bar .p-sf-header {
  top: calc(32px + 25px);
}

@media screen and (max-width: 1144px) {
  body.admin-bar .p-sf-header {
    top: calc(32px + 0.75rem);
  }
}

@media screen and (max-width: 782px) {
  body.admin-bar .p-sf-header {
    top: calc(46px + 0.75rem);
  }
}

body.admin-bar .p-sf-header.is-fixed {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .p-sf-header.is-fixed {
    top: 46px;
  }
}


.p-sf {
  .mainvisual {
    max-height: 100vh;
    margin: 0 auto;
    background: #F1EAD4;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-height: 490px;
    &:after{
      content: "";
      height: 70px;
      width: 100%;
      background: #e1d7b4;
      display: block;
      position: absolute;
      bottom: 0;
      left: 0;
      z-index: 1;
    }
    @media screen and (max-width: 520px) {
      &:after {
        height: 34px;
      }
    }
    img{
      max-height: 700px;
      max-width: 1280px;
      aspect-ratio: 1280 / 700;
      width: 100%;
      position: relative;
      z-index: 2;
      @media screen and (max-width: 520px) {
        aspect-ratio: auto;
      }
    }
  }
  .read {
    padding: 80px 0;
    background: linear-gradient(180deg, #f7f0d3 0%, #dbf6d9 100%);
    @media screen and (max-width: 520px) {
      padding: 35px 0;
    }
    .sf-inner {
      background: #fff;
      border-radius: 55px;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 64px 25px;
      gap: 40px;
      position: relative;
      @media screen and (max-width: 520px) {
        padding: 30px 25px;
        border-radius: 20px;
      }
      .read_inner {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
      }
      .read_img_01 {
        position: absolute;
        top: 52px;
        left: 24px;
        width: 253px;
        @media screen and (max-width: 960px) {
          position: static;
          width: auto;
          max-width: 198px;
          display: block;
          margin: 0 auto;
        }
      }
      .read_img_02 {
        position: absolute;
        top: 300px;
        left: 40px;
        width: 229px;
        @media screen and (max-width: 960px) {
          position: static;
          width: auto;
        }
      }
      .read_img_03 {
        position: absolute;
        top: 100px;
        right: 40px;
        width: 229px;
        @media screen and (max-width: 960px) {
          display: none;
        }
      }
      h2 {
        color: #4d9743;
        text-align: center;
        font-family: "Zen Kaku Gothic New";
        font-size: 30px;
        font-style: normal;
        font-weight: 400;
        line-height: 154%; /* 46.2px */
        margin-bottom: 40px;
        @media screen and (max-width: 520px) {
          font-size: min(21px, calc(21 / 390 * 100vw));
          margin-bottom: 15px;
        }
      }
      p {
        text-align: center;
        font-family: "Zen Maru Gothic";
        font-size: 17px;
        font-style: normal;
        font-weight: 400;
        line-height: 186%;
        margin-bottom: 40px;
        @media screen and (max-width: 520px) {
          font-size: min(14px, calc(14 / 390 * 100vw));
          margin-bottom: 15px;
        }
      }
      .p-sf-read__tagline {
        margin: 0;
        text-align: center;
      }

      .p-sf-read__tagline-text {
        font-family: "Zen Maru Gothic", sans-serif;
        font-size: 1.3125rem;
        font-style: normal;
        font-weight: 400;
        line-height: 186%;
        color: #91551b;
        display: inline;
        background-image: linear-gradient(
          to right,
          #91551b 3px,
          transparent 4px
        );
        background-size: 6px 1px;
        background-repeat: repeat-x;
        background-position: left bottom;
        -webkit-box-decoration-break: clone;
        box-decoration-break: clone;
        @media screen and (max-width: 520px) {
          font-size: min(17px, calc(17 / 390 * 100vw));
          margin-top: 15px;
          word-break: keep-all;
        }
      }
      h3 {
        color: #4d9743;
        text-align: center;
        font-family: "Zen Maru Gothic";
        font-size: 17px;
        font-style: normal;
        font-weight: 400;
        line-height: 186%;
        margin-top: 40px;
        @media screen and (max-width: 520px) {
          font-size: min(14px, calc(14 / 390 * 100vw));
          margin-top: 15px;
        }
      }
      .donate_total {
        margin-top: 68px;
        h4 {
          color: #91551b;
          text-align: center;
          font-family: "Zen Kaku Gothic New";
          font-size: 23px;
          font-style: normal;
          font-weight: 400;
          line-height: 154%; /* 35.42px */
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 10px;
          margin-bottom: 40px;
          @media screen and (max-width: 560px) {
            word-break: keep-all;
          }
          @media screen and (max-width: 520px) {
            font-size: min(19px, calc(19 / 390 * 100vw));
            margin-bottom: 15px;
          }
          span{
            @media screen and (max-width: 520px) {
              flex: 0;
            }
          }
          &:before {
            content: "";
            width: 31px;
            height: 31px;
            background-image: url(../img/stamp_left.svg);
            display: block;
            background-size: contain;
            background-position: center center;
            background-repeat: no-repeat;
            flex: 0 0 1;
          }
          &:after {
            content: "";
            width: 31px;
            height: 31px;
            background-image: url(../img/stamp_right.svg);
            display: block;
            background-size: contain;
            background-position: center center;
            background-repeat: no-repeat;
            flex: 0 0 1;
          }
        }
        .donate_total_amount {
          position: relative;
          width: 428px;
          height: 177px;
          display: flex;
          align-items: center;
          justify-content: center;
          flex-direction: column;
          margin: 0 auto;
          @media screen and (max-width: 560px) {
            width: 100%;
          }
          span {
            color: #000;
            text-align: center;
            font-family: "Zen Maru Gothic";
            font-size: 35px;
            font-style: normal;
            font-weight: 400;
            line-height: 164%;
            z-index: 1;
            @media screen and (max-width: 560px) {
              font-size: min(27px, calc(27 / 390 * 100vw));
            }
          }
          small {
            color: #000;
            font-family: "Zen Maru Gothic";
            font-size: 20px;
            font-style: normal;
            font-weight: 400;
            line-height: 164%;
            z-index: 1;
            @media screen and (max-width: 560px) {
              font-size: min(16px, calc(16 / 390 * 100vw));
            }
          }
          &:after {
            content: "";
            width: 428px;
            height: 177px;
            border-radius: 428px;
            background: #f7f0d3;
            filter: blur(35px);
            position: absolute;
            display: block;
            top: 0;
            left: 0;
            z-index: 0;
            aspect-ratio: 428 / 177;
          }
        }
        /* Safari: 疑似要素内のネスト @media 回避 */
        @media screen and (max-width: 560px) {
          .donate_total_amount:after {
            width: 100%;
          }
        }
        .donate_btn_read {
          color: #91551b;
          font-size: 17px;
          text-align: center;
          margin-top: 54px;
          @media screen and (max-width: 560px) {
            font-size: min(14px, calc(14 / 390 * 100vw));
            margin-top: 40px;
          }
          br {
            display: none;
            @media screen and (max-width: 560px) {
              display: block;
            }
          }
        }
      }
    }
  }
}

.problem {
  padding: 80px 0;
  background: #fff;
  @media screen and (max-width: 520px) {
    padding: 35px 0;
  }
  .sf-inner {
    background: #f9f4eb;
    border-radius: 55px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 64px 0;
    @media screen and (max-width: 520px) {
      padding: 35px 0;
      border-radius: 20px;
    }
    .problem_inner {
      max-width: 600px;
      width: calc(100% - 50px);
      margin: 0 auto;
    }
    h2 {
      color: #4d9743;
      text-align: center;
      font-family: "Zen Kaku Gothic New";
      font-size: 30px;
      font-style: normal;
      font-weight: 400;
      line-height: 154%; /* 46.2px */
      margin-bottom: 40px;
      @media screen and (max-width: 520px) {
        font-size: min(20px, calc(20 / 390 * 100vw));
        word-break: keep-all;
      }
    }
    p {
      font-family: "Zen Maru Gothic";
      font-size: 17px;
      font-style: normal;
      font-weight: 400;
      line-height: 176%;
      @media screen and (max-width: 520px) {
        font-size: min(14px, calc(14 / 390 * 100vw));
      }
      span {
        color: #91551b;
        display: inline;
        background-image: linear-gradient(
          to right,
          #91551b 3px,
          transparent 4px
        );
        background-size: 6px 1px;
        background-repeat: repeat-x;
        background-position: left bottom;
        -webkit-box-decoration-break: clone;
        box-decoration-break: clone;
      }
    }
    .problem_message {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      margin-top: -40px;
      @media screen and (max-width: 520px) {
        margin-top: 40px;
        flex-direction: column;
        align-items: flex-start;
      }
      p {
        color: #4d9743;
        font-family: "Zen Maru Gothic";
        font-size: 21px;
        font-style: normal;
        font-weight: 400;
        line-height: 176%;
        @media screen and (max-width: 520px) {
          font-size: min(19px, calc(19 / 390 * 100vw));
        }
      }
      img {
        flex: 0 0 auto;
        width: 232px;
        @media screen and (max-width: 520px) {
          width: 100%;
          max-width: 175px;
          align-self: center;
          margin-top: 40px;
        }
      }
    }
  }
}

.system {
  padding: 80px 0;
  background: #dbf6d9;
  @media screen and (max-width: 520px) {
    padding: 0 0 45px 0;
  }
  .sf-inner {
    max-width: 980px;
    margin: 0 auto;
    padding: 0;
    .system_inner {
      max-width: 600px;
      width: calc(100% - 50px);
      margin: 0 auto;
      padding: 0;
      .system_icon {
        width: 256px;
        height: auto;
        display: block;
        margin: 0 auto;
      }
      h2 {
        color: #91551b;
        text-align: center;
        font-family: "Zen Kaku Gothic New";
        font-size: 30px;
        font-style: normal;
        font-weight: 400;
        line-height: 154%; /* 46.2px */
        text-align: center;
        @media screen and (max-width: 520px) {
          font-size: min(21px, calc(21 / 390 * 100vw));
          word-break: keep-all;
        }
      }
      p {
        font-family: "Zen Maru Gothic";
        font-size: 17px;
        font-style: normal;
        font-weight: 400;
        line-height: 176%;
        text-align: center;
        margin-top: 34px;
        @media screen and (max-width: 520px) {
          font-size: min(14px, calc(14 / 390 * 100vw));
          word-break: keep-all;
        }
        strong {
          color: #91551b;
          font-weight: 400;
          font-family: "Zen Kaku Gothic New";
          font-style: normal;
          font-weight: 400;
          line-height: 154%;
          display: inline;
          background-image: linear-gradient(
            to right,
            #91551b 3px,
            transparent 4px
          );
          background-size: 6px 1px;
          background-repeat: repeat-x;
          background-position: left bottom;
          -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
        }
      }
    }
  }
}
.reason {
  padding: 80px 0;
  background: #f9f4eb;
  @media screen and (max-width: 520px) {
    padding: 45px 0;
  }
  .sf-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 64px 0;
    gap: 52px;
    @media screen and (max-width: 520px) {
      padding: 0;
    }
    h2 {
      color: #4d9743;
      text-align: center;
      font-family: "Zen Kaku Gothic New";
      font-size: 30px;
      font-style: normal;
      font-weight: 400;
      line-height: 154%; /* 46.2px */
      @media screen and (max-width: 520px) {
        font-size: min(21px, calc(21 / 390 * 100vw));
        word-break: keep-all;
      }
    }
    p {
      font-family: "Zen Maru Gothic";
      font-size: 17px;
      font-style: normal;
      font-weight: 400;
      line-height: 176%;
      text-align: center;
      @media screen and (max-width: 520px) {
        font-size: min(14px, calc(14 / 390 * 100vw));
        word-break: keep-all;
      }
    }
    .reason_block {
      background: #fff;
      border-radius: 55px;
      padding: 64px 0;
      width: 100%;
      @media screen and (max-width: 530px) {
        padding: 30px 0;
        border-radius: 20px;
      }
      .reason_block_inner {
        max-width: 600px;
        width: calc(100% - 50px);
        margin: 0 auto;
        .reason_block_header {
          display: flex;
          align-items: center;
          justify-content: center;
          flex-direction: column;
          gap: 26px;
          margin-bottom: 32px;
          position: relative;
          @media screen and (max-width: 530px) {
            gap: 10px;
          }
          &::before {
            content: "";
            width: 78px;
            height: 57px;
            display: block;
            position: absolute;
            top: 0;
            right: -40px;
            background-image: url(../img/reason_header_top.png);
            background-size: contain;
            background-position: center center;
            background-repeat: no-repeat;
          }
          &::after {
            content: "";
            width: 78px;
            height: 64px;
            display: block;
            position: absolute;
            bottom: 0;
            left: -40px;
            background-image: url(../img/reason_header_bottom.png);
            background-size: contain;
            background-position: center center;
            background-repeat: no-repeat;
          }
          @media screen and (max-width: 530px) {
            &::before {
              position: static;
              align-self: flex-start;
              background-image: url(../img/reason_header_bottom.png);
              width: 62px;
              height: 51px;
            }
            &::after {
              position: static;
              align-self: flex-end;
              background-image: url(../img/reason_header_top.png);
              width: 62px;
              height: 46px;
            }
          }
          h3 {
            color: #91551b;
            text-align: center;
            font-family: "Zen Kaku Gothic New";
            font-size: 30px;
            font-style: normal;
            font-weight: 400;
            line-height: 154%; /* 46.2px */
            @media screen and (max-width: 530px) {
              font-size: min(21px, calc(21 / 390 * 100vw));
              word-break: keep-all;
            }
          }
          span {
            color: #91551b;
            text-align: center;
            font-family: "Zen Kaku Gothic New";
            font-size: 17px;
            font-style: normal;
            font-weight: 400;
            line-height: 154%;
            border-radius: 49px;
            border: 1.5px solid #91551b;
            padding: 6px 42px;
            @media screen and (max-width: 530px) {
              font-size: min(14px, calc(14 / 390 * 100vw));
              width: 100%;
              padding: 8px 0;
            }
          }
        }
        .reason_block_profile {
          display: grid;
          grid-template-columns: 163px 1fr;
          grid-template-rows: auto auto;
          gap: 26px;
          border-bottom: 1.5px dashed #91551b;
          padding: 0 38px 50px;
          @media screen and (max-width: 530px) {
            grid-template-columns: 115px 1fr;
            grid-template-rows: 137px auto;
            gap: 24px;
            padding: 0 0 40px 0;
          }

          .image {
            width: 163px;
            height: 194px;
            border-radius: 12px;
            overflow: hidden;
            grid-area: 1/1/3/2;
            @media screen and (max-width: 530px) {
              width: 115px;
              height: 137px;
            }
            img {
              width: 100%;
              height: 100%;
              object-fit: cover;
            }
          }
          h4 {
            color: #4d9743;
            font-family: "Zen Kaku Gothic New";
            font-size: 25px;
            font-style: normal;
            font-weight: 400;
            line-height: 154%;
            align-self: flex-end;
            grid-area: 1/2/2/3;
            @media screen and (max-width: 530px) {
              font-size: min(17px, calc(17 / 390 * 100vw));
              align-self: center;
            }
            small {
              font-size: 17px;
              word-break: keep-all;
              @media screen and (max-width: 530px) {
                font-size: min(14px, calc(14 / 390 * 100vw));
              }
            }
          }
          p {
            font-size: 14px;
            text-align: left;
            align-self: flex-start;
            grid-area: 2/2/3/3;
            word-break: break-all;
            @media screen and (max-width: 530px) {
              grid-area: 2/1/3/3;
            }
          }
        }
        .reason_block_text {
          margin-top: 50px;
          font-size: 15px;
          text-align: left;
          word-break: break-all;
          strong {
            color: #4d9743;
          }
        }
      }
    }
  }
}
.triangle {
  background: #fff;
  padding: 54px 0;
  @media screen and (max-width: 520px) {
    padding: 45px 0;
  }
  .happy_triangle_content {
    display: flex;
    gap: 78px;
    @media screen and (max-width: 960px) {
      flex-direction: column;
      gap: 40px;
    }
    .text {
      flex: 0 0 1;
      h2 {
        color: #4d9743;
        font-family: "Zen Kaku Gothic New";
        font-size: 30px;
        font-style: normal;
        font-weight: 400;
        line-height: 154%; /* 46.2px */
        margin-bottom: 20px;
        @media screen and (max-width: 520px) {
          font-size: min(21px, calc(21 / 390 * 100vw));
          margin-bottom: 40px;
          text-align: center;
        }
      }
      p {
        font-size: 15px;
        font-family: "Zen Maru Gothic";
        font-weight: 400;
        line-height: 160%;
        strong {
          color: #91551b;
        }
      }
      a {
        color: #f1992d;
        font-weight: 700;
        text-decoration: underline;
      }
    }
    .image {
      width: 414px;
      flex: 0 0 auto;
      max-width: 50%;
      @media screen and (max-width: 960px) {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
      }
    }
  }
}
.cheer {
  background: #fff;
  padding: 82px 0;
  @media screen and (max-width: 520px) {
    padding: 45px 0;
  }
  .sf-inner {
    @media screen and (max-width: 520px) {
      padding: 0;
    }
    .cheer_inner {
      max-width: 736px;
      width: calc(100% - 50px);
      margin: 0 auto;
    }
    h2 {
      color: #4d9743;
      text-align: center;
      font-family: "Zen Kaku Gothic New";
      font-size: 30px;
      font-style: normal;
      font-weight: 400;
      line-height: 154%; /* 46.2px */
      @media screen and (max-width: 520px) {
        font-size: min(21px, calc(21 / 390 * 100vw));
        margin-bottom: 20px;
        text-align: center;
        word-break: keep-all;
      }
    }
    .p-sf-donate-modal-wrap {
      margin-top: 0;
    }
  }
}
.practice {
  background: #f9f4eb;
  padding-top: 80px;
  padding-bottom: 80px;
  @media screen and (max-width: 520px) {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .sf-inner {
    @media screen and (max-width: 520px) {
      padding: 0;
    }
  }
  h3 {
    color: #4d9743;
    text-align: center;
    font-family: "Zen Kaku Gothic New";
    font-size: 30px;
    font-style: normal;
    margin-bottom: 50px;
    font-weight: 400;
    @media screen and (max-width: 520px) {
      font-size: min(21px, calc(21 / 390 * 100vw));
      margin-bottom: 40px;
      word-break: keep-all;
    }
    span {
      font-size: 25px;
      @media screen and (max-width: 520px) {
        font-size: min(17px, calc(17 / 390 * 100vw));
      }
    }
  }
}
.practice_block {
  background: #fff;
  border-radius: 55px;
  padding: 64px 0;
  margin-bottom: 40px;
  &:last-child {
    margin-bottom: 0;
  }
  @media screen and (max-width: 520px) {
    padding: 45px 0;
    margin-bottom: 30px;
    border-radius: 20px;
  }
  .practice_block_inner {
    max-width: 600px;
    width: calc(100% - 50px);
    margin: 0 auto;
  }
  h4 {
    color: #91551b;
    font-family: "Zen Kaku Gothic New";
    font-weight: 400;
    font-size: 30px;
    font-style: normal;
    text-align: center;
    line-height: 154%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-bottom: 1.5px dashed #91551b;
    background-image: url(../img/practice_title_bg.svg);
    background-size: 132px 132px;
    background-position: center center;
    background-repeat: no-repeat;
    margin-bottom: 40px;
    padding-bottom: 40px;
    padding-top: 10px;
    @media screen and (max-width: 520px) {
      font-size: min(21px, calc(21 / 390 * 100vw));
      margin-bottom: 40px;
      word-break: keep-all;
    }
    span {
      font-size: 25px;
      @media screen and (max-width: 520px) {
        font-size: min(17px, calc(17 / 390 * 100vw));
      }
    }
  }
  p {
    font-size: 15px;
    font-family: "Zen Maru Gothic";
    font-weight: 400;
    line-height: 160%;
    margin: 30px 0;
    strong {
      color: #4d9743;
    }
  }
}
.image_col_3_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  @media screen and (max-width: 520px) {
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap;
  }
  .image_col_3 {
    flex: 1;
    @media screen and (max-width: 520px) {
      flex: calc(50% - 4px) 0 1;
    }
  }
}
.image_col_1_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 370px;
  margin: 0 auto;
  .image_col_1 {
    width: 100%;
    overflow: hidden;
    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }
}
.organization_list {
  background: #fff;
  max-width: 880px;
  margin: 0 auto;
  padding: 90px 0;
  position: relative;
  @media screen and (max-width: 520px) {
    padding: 35px 0;
  }
  .organization_list_inner {
    max-width: 600px;
    width: calc(100% - 50px);
    margin: 0 auto;
  }
  &:before {
    content: "";
    width: 23px;
    height: 23px;
    border-radius: 50%;
    background: #4d9743;
    position: absolute;
    top: 22px;
    left: 28px;
    z-index: 1;
  }
  &:after {
    content: "";
    width: 23px;
    height: 23px;
    border-radius: 50%;
    background: #4d9743;
    position: absolute;
    top: 22px;
    right: 28px;
    z-index: 1;
  }
  .organization_list_header {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    gap: 20px 30px;
    @media screen and (max-width: 720px) {
      grid-template-columns: 1fr;
      grid-template-rows: auto auto auto;
      gap: 20px 0;
    }
    h2 {
      color: #4d9743;
      font-family: "Zen Kaku Gothic New";
      font-size: 30px;
      grid-area: 1/1/2/2;
      text-align: left;
      @media screen and (max-width: 720px) {
        font-size: min(21px, calc(21 / 390 * 100vw));
        margin-bottom: 20px;
        text-align: center;
        word-break: keep-all;
        grid-area: auto;
      }
    }
    img {
      grid-area: 1/2/3/3;
      @media screen and (max-width: 720px) {
        grid-area: auto;
        max-width: 144px;
        margin: 0 auto;
        display: block;
      }
    }
    p {
      grid-area: 2/1/3/2;
      font-family: "Zen Maru Gothic";
      font-size: 20px;
      font-style: normal;
      font-weight: 400;
      line-height: 176%; /* 35.2px */
      margin: 0;
      @media screen and (max-width: 720px) {
        grid-area: auto;
        font-size: min(17px, calc(17 / 390 * 100vw));
        text-align: center;
        word-break: keep-all;
      }
      br {
        display: none;
        @media screen and (max-width: 720px) {
          display: block;
        }
      }
    }
  }
  .organization_list_list {
    list-style: none;
    margin: 51px 0 0;
    padding: 0;
  }
  .organization_list_item {
    margin-bottom: 15px;
    &:last-child {
      margin-bottom: 0;
    }
  }
  .organization_list_item__link {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    max-width: 100%;
    color: #91551b;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.76;
    text-decoration: underline;
    text-underline-position: from-font;
    @media screen and (max-width: 520px) {
      position: relative;
      padding-left: 28px;
    }
    &::before {
      content: "";
      width: 22px;
      height: 22px;
      display: inline-block;
      background-image: url(../img/organization_list_bullet.svg);
      background-size: contain;
      background-position: center center;
      background-repeat: no-repeat;
      flex: 0 0 auto;
    }
    @media screen and (max-width: 520px) {
      &::before {
        width: 18px;
        height: 18px;
        position: absolute;
        top: 6px;
        left: 0;
      }
    }
  }
  .organization_list_item__link:hover {
    opacity: 0.88;
  }
  .organization_list_note {
    margin: 40px 0 0;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: #222;
    a {
      color: #91551b;
      font-weight: 700;
      text-decoration: underline;
    }
  }
}
.global {
  background: #dbf6d8;
  padding: 80px 0;
  @media screen and (max-width: 520px) {
    padding: 45px 0;
  }
  .sf-inner {
    padding: 0;
    .global_icon {
      width: 256px;
      height: auto;
      display: block;
      margin: 0 auto;
      @media screen and (max-width: 520px) {
        width: 144px;
      }
    }
    h2 {
      color: #91551b;
      text-align: center;
      font-family: "Zen Kaku Gothic New";
      font-size: 30px;
      font-style: normal;
      font-weight: 400;
      line-height: 154%; /* 46.2px */
      margin-top: -30px;
      margin-bottom: 20px;
      @media screen and (max-width: 520px) {
        font-size: min(21px, calc(21 / 390 * 100vw));
        margin-top: -20px;
        margin-bottom: 10px;
        word-break: keep-all;
      }
    }
    .global_read {
      text-align: center;
      font-family: "Zen Maru Gothic";
      font-size: 20px;
      font-weight: 400;
      line-height: 176%;
      margin-bottom: 80px;
      @media screen and (max-width: 520px) {
        font-size: min(17px, calc(17 / 390 * 100vw));
        word-break: keep-all;
        margin-bottom: 40px;
      }
    }
    .global_block {
      background: #fff;
      border-radius: 55px;
      padding: 64px 0;
      margin-bottom: 40px;
      @media screen and (max-width: 520px) {
        padding: 35px 0;
        margin-bottom: 30px;
        border-radius: 20px;
      }
    }
    .global_block_inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      max-width: 600px;
      width: calc(100% - 50px);
      margin: 0 auto;
    }
    .global_block_header {
      h3 {
        color: #91551b;
        font-family: "Zen Kaku Gothic New";
        font-size: 30px;
        font-style: normal;
        font-weight: 400;
        line-height: 154%;
        text-align: center;
        border-bottom: 1.5px dashed #91551b;
        padding-bottom: 38px;
        margin-bottom: 38px;
        @media screen and (max-width: 520px) {
          font-size: min(21px, calc(21 / 390 * 100vw));
          padding-bottom: 20px;
          margin-bottom: 20px;
        }
        span {
          font-size: 25px;
          @media screen and (max-width: 520px) {
            font-size: min(20px, calc(20 / 390 * 100vw));
          }
        }
        &.england {
          background-image: url(../img/england.svg);
          background-size: 132px 96px;
          background-position: center top;
          background-repeat: no-repeat;
          @media screen and (max-width: 520px) {
            background-size: 100px 72px;
          }
        }
        &.america {
          background-image: url(../img/america.svg);
          background-size: 132px 96px;
          background-position: center top;
          background-repeat: no-repeat;
          @media screen and (max-width: 520px) {
            background-size: 100px 72px;
          }
        }
      }
    }
    .global_block_content {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 28px;
      @media screen and (max-width: 600px) {
        flex-direction: column;
        gap: 20px;
      }
      .text {
        flex: 1;
        p {
          font-size: 15px;
          font-family: "Zen Maru Gothic";
          font-weight: 400;
          line-height: 160%;
          a {
            color: #F1992D;
            font-weight: 400;
            text-decoration: underline;
          }
        }
      }
      .image {
        flex: 0 0 auto;
        width: 182px;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        @media screen and (max-width: 600px) {
          flex: 1;
          width: 182px;
          max-width: 182px;
          margin: 0 auto;
        }
        img {
          width: 100%;
          height: auto;
          object-fit: contain;
        }
      }
    }
  }
}
.messages {
  background: #fff;
  padding-bottom: 145px;
  @media screen and (max-width: 520px) {
    padding-bottom: 75px;
  }
  .sf-inner {
    padding: 0;
    .messages_icon {
      width: 256px;
      height: auto;
      display: block;
      margin: 0 auto;
      @media screen and (max-width: 520px) {
        width: 144px;
      }
    }
    h2 {
      color: #4d9743;
      text-align: center;
      font-family: "Zen Kaku Gothic New";
      font-size: 30px;
      font-style: normal;
      font-weight: 400;
      line-height: 154%;
      margin-bottom: 50px;
      @media screen and (max-width: 520px) {
        font-size: min(21px, calc(21 / 390 * 100vw));
        margin-bottom: 20px;
      }
    }
    .messages_list {
      .messages_item {
        border-radius: 55px;
        background: #f9f4eb;
        padding: 65px 0;
        position: relative;
        @media screen and (max-width: 520px) {
          padding: 35px 0;
          border-radius: 20px;
        }
        &:after {
          content: "";
          width: 84px;
          height: 65px;
          background-image: url(../img/messages_baloon.svg);
          background-size: contain;
          background-position: center center;
          background-repeat: no-repeat;
          position: absolute;
          bottom: 0;
          right: 190px;
          transform: translateY(100%);
        }
        @media screen and (max-width: 520px) {
          &:after {
            right: 50px;
            width: 44px;
            height: 34px;
          }
        }
        .messages_item_inner {
          max-width: 600px;
          width: calc(100% - 50px);
          margin: 0 auto;
          .company_logo {
            width: 316px;
            text-align: center;
            margin: 0 auto 24px;
            max-width: 100%;
            img {
              width: 100%;
              height: auto;
            }
          }
          h3 {
            color: #91551b;
            font-family: "Zen Kaku Gothic New";
            font-size: 30px;
            font-style: normal;
            font-weight: 400;
            line-height: 154%;
            text-align: center;
            margin-bottom: 24px;
            border-bottom: 1.5px dashed #91551b;
            padding-bottom: 24px;
            @media screen and (max-width: 520px) {
              font-size: min(21px, calc(21 / 390 * 100vw));
              margin-bottom: 20px;
              padding-bottom: 20px;
            }
          }
          p {
            color: #222;
            font-family: "Zen Maru Gothic";
            font-size: 15px;
            font-style: normal;
            font-weight: 400;
            line-height: 160%; /* 24px */
          }
        }
      }
    }
  }
}
.donate_method {
  background: #dbf6d8;
  .sf-inner {
    .donate_method_icon {
      width: 256px;
      height: auto;
      display: block;
      margin: 0 auto;
      @media screen and (max-width: 520px) {
        width: 144px;
      }
    }
    h2 {
      color: #91551b;
      text-align: center;
      font-family: "Zen Kaku Gothic New";
      font-size: 30px;
      font-style: normal;
      font-weight: 400;
      line-height: 154%;
      margin-bottom: 50px;
      @media screen and (max-width: 520px) {
        font-size: min(21px, calc(21 / 390 * 100vw));
        margin-bottom: 20px;
      }
    }
    p {
      color: #222;
      text-align: center;
      font-family: "Zen Maru Gothic";
      font-size: 20px;
      font-style: normal;
      font-weight: 400;
      line-height: 176%;
      @media screen and (max-width: 520px) {
        font-size: min(17px, calc(17 / 390 * 100vw));
        word-break: keep-all;
      }
    }
    .donate_method_list {
      max-width: 600px;
      margin: 0 auto;
      padding: 80px 0;
      .donate_method_item {
        margin-bottom: 85px;
        display: flex;
        flex-direction: column;
        align-items: center;
        @media screen and (max-width: 520px) {
          width: 100%;
          margin: 0 auto 40px;
        }
        h3 {
          color: #4d9743;
          text-align: center;
          font-family: "Zen Kaku Gothic New";
          font-size: 25px;
          font-style: normal;
          font-weight: 400;
          line-height: 154%;
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 20px;
          margin-bottom: 24px;
          @media screen and (max-width: 520px) {
            font-size: min(21px, calc(21 / 390 * 100vw));
            margin-bottom: 20px;
          }
          &:before {
            content: "";
            width: 37px;
            height: 35px;
            display: block;
            background-image: url(../img/check_icon.svg);
            background-size: contain;
            background-position: center center;
            background-repeat: no-repeat;
          }
        }
        p {
          color: #222;
          font-family: "Zen Maru Gothic";
          font-size: 17px;
          font-style: normal;
          font-weight: 400;
          line-height: 160%;
          margin-bottom: 35px;
          text-align: left;
          @media screen and (max-width: 520px) {
            font-size: min(14px, calc(14 / 390 * 100vw));
            word-break: break-all;
            margin-bottom: 0;
          }
          strong {
            color: #91551b;
            font-weight: 400;
            display: inline;
            background-image: linear-gradient(
              to right,
              #91551b 3px,
              transparent 4px
            );
            background-size: 6px 1px;
            background-repeat: repeat-x;
            background-position: left bottom;
          }
        }
        a {
          margin: 0 auto;
          width: 344px;
          justify-content: center;
          position: relative;
          @media screen and (max-width: 520px) {
            margin-top: 40px;
          }
          .p-sf-donate-modal-btn__icon {
            position: absolute;
            right: 30px;
            top: 50%;
            transform: translateY(-50%);
          }
        }
        .p-sf-donate-modal-wrap {
          width: 100%;
        }
      }
      .deducation_note {
        font-size: 15px;
        text-align: left;
        word-break: break-all;
        a {
          color: #f1992d;
          font-weight: 400;
          text-decoration: underline;
        }
      }
    }
  }
}
.donate_use {
  background: #fff;
  padding: 80px 0;
  @media screen and (max-width: 520px) {
    padding: 45px 0;
  }
  .sf-inner {
    padding: 0;
    .donate_use_icon {
      width: 256px;
      height: auto;
      display: block;
      margin: 0 auto;
      @media screen and (max-width: 520px) {
        width: 144px;
      }
    }
    h2 {
      color: #91551b;
      text-align: center;
      font-family: "Zen Kaku Gothic New";
      font-size: 30px;
      font-style: normal;
      font-weight: 400;
      line-height: 154%;
      margin-bottom: 50px;
      @media screen and (max-width: 520px) {
        font-size: min(21px, calc(21 / 390 * 100vw));
        margin-bottom: 20px;
      }
    }
    p {
      color: #222;
      font-family: "Zen Maru Gothic";
      font-size: 20px;
      font-style: normal;
      font-weight: 400;
      line-height: 176%;
      text-align: center;
      max-width: 632px;
      margin: 0 auto;
      @media screen and (max-width: 520px) {
        font-size: min(17px, calc(17 / 390 * 100vw));
        word-break: keep-all;
      }
      storng {
        color: #91551b;
        font-weight: 400;
        display: inline;
        background-image: linear-gradient(
          to right,
          #91551b 3px,
          transparent 4px
        );
        background-size: 6px 1px;
        background-repeat: repeat-x;
        background-position: left bottom;
        -webkit-box-decoration-break: clone;
        box-decoration-break: clone;
      }
    }
    .donate_use_target {
      border-radius: 10px;
      background: #dbf6d8;
      max-width: 880px;
      margin: 70px auto;
      padding: 40px 0;
      .donate_use_target_inner {
        max-width: 600px;
        width: calc(100% - 50px);
        margin: 0 auto;
        h3 {
          color: #4d9743;
          text-align: center;
          font-family: "Zen Kaku Gothic New";
          font-size: 25px;
          font-style: normal;
          font-weight: 400;
          line-height: 154%;
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 20px;
          margin-bottom: 24px;
          @media screen and (max-width: 520px) {
            font-size: min(21px, calc(21 / 390 * 100vw));
            margin-bottom: 20px;
          }
          &:before {
            content: "";
            width: 37px;
            height: 35px;
            display: block;
            background-image: url(../img/check_icon.svg);
            background-size: contain;
            background-position: center center;
            background-repeat: no-repeat;
          }
        }
        ul {
          list-style: none;
          padding: 0;
          margin: 0 0 35px 0;
          font-size: 20px;
          display: flex;
          flex-direction: column;
          align-items: center;
          @media screen and (max-width: 520px) {
            font-size: min(17px, calc(17 / 390 * 100vw));
            margin: 0 0 20px 0;
          }
          li {
            color: #91551b;
            font-weight: 400;
            @media screen and (max-width: 520px) {
              font-size: min(17px, calc(17 / 390 * 100vw));
              text-align: center;
            }
            br {
              display: none;
              @media screen and (max-width: 520px) {
                display: block;
              }
            }
            strong {
              font-family: "Zen Maru Gothic";
              font-weight: 400;
              word-break: keep-all;
              display: inline;
              background-image: linear-gradient(
                to right,
                #91551b 3px,
                transparent 4px
              );
              background-size: 6px 1px;
              background-repeat: repeat-x;
              background-position: left bottom;
              -webkit-box-decoration-break: clone;
              box-decoration-break: clone;
            }
          }
        }
        p {
          font-size: 17px;
          text-align: left;
          word-break: break-all;
          @media screen and (max-width: 520px) {
            font-size: min(14px, calc(14 / 390 * 100vw));
            word-break: break-all;
          }
        }
      }
    }
    .family_introduce {
      border-radius: 55px;
      background: #f9f4eb;
      max-width: 980px;
      margin: 70px auto;
      padding: 40px 0 50px;
      @media screen and (max-width: 560px) {
        padding: 20px 0 30px;
        border-radius: 20px;
        margin: 40px auto;
      }
    }
    .family_introduce_inner {
      max-width: 600px;
      width: calc(100% - 50px);
      margin: 0 auto;
      h3 {
        color: #91551b;
        text-align: center;
        font-family: "Zen Kaku Gothic New";
        font-size: 30px;
        font-style: normal;
        font-weight: 400;
        line-height: 154%;
        margin-bottom: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 40px;
        @media screen and (max-width: 560px) {
          font-size: min(21px, calc(21 / 390 * 100vw));
          margin-bottom: 20px;
          flex-wrap: wrap;
          gap: 10px;
        }
        &:before {
          content: "";
          width: 83px;
          height: 64px;
          display: block;
          background-image: url(../img/family_cat.svg);
          background-size: contain;
          background-position: center center;
          background-repeat: no-repeat;
        }
        &:after {
          content: "";
          width: 83px;
          height: 64px;
          display: block;
          background-image: url(../img/family_dog.svg);
          background-size: contain;
          background-position: center center;
          background-repeat: no-repeat;
        }
        @media screen and (max-width: 487px) {
          &:before {
            width: calc(50% - 5px);
            height: 48px;
            order: 2;
            background-position: center right;
          }
          &:after {
            width: calc(50% - 5px);
            height: 48px;
            order: 3;
            background-position: center left;
          }
        }
      }
      .family_introduce_list {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        @media screen and (max-width: 560px) {
          gap: 20px;
        }
      }
      .family_introduce_item {
        display: flex;
        flex-direction: column;
        .family_introduce_item_header {
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 20px;
          padding-bottom: 20px;
          border-bottom: 1px dashed #91551b;
          margin-bottom: 20px;
          @media screen and (max-width: 560px) {
            flex-direction: column;
            gap: 20px;
            padding-bottom: 20px;
            border-bottom: 1px dashed #91551b;
            margin-bottom: 20px;
          }
          .family_introduce_item_image {
            width: 280px;
            height: 180px;
            border-radius: 12px;
            overflow: hidden;
            background: #d7d7d7;
            flex: 0 0 auto;
            img {
              width: 100%;
              height: 100%;
              object-fit: cover;
            }
          }
          .family_introduce_item_meta {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: center;
            gap: 10px;
            flex: 1 0 auto;
            @media screen and (max-width: 560px) {
              gap: 4px;
              align-items: center;
            }
            .date {
              color: #222;
              font-family: "Zen Kaku Gothic New";
              font-size: 14px;
              font-style: normal;
              font-weight: 400;
              line-height: 154%; /* 21.56px */
              @media screen and (max-width: 560px) {
                text-align: center;
              }
            }
            .organization {
              color: #222;
              font-family: "Zen Kaku Gothic New";
              font-size: 17px;
              font-style: normal;
              font-weight: 400;
              line-height: 154%;
              @media screen and (max-width: 560px) {
                font-size: min(14px, calc(14 / 390 * 100vw));
                text-align: center;
              }
            }
            .name {
              color: #4d9743;
              font-family: "Zen Kaku Gothic New";
              font-size: 20px;
              font-style: normal;
              font-weight: 400;
              line-height: 154%; /* 30.8px */
              @media screen and (max-width: 560px) {
                font-size: min(17px, calc(17 / 390 * 100vw));
                text-align: center;
              }
            }
          }
        }
        p {
          color: #222;
          font-family: "Zen Maru Gothic";
          font-size: 15px;
          font-style: normal;
          font-weight: 400;
          line-height: 160%;
          text-align: left;
          word-break: break-all;
        }
      }
    }
  }
}

.terms {
  background: #f9f4eb;
  padding: 60px 0;
  .sf-inner {
    max-width: 600px;
    h2 {
      color: #4d9743;
      text-align: center;
      font-family: "Zen Kaku Gothic New";
      font-size: 30px;
      font-style: normal;
      font-weight: 400;
      line-height: 154%;
      margin-bottom: 48px;
      @media screen and (max-width: 520px) {
        font-size: min(21px, calc(21 / 390 * 100vw));
        margin-bottom: 20px;
      }
    }
    .terms_inner {
      .terms_item {
        margin-bottom: 48px;
        h3 {
          color: #91551b;
          text-align: center;
          font-family: "Zen Kaku Gothic New";
          font-size: 20px;
          font-style: normal;
          font-weight: 400;
          line-height: 154%; /* 30.8px */
          margin-bottom: 30px;
        }
        ul {
          list-style: disc;
          li {
            color: #252525;
            font-family: "Zen Maru Gothic";
            font-size: 15px;
            font-style: normal;
            font-weight: 400;
            line-height: 160%;
            a {
              color: #f1992d;
              font-weight: 400;
              text-decoration: underline;
            }
          }
        }
      }
      .about_anidone {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        padding: 60px 0;
        img {
          max-width: 255px;
        }
        h4 {
          color: #4d9743;
          text-align: center;
          font-family: "Zen Kaku Gothic New";
          font-size: 30px;
          font-style: normal;
          font-weight: 400;
          line-height: 154%;
          @media screen and (max-width: 520px) {
            font-size: min(21px, calc(21 / 390 * 100vw));
            margin-bottom: 20px;
          }
        }
        p {
          color: #222;
          font-family: "Zen Maru Gothic";
          font-size: 15px;
          font-style: normal;
          font-weight: 400;
          line-height: 160%;
          a {
            color: #f1992d;
            font-weight: 400;
            text-decoration: underline;
          }
        }
      }
    }
  }
}
.p-sf footer {
  padding: 45px 0;
  color: #000;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.216px;
  background: #fff;
}
/** Donte Button  **/
.p-sf-donate-modal-wrap {
  text-align: center;
  margin-top: 1.875rem;
}

.p-sf-donate-modal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.6875rem;
  max-width: 100%;
  padding: 0.9375rem 1.9375rem;
  border: none;
  border-radius: 0.8125rem;
  background: #f1992d;
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.4375rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.54;
  text-align: center;
  cursor: pointer;
  box-sizing: border-box;
  @media screen and (max-width: 560px) {
    font-size: min(16px, calc(16 / 390 * 100vw));
    padding: 10px 20px;
    position: relative;
    width: 100%;
    height: 4em;
    display: flex;
  }
  br {
    display: none;
    @media screen and (max-width: 560px) {
      display: block;
    }
  }
  .p-sf-donate-modal-btn__icon {
    @media screen and (max-width: 560px) {
      position: absolute;
      top: 50%;
      right: 20px;
      transform: translateY(-50%);
    }
  }
}

.p-sf-donate-modal-btn:hover {
  opacity: 0.92;
}

.p-sf-donate-modal-btn:focus-visible {
  outline: 0.125rem solid #91551b;
  outline-offset: 0.125rem;
}

.p-sf-donate-modal-btn__label {
  flex-shrink: 1;
}

.p-sf-donate-modal-btn__icon {
  flex-shrink: 0;
  line-height: 0;
}

.p-sf-donate-modal-btn__icon img {
  display: block;
  width: 1.375rem;
  height: 1.375rem;
  object-fit: contain;
}

.sf-donate_exapmle {
  margin-top: 12px;
  p {
    color: #333;
    font-family: "Zen Maru Gothic";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 25.2px */
    span {
      font-size: 24px;
    }
  }
  small {
    color: #333;
    font-family: "Zen Maru Gothic";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
  }
}

.donate_cta {
  position: fixed;
  bottom: 28px;
  right: 36px;
  width: 180px;
  z-index: 100;
  @media screen and (max-width: 520px) {
    bottom: 14px;
    right: 0;
    width: 120px;
  }
  button {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }
}

body.page-template-page-senior-fund .grecaptcha-badge {
  visibility: hidden !important;
}