@charset "UTF-8";
/*===========================================================================
base
===========================================================================*/
/*--色設定--*/
/*--フォントサイズ--*/
/*-- 横幅 --*/
/*--メディアクエリ--*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
.--animate__fadeIn {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
.--animate__fadeIn.--animated {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
}

.--animate__scrollIn {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
.--animate__scrollIn.--animated {
  -webkit-animation-name: scrollIn;
          animation-name: scrollIn;
}

.--animated {
  visibility: visible;
  opacity: 1;
}

@-webkit-keyframes fadeIn {
  from {
    -webkit-transform: translateY(25%);
            transform: translateY(25%);
    opacity: 0;
  }
}

@keyframes fadeIn {
  from {
    -webkit-transform: translateY(25%);
            transform: translateY(25%);
    opacity: 0;
  }
}
@-webkit-keyframes scrollIn {
  from {
    opacity: 0;
    -webkit-transform: translate(0, 60px) scale(1.1);
            transform: translate(0, 60px) scale(1.1);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0, 0) scale(1);
            transform: translate(0, 0) scale(1);
  }
}
@keyframes scrollIn {
  from {
    opacity: 0;
    -webkit-transform: translate(0, 60px) scale(1.1);
            transform: translate(0, 60px) scale(1.1);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0, 0) scale(1);
            transform: translate(0, 0) scale(1);
  }
}
@-webkit-keyframes move-forever {
  0% {
    -webkit-transform: translate3d(-90px, 0, 0);
            transform: translate3d(-90px, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(85px, 0, 0);
            transform: translate3d(85px, 0, 0);
  }
}
@keyframes move-forever {
  0% {
    -webkit-transform: translate3d(-90px, 0, 0);
            transform: translate3d(-90px, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(85px, 0, 0);
            transform: translate3d(85px, 0, 0);
  }
}
/*===========================================================================
fonts
===========================================================================*/
/*===========================================================================
components
===========================================================================*/
/*--elements--*/
html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
@media screen and (max-width: 767px) {
  html {
    font-size: 54.6875%;
  }
}

body {
  margin: 0;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", "Helvetica Neue", "Arial", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  color: #222;
  line-height: 1.5;
}

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

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

  .pc {
    display: none;
  }
}
/*--コンテナ--*/
.container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1199px) {
  .container {
    padding: 0 3.2rem;
  }
}

.main {
  overflow: hidden;
}

.breadcrumb-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.breadcrumb-list__item {
  font-size: 1.2rem;
}
.breadcrumb-list__item > a:hover {
  color: #E40337;
  text-decoration: underline;
}
.breadcrumb-list__item:not(:last-of-type):after {
  content: "";
  display: inline-block;
  border-top: 1px solid #222;
  border-right: 1px solid #222;
  width: 0.6rem;
  height: 0.6rem;
  -webkit-transform: rotate(45deg) translateY(-50%);
      -ms-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  -webkit-transform-origin: left top;
      -ms-transform-origin: left top;
          transform-origin: left top;
  margin: 0 1.2rem;
}
@media screen and (min-width: 768px) {
  .breadcrumb {
    margin-top: 2.4rem;
  }
  .header.--scroll + .breadcrumb {
    margin-top: 10rem;
  }
}
@media screen and (max-width: 767px) {
  .breadcrumb > .container {
    padding: 1.6rem 2.4rem;
  }
  .breadcrumb-list {
    margin-left: 0;
    width: 100%;
    max-width: 100%;
  }
}

.btn {
  display: inline-block;
  padding: 1.2rem 3.2rem;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  overflow: hidden;
  z-index: 10;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 100px;
  position: relative;
  border: 2px solid transparent;
  background: #fff;
}
.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.6rem;
  border-top: 1px solid transparent;
  border-right: 1px solid transparent;
  -webkit-transform: translateY(-50%) rotate(45deg);
      -ms-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  width: 0.5em;
  height: 0.5em;
}
.btn--red {
  border-color: #E40337;
  color: #E40337;
}
.btn--red::before {
  border-color: #E40337;
}
.btn--red:hover {
  background: #E40337;
  color: #fff;
}
.btn--red:hover::before {
  border-color: #fff;
}
.btn--white {
  border-color: #fff;
  color: #222;
}
.btn--white::before {
  border-color: #222;
}
.btn--white:hover {
  color: #E40337;
}
.btn--white:hover::before {
  border-color: #E40337;
}
@media screen and (min-width: 768px) {
  .btn {
    min-width: 250px;
  }
}

.cta {
  margin-top: 12.8rem;
}
.cta__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  color: #fff;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.cta__item img {
  max-width: 30%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.cta__item:hover img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.cta__item--donate {
  background-color: #E40337;
}
.cta__item--donate:hover {
  background-color: #cb0331;
}
.cta__item--support {
  background-color: #F09A8E;
}
.cta__item--support:hover {
  background-color: #ed8677;
}
@media screen and (min-width: 768px) {
  .cta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .cta__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 4.8rem;
  }
  .cta__item img {
    height: 45px;
  }
  .cta__item p {
    margin-top: 1em;
  }
}
@media screen and (max-width: 767px) {
  .cta__item {
    padding: 3.2rem;
  }
  .cta__item img {
    width: 45px;
  }
  .cta__item p {
    margin-left: 2em;
  }
}

.card > a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #ccc;
}
.card__image {
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}
.card__image img {
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover .card__image img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.card__body {
  padding: 2.4rem;
  height: 100%;
}
.card__ttl {
  font-weight: 700;
  font-size: 2rem;
}
a:hover .card__ttl {
  color: #E40337;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.card__txt {
  font-size: 1.4rem;
  margin-top: 1.2rem;
}
.card__name {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 1.2rem;
}
.card__name img {
  width: 32px;
  height: 32px;
  border-radius: 100px;
}
.card__name figcaption {
  font-size: 1.4rem;
  margin-left: 0.5em;
}
.card__tag {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  margin-top: 1.2rem;
}
.card__tag span {
  font-size: 1.2rem;
  line-height: 1;
  padding: 0.6rem 0.8rem;
  color: #999;
  border: 1px solid #999;
}

.heading-01 span {
  display: block;
  text-align: center;
}
.heading-01 span:nth-of-type(1) {
  font-family: "GenJyuuGothic";
}
.heading-01 span:nth-of-type(2) {
  font-family: "Baloo 2", "Arial", cursive;
  color: #E40337;
}
@media screen and (min-width: 768px) {
  .heading-01 span:nth-of-type(1) {
    font-size: 4.8rem;
  }
  .heading-01 span:nth-of-type(1) small {
    font-size: 3.2rem;
  }
  .heading-01 span:nth-of-type(2) {
    font-size: 2.4rem;
    margin-top: -0.25em;
  }
}
@media screen and (min-width: 768px) and (max-width: 1099px) {
  .heading-01 span:nth-of-type(1) {
    font-size: 4.2rem;
  }
  .heading-01 span:nth-of-type(2) {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .heading-01 span:nth-of-type(1) {
    font-size: 4rem;
    line-height: 1;
  }
  .heading-01 span:nth-of-type(1) small {
    font-size: 2.8rem;
  }
  .heading-01 span:nth-of-type(2) {
    font-size: 2rem;
    margin-top: 0.25em;
  }
}

.heading-02 {
  position: relative;
  font-family: "GenJyuuGothic";
  font-weight: 500;
}
.heading-02::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background-color: #E40337;
  border-radius: 50px;
}
@media screen and (min-width: 768px) {
  .heading-02 {
    font-size: 3.2rem;
    padding: 2.4rem;
  }
  .heading-02::before {
    width: 6px;
  }
}
@media screen and (max-width: 767px) {
  .heading-02 {
    font-size: 2.8rem;
    padding: 2rem;
  }
  .heading-02::before {
    width: 3px;
  }
}

.heading-03 {
  position: relative;
  font-family: "GenJyuuGothic";
  font-weight: 500;
  text-align: center;
}
.heading-03::before {
  content: "";
  position: absolute;
  top: 110%;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 50px;
  background-color: #E40337;
}
@media screen and (min-width: 768px) {
  .heading-03 {
    font-size: 4.2rem;
  }
  .heading-03::before {
    height: 6px;
    width: 100px;
  }
}
@media screen and (max-width: 767px) {
  .heading-03 {
    font-size: 3.2rem;
  }
  .heading-03::before {
    height: 3px;
    width: 75px;
  }
}

.heading-04 span:nth-of-type(1) {
  position: relative;
  display: block;
  font-family: "Baloo 2", "Arial", cursive;
}
.heading-04 span:nth-of-type(1)::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  height: 3px;
  border-radius: 50px;
  background-color: #E40337;
}
.heading-04 span:nth-of-type(2) {
  display: block;
  font-family: "GenJyuuGothic";
  margin-top: 1em;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .heading-04 {
    font-size: 4.8rem;
  }
  .heading-04 span:nth-of-type(1)::before {
    width: 70px;
  }
}
@media screen and (max-width: 767px) {
  .heading-04 {
    font-size: 3.2rem;
  }
  .heading-04 span:nth-of-type(1)::before {
    width: 50px;
  }
}

.heading-05 {
  position: relative;
  padding-left: 2em;
  font-family: "GenJyuuGothic";
  font-weight: 500;
}
.heading-05::before {
  position: absolute;
  top: 0.75em;
  left: 0;
  content: "";
  display: block;
  width: 1.5em;
  height: 2px;
  border-radius: 50px;
  background: #E40337;
}
@media screen and (min-width: 768px) {
  .heading-05 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .heading-05 {
    font-size: 2rem;
  }
}

.linkcard {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #ccc;
  margin: 0 auto;
}
.linkcard:hover {
  border: 2px solid #E40337;
}
.linkcard__body {
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
}
.linkcard__body img {
  margin-left: 0.25em;
  height: 0.75em;
  vertical-align: baseline;
}
.linkcard__image img {
  width: 100%;
}
.linkcard:hover .linkcard__txt {
  color: #E40337;
}
.linkcard--service {
  color: #01367C;
}
.linkcard--service:hover {
  border-color: #01367C;
}
.linkcard--service:hover .linkcard__txt {
  color: #01367C;
}
@media screen and (min-width: 768px) {
  .linkcard {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    max-width: 800px;
  }
  .linkcard__image {
    overflow: hidden;
    border-radius: 10px 0 0 10px;
    -webkit-flex-basis: 40%;
        -ms-flex-preferred-size: 40%;
            flex-basis: 40%;
  }
  .linkcard__image img {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border-radius: 10px 0 0 10px;
  }
  .linkcard:hover .linkcard__image img {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }
  .linkcard__body {
    padding: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .linkcard {
    display: block;
    max-width: 800px;
  }
  .linkcard__image {
    border-radius: 10px 10px 0 0;
  }
  .linkcard__image img {
    border-radius: 10px 10px 0 0;
  }
  .linkcard__body {
    padding: 1.4rem;
    text-align: center;
  }
}

.list__item {
  position: relative;
  padding-left: 2.5em;
  line-height: 2;
}
.list__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 1.325em;
  height: 1.325em;
  background-size: 100%;
}
.list__item a:hover {
  text-decoration: underline;
}
.list__item img {
  margin-left: 0.25em;
  height: 0.75em;
  vertical-align: baseline;
}
.list__item + .list__item {
  margin-top: 1em;
}
.list--red .list__item::before {
  background-image: url("../images/list-mark-red.svg");
}
.list--white .list__item::before {
  background-image: url("../images/list-mark-white.svg");
}
.list--anchor .list__item {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.list--anchor .list__item::after {
  content: "";
  position: absolute;
  right: -2em;
  top: 0.75em;
  width: 1.25em;
  height: 0.75em;
  background-repeat: no-repeat;
  background-image: url("../images/anchor-gray.svg");
}
.list--anchor.list--white .list__item::after {
  background-image: url("../images/anchor-white.svg");
}

@media screen and (min-width: 1100px) {
  .megamenu {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    background: rgba(193, 1, 45, 0.9);
  }
  .megamenu__inner {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    max-width: 1200px;
    padding: 3.2rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .megamenu__ttl {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    font-family: "Baloo 2", "Arial", cursive;
    font-size: 4.8rem;
    color: #fff;
    padding: 4.8rem;
    border-right: 1px solid #fff;
  }
  .megamenu-nav {
    -webkit-align-self: center;
        -ms-flex-item-align: center;
            align-self: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-left: 4.8rem;
    gap: 3.2rem;
  }
  .megamenu-nav__item > a {
    display: block;
    padding: 1.2rem 4rem 1.2rem 3.2rem;
    font-size: 1.4rem;
    text-align: center;
    text-decoration: none;
    overflow: hidden;
    z-index: 10;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border-radius: 100px;
    position: relative;
    border: 2px solid transparent;
    background: #fff;
    min-width: 250px;
  }
  .megamenu-nav__item > a::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 1.6rem;
    border-top: 1px solid #222;
    border-right: 1px solid #222;
    -webkit-transform: translateY(-50%) rotate(45deg);
        -ms-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
    width: 0.5em;
    height: 0.5em;
  }
  .megamenu-nav__item > a:hover {
    color: #E40337;
  }
  .megamenu-nav__item > a:hover::before {
    border-color: #E40337;
  }
  .megamenu:hover, .header-menu__item > a:hover ~ .megamenu {
    visibility: visible;
    opacity: 1;
  }
  .--index .megamenu {
    display: none;
  }
}
@media screen and (max-width: 1099px) {
  .megamenu {
    margin-left: 1em;
  }
  .megamenu__ttl {
    display: none;
  }
  .megamenu-nav {
    margin-left: 1em;
  }
  .megamenu-nav__item > a {
    display: block;
    position: relative;
    padding: 0.5em 0 0.5em 1.5em;
    color: #fff;
    font-size: 0.875em;
  }
  .megamenu-nav__item > a::before {
    position: absolute;
    top: 50%;
    left: 0;
    content: "";
    display: block;
    width: 1em;
    height: 1px;
    background: #fff;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.partner-logo {
  background: #fff;
}
.partner-logo img {
  width: 100%;
}
.partner-logo figcaption {
  text-align: center;
  margin-top: 0.5em;
  font-size: 1.2rem;
}

.point-list {
  counter-reset: point;
}
.point-list__item {
  position: relative;
  counter-increment: point;
  border: 1px solid #F09A8E;
  padding: 3.2rem;
  text-align: center;
  line-height: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.point-list__item > p, .point-list__item a {
  margin: auto 0;
}
.point-list__item::before {
  content: "0" counter(point);
  position: absolute;
  top: -0.5em;
  left: 50%;
  font-family: "Baloo 2", "Arial", cursive;
  color: #F09A8E;
  font-size: 4.8rem;
  line-height: 1;
  background: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 1.2rem;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 1100px) {
  .point-list__item {
    min-height: 135px;
  }
}
@media screen and (max-width: 767px) {
  .point-list__item + .point-list__item {
    margin-top: 3.2rem;
  }
}

.pagination {
  margin-top: 6.4rem;
}
.pagination-list {
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.pagination-list button {
  display: block;
  font-size: 1.4rem;
  width: 4.8rem;
  height: 4.8rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  border: 1px solid #ccc;
}
.pagination-list button:hover {
  background: #E40337;
  color: #fff;
}
.pagination-list button.--active {
  font-size: 1.4rem;
  width: 4.8rem;
  height: 4.8rem;
  background: #E40337;
  color: #fff;
  border-color: #E40337;
}
.pagination-list button span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.pagination-list button + button {
  margin-left: 0.8rem;
}
.pagination-list__item {
  position: relative;
}
.pagination-list__item > a {
  display: block;
  font-size: 1.4rem;
  width: 4.8rem;
  height: 4.8rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 1px solid #ccc;
}
.pagination-list__item > a:hover {
  background: #E40337;
  color: #fff;
}
.pagination-list__item.--active {
  font-size: 1.4rem;
  width: 4.8rem;
  height: 4.8rem;
  background: #E40337;
  color: #fff;
  border-color: #E40337;
}
.pagination-list__item span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.pagination-list__item + .pagination-list__item {
  margin-left: 0.8rem;
}

.service-list__image img {
  width: 100%;
  border-radius: 10px;
}
.service-list__image--border {
  border: 1px solid #ccc;
  border-radius: 10px;
}
.service-list__ttl {
  text-align: center;
  font-family: "GenJyuuGothic";
  font-weight: 500;
}
.service-list__txt {
  line-height: 2;
  font-size: 1.4rem;
}
.service-list__btn {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .service-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 6.4rem;
       -moz-column-gap: 6.4rem;
            column-gap: 6.4rem;
    row-gap: 8rem;
  }
  .service-list__ttl {
    margin-top: 3.2rem;
    font-size: 2.4rem;
  }
  .service-list__txt {
    margin-top: 2.4rem;
  }
  .service-list__btn {
    margin-top: 3.2rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1099px) {
  .service-list__ttl {
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 767px) {
  .service-list__ttl {
    margin-top: 2.4rem;
    font-size: 2.2rem;
  }
  .service-list__txt {
    margin-top: 1.6rem;
  }
  .service-list__btn {
    margin-top: 2.4rem;
  }
  .service-list__btn .btn {
    width: 100%;
  }
  .service-list__item + .service-list__item {
    margin-top: 4.8rem;
  }
}

.table {
  margin: 0 auto;
  width: 100%;
  border-bottom: 1px solid #ccc;
}
.table tr {
  border-top: 1px solid #ccc;
}
.table th {
  background: #eee;
  font-weight: normal;
}
.table th, .table td {
  padding: 1em;
}

.loader {
  background: #fff;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1003;
}

.loader-animation, .loader-animation:before, .loader-animation:after {
  border-radius: 50%;
  width: 10em;
  height: 10em;
}

.loader-animation {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  font-size: 5px;
  position: absolute;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(228, 3, 55, 0.8);
  border-right: 1.1em solid rgba(228, 3, 55, 0.8);
  border-bottom: 1.1em solid rgba(228, 3, 55, 0.8);
  border-left: 1.1em solid #ffffff;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}

@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/*===========================================================================
layout
===========================================================================*/
/*--header--*/
.header {
  position: relative;
  z-index: 998;
}
.header.--index .header-logo {
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  border-bottom-right-radius: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  width: 11vw;
  max-width: 150px;
  aspect-ratio: 1/1;
}
.header.--index .header-logo img {
  width: 55%;
}
.header-logo, .header-nav {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header.--scroll {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
}
.header.--hide .header-logo, .header.--hide .header-nav, .header.--hide .header-bars {
  visibility: hidden;
  opacity: 0;
}
.--active .header.--hide .header-nav, .--active .header.--hide .header-bars {
  visibility: visible;
  opacity: 1;
}
@media screen and (min-width: 1100px) {
  .header.--index .header-logo {
    -webkit-box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
            box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
  }
  .header.--index .header-nav {
    position: absolute;
    top: 24px;
    right: 24px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    background: #fff;
    border-radius: 50px;
    -webkit-box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
            box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
  }
  .header.--index.--scroll .header-nav {
    position: fixed;
  }
  .header.--index .header-menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 0 1em;
    font-size: 1.4rem;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header.--index .header-menu__item > a {
    display: block;
    padding: 0.75em 1em;
    text-align: center;
  }
  .header.--index .header-menu__item > a:hover {
    font-weight: 700;
    color: #E40337;
  }
  .header.--index .header-menu__item span {
    display: block;
    text-align: center;
    font-size: 1.2rem;
  }
  .header.--inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid #ccc;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .header.--inner.--hide {
    visibility: hidden;
    opacity: 0;
  }
  .header.--inner.--scroll {
    background: rgba(255, 255, 255, 0.9);
  }
  .header.--inner .header-logo {
    -webkit-flex-basis: 200px;
        -ms-flex-preferred-size: 200px;
            flex-basis: 200px;
    -webkit-align-self: center;
        -ms-flex-item-align: center;
            align-self: center;
    padding: 2.4rem 3.2rem;
  }
  .header.--inner .header-logo img {
    width: 140px;
  }
  .header.--inner .header-nav {
    margin-left: auto;
    padding-right: 3.2rem;
  }
  .header.--inner .header-menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
  }
  .header.--inner .header-menu__item > a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    padding: 0 1.6rem;
    font-size: 1.4rem;
  }
  .header.--inner .header-menu__item > a span {
    display: block;
    text-align: center;
    font-size: 1.2rem;
  }
  .header.--inner .header-menu__item > a::before {
    content: "";
    width: 100%;
    height: 2px;
    background: #E40337;
    position: absolute;
    top: 100%;
    left: 0;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .header.--inner .header-menu__item > a:hover {
    color: #E40337;
    font-weight: 700;
  }
  .header.--inner .header-menu__item > a:hover::before {
    visibility: visible;
    opacity: 1;
  }
  .header.--inner .header-menu__item.--active > a {
    color: #E40337;
    font-weight: 700;
  }
  .header.--inner .header-menu__item.--active > a::before {
    visibility: visible;
    opacity: 1;
  }
  .header-bars {
    display: none;
  }
}
@media screen and (max-width: 1099px) {
  .header.--scroll .header-logo {
    visibility: hidden;
    opacity: 0;
  }
  .header.--inner .header-logo {
    padding: 2.4rem;
  }
  .header.--inner .header-logo img {
    width: 140px;
  }
  .header-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    height: 100vh;
    background: #C1012D;
    z-index: 2000;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    -webkit-box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
            box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
    padding: 2.4rem 0;
  }
  .header-menu__item > a {
    display: block;
    padding: 1em;
    color: #fff;
    font-size: 1.4rem;
  }
  .header-menu__item + .header-menu__item {
    margin-top: unset;
  }
  .header-bars {
    position: fixed;
    z-index: 1001;
    line-height: 1;
    cursor: pointer;
    top: 40px;
    right: 30px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .header-bars::before {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    top: 49%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 100%;
    z-index: 1000;
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  .header-bars span {
    z-index: 1001;
    position: relative;
    width: 26px;
    height: 1px;
    display: block;
    background: #E40337;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .header-bars span:before, .header-bars span:after {
    content: "";
    position: absolute;
    display: inline-block;
    width: 26px;
    height: 1px;
    left: 0;
    background: #E40337;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .header-bars span:before {
    top: 8px;
  }
  .header-bars span:after {
    top: -8px;
  }
  .header-bars span.--close {
    background-color: transparent;
  }
  .header-bars span.--close:before, .header-bars span.--close:after {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    top: 8px;
  }
  .header-bars span.--active {
    background-color: transparent;
  }
  .header-bars span.--active:before, .header-bars span.--active:after {
    -webkit-transform-origin: 50% 50%;
        -ms-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    top: 0;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .header-bars span.--active:before {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
            transform: rotate3d(0, 0, 1, 45deg);
  }
  .header-bars span.--active:after {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
            transform: rotate3d(0, 0, 1, -45deg);
  }
  .--active .header-bars, .--hide .header-bars {
    visibility: visible;
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  .header.--index .header-logo {
    width: 85px;
    height: 85px;
  }
  .header.--index .header-logo img {
    width: 40px;
  }
}
.header * {
  min-height: 0;
  min-width: 0;
}

.cover {
  background-color: rgba(34, 34, 34, 0.4);
  color: #fff;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 997;
  overflow-y: scroll;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/*--footer--*/
.footer {
  padding-bottom: 2.4rem;
}
.footer-logo img {
  max-width: 100%;
}
.footer-info {
  margin-top: 3.2rem;
}
.footer-info__company {
  font-weight: 700;
}
.footer-info p {
  font-size: 1.4rem;
}
.footer-info p + p {
  margin-top: 0.5em;
}
.footer-menu__item {
  font-size: 1.4rem;
  line-height: 1;
}
.footer-menu__item > a {
  font-weight: 700;
}
.footer-menu__item > a:hover {
  text-decoration: underline;
  color: #E40337;
}
.footer-menu__item + .footer-menu__item {
  margin-top: 2em;
}
.footer-submenu {
  margin-top: 1em;
}
.footer-submenu__item {
  position: relative;
  font-weight: normal;
  padding-left: 1.5em;
}
.footer-submenu__item > a:hover {
  text-decoration: underline;
  color: #E40337;
}
.footer-submenu__item::before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  display: block;
  width: 1em;
  height: 1px;
  background: #999;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.footer-submenu__item + .footer-submenu__item {
  margin-top: 1em;
}
.footer-link img {
  width: 100%;
  max-width: 350px;
}
.footer .copyright {
  margin-top: 3.2rem;
  text-align: center;
  font-size: 1.2rem;
  opacity: 0.75;
}
@media screen and (min-width: 768px) {
  .footer {
    margin-top: 8rem;
  }
  .footer > .container {
    display: grid;
    grid-template-columns: 30% 1fr;
    grid-template-rows: 1fr -webkit-max-content;
    grid-template-rows: 1fr max-content;
    grid-template-areas: "company nav" "company contents";
    gap: 4.8rem;
  }
  .footer-company {
    grid-area: company;
  }
  .footer-logo img {
    width: 178px;
  }
  .footer-nav {
    grid-area: nav;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 1.6rem;
  }
  .footer-contents {
    grid-area: contents;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 1.6rem;
  }
  .footer-link {
    margin-right: auto;
  }
  .footer-kyumin {
    -webkit-align-self: flex-end;
        -ms-flex-item-align: end;
            align-self: flex-end;
    text-align: right;
  }
  .footer-kyumin img {
    width: 80px;
  }
  .footer-kyumin figcaption {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .footer {
    margin-top: 4.8rem;
  }
  .footer > .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer-company {
    display: contents;
  }
  .footer-logo {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .footer-logo img {
    width: 170px;
  }
  .footer-nav {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    border-bottom: 1px solid #ccc;
    margin: 0 -3.2rem 0;
    padding: 3.2rem;
    -webkit-columns: 2;
       -moz-columns: 2;
            columns: 2;
    gap: 2.4rem;
  }
  .footer-menu {
    font-size: 1.4rem;
  }
  .footer-menu + .footer-menu {
    margin-top: 2em;
  }
  .footer-info {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
  }
  .footer-contents {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
        -ms-flex-order: 4;
            order: 4;
    margin-top: 3.2rem;
  }
  .footer-kyumin {
    margin-top: 2.4rem;
    text-align: center;
  }
  .footer-kyumin img {
    width: 100px;
  }
  .footer-kyumin figcaption {
    font-size: 1.2rem;
  }
}

@media screen and (min-width: 768px) {
  .fixed-btn {
    position: fixed;
    z-index: 999;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    top: 50vh;
    right: 0;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .fixed-btn__item {
    padding: 2.4rem 1.6rem;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    letter-spacing: 0.05em;
    color: #fff;
    font-size: 1.4rem;
    -webkit-box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
            box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px 0 0 10px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .fixed-btn__item img {
    width: 1em;
    vertical-align: unset;
    margin-bottom: 0.5em;
  }
  .fixed-btn__item + .fixed-btn__item {
    margin-top: 1.6rem;
  }
  .fixed-btn__item--donate {
    background: #E40337;
  }
  .fixed-btn__item--support {
    background: #F09A8E;
  }
  .fixed-btn__item:hover {
    padding-right: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .fixed-btn {
    display: none;
  }
}

.title {
  padding: 6rem 0;
  position: relative;
}
.title__ttl span {
  display: block;
  text-align: center;
}
.title__ttl span:nth-of-type(1) {
  font-family: "Baloo 2", "Arial", cursive;
  color: #F09A8E;
  text-transform: uppercase;
  line-height: 1;
}
.title__ttl span:nth-of-type(2) {
  font-family: "GenJyuuGothic";
  font-weight: 500;
}
.title__bg {
  position: absolute;
  top: -8rem;
  right: -10rem;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .title__ttl span:nth-of-type(1) {
    font-size: 9rem;
  }
  .title__ttl span:nth-of-type(2) {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .title__ttl span:nth-of-type(1) {
    font-size: 5.4rem;
  }
  .title__ttl span:nth-of-type(2) {
    font-size: 1.6rem;
  }
}

.page-first {
  position: relative;
}
.page-first::before {
  position: absolute;
  left: 0;
  content: "";
  background: #C1012D;
  z-index: -1;
  width: 100%;
  margin-right: auto;
  border-radius: 0 20px 20px 0;
}
.page-first__image {
  width: 100%;
  background: #eee;
  padding: 3.2rem 0;
  margin-left: auto;
  border-radius: 20px 0 0 20px;
  background-size: cover;
}
.page-first__ttl {
  font-family: "GenJyuuGothic";
  font-weight: 500;
  color: #fff;
}
.page-first__body {
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
  color: #fff;
}
.page-first--nocontents::before {
  content: none;
}
.page-first__txt p + p {
  margin-top: 1em;
}
@media screen and (min-width: 1100px) {
  .page-first::before {
    max-width: calc( 1100px + (100% - 1100px )/2);
    height: calc(100% - 8rem);
    top: 8rem;
  }
  .page-first__image {
    max-width: calc( 1100px + (100% - 1100px )/2);
    height: 480px;
    background-position: center;
  }
  .page-first > .container {
    display: grid;
    grid-template-columns: -webkit-max-content 1fr;
    grid-template-columns: max-content 1fr;
    gap: 4.8rem;
    padding: 4.8rem 0;
  }
  .page-first__ttl {
    font-size: 3.2rem;
    border-right: 1px solid #fff;
    padding: 4.8rem 4.8rem 4.8rem 0;
  }
  .page-first__txt {
    line-height: 2;
  }
  .page-first__body {
    padding-right: 3.2rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1099px) {
  .page-first::before {
    max-width: calc(100% - 3.2rem);
    height: calc(100% - 8rem);
    top: 8rem;
  }
  .page-first__image {
    max-width: calc(100% - 3.2rem);
    height: 480px;
    background-position: center;
  }
  .page-first > .container {
    display: grid;
    grid-template-columns: minmax(-webkit-min-content, 45%) 1fr;
    grid-template-columns: minmax(min-content, 45%) 1fr;
    gap: 2.4rem;
    padding: 4.8rem 3.2rem;
  }
  .page-first__ttl {
    font-size: 2.4rem;
    border-right: 1px solid #fff;
    padding-right: 2.4rem;
  }
  .page-first__txt {
    line-height: 2;
  }
  .page-first__body {
    padding-right: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .page-first::before {
    width: calc(100% - 3.2rem);
    height: calc(100% - 8rem);
    top: 8rem;
  }
  .page-first > .container {
    padding-right: 4.8rem;
  }
  .page-first__image {
    width: calc(100% - 3.2rem);
    height: 200px;
  }
  .page-first__ttl {
    margin-top: 3.2rem;
    font-size: 2.4rem;
  }
  .page-first__body {
    padding: 3.2rem 3.2rem 3.2rem 0;
  }
  .page-first__txt {
    font-size: 1.4rem;
  }
}

.next {
  margin-top: 12rem;
}
.next__ttl {
  position: relative;
  font-family: "Baloo 2", "Arial", cursive;
  color: #F09A8E;
  line-height: 1;
  padding-top: 120px;
  text-align: center;
}
.next__ttl::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100px;
  background-color: #F09A8E;
}
.next .linkcard {
  margin-top: 4.8rem;
}
@media screen and (min-width: 1100px) {
  .next__ttl {
    font-size: 6rem;
  }
}
@media screen and (max-width: 1099px) {
  .next {
    padding: 0 3.2rem;
  }
  .next__ttl {
    font-size: 4.8rem;
  }
}

.page {
  /*--wordpress hack --*/
}
.page * + * {
  margin-top: 1em;
}
.page p {
  line-height: 2;
}
.page a {
  color: #E40337;
  font-weight: 700;
  text-decoration: underline;
}
.page a:hover {
  text-decoration: none;
}
.page h2 {
  position: relative;
  font-family: "GenJyuuGothic";
  font-weight: 500;
}
.page h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background-color: #E40337;
  border-radius: 50px;
}
@media screen and (min-width: 768px) {
  .page h2 {
    font-size: 3.2rem;
    padding: 2.4rem;
  }
  .page h2::before {
    width: 6px;
  }
}
@media screen and (max-width: 767px) {
  .page h2 {
    font-size: 2.8rem;
    padding: 2rem;
  }
  .page h2::before {
    width: 3px;
  }
}
.page h3 {
  position: relative;
  padding-left: 2em;
  font-family: "GenJyuuGothic";
  font-weight: 500;
}
.page h3::before {
  position: absolute;
  top: 0.75em;
  left: 0;
  content: "";
  display: block;
  width: 1.5em;
  height: 2px;
  border-radius: 50px;
  background: #E40337;
}
@media screen and (min-width: 768px) {
  .page h3 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .page h3 {
    font-size: 2rem;
  }
}
.page h4 {
  font-size: 1.8rem;
  font-weight: 700;
}
.page ul {
  list-style: disc;
  margin-left: 1.5em;
}
.page ul li + li {
  margin-top: 1.2rem;
}
.page ol {
  list-style: decimal;
  margin-left: 1.5em;
}
.page ol li + li {
  margin-top: 1.2rem;
}
.page ol li > ol {
  margin-left: 2em;
}
.page blockquote {
  background: #eee;
  padding: 1.6rem;
  font-size: 1.4rem;
}
.page blockquote cite {
  display: block;
  text-align: right;
  margin-top: 1.2rem;
}
.page table {
  border-top: 1px solid #999;
  border-collapse: collapse;
}
.page table tr {
  border-bottom: 1px solid #999;
  border-right: 1px solid #ccc;
}
.page table th {
  font-weight: 700;
}
.page table th, .page table td {
  padding: 0.5em 1em;
}
.page img {
  max-width: 100%;
  height: unset;
}
.page .wp-block-media-text__media img,
.page .wp-block-media-text__media video,
.page .wp-block-image img {
  max-width: 100%;
  height: auto !important;
}
.page .blocks-gallery-grid {
  margin: 0 !important;
}
.page .wp-block-image {
  max-width: 80%;
  margin: 2.4rem auto 0 !important;
}
.page .wp-block-image + * {
  margin-top: 4.8rem;
}

.error {
  padding: 8rem 0;
}
.error__ttl {
  font-weight: 700;
  font-size: 2.4rem;
  text-align: center;
}
.error__txt {
  margin-top: 3.2rem;
  text-align: center;
}
.error__btn {
  margin-top: 3.2rem;
  text-align: center;
}

/*===========================================================================
pages
===========================================================================*/
/*--index--*/
.mv {
  position: relative;
  z-index: 1;
}
.mv-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.mv-image__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  display: none;
}
.mv-image__item:nth-of-type(1) {
  background-image: url("../images/mv-01.webp?20220309");
}
.mv-image__item:nth-of-type(2) {
  background-image: url("../images/mv-02.webp?20220309");
}
.mv-image__item:nth-of-type(3) {
  background-image: url("../images/mv-03.webp?20220309");
}
.mv__waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.mv__waves .waves {
  position: relative;
  width: 100%;
  margin-bottom: -7px;
  /*Fix for safari gap*/
}
.mv__waves .parallax > use {
  -webkit-animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
          animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}
.mv__waves .parallax > use:nth-child(1) {
  -webkit-animation-delay: -2s;
          animation-delay: -2s;
  -webkit-animation-duration: 7s;
          animation-duration: 7s;
}
.mv__waves .parallax > use:nth-child(2) {
  -webkit-animation-delay: -3s;
          animation-delay: -3s;
  -webkit-animation-duration: 10s;
          animation-duration: 10s;
}
.mv__waves .parallax > use:nth-child(3) {
  -webkit-animation-delay: -4s;
          animation-delay: -4s;
  -webkit-animation-duration: 13s;
          animation-duration: 13s;
}
.mv__waves .parallax > use:nth-child(4) {
  -webkit-animation-delay: -5s;
          animation-delay: -5s;
}
@media screen and (min-width: 1100px) {
  .mv {
    height: 720px;
  }
  .mv__waves .waves {
    height: 15vh;
    min-height: 100px;
    max-height: 120px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1099px) {
  .mv {
    height: 520px;
  }
  .mv__waves .waves {
    height: 15vh;
    min-height: 100px;
    max-height: 120px;
  }
}
@media screen and (max-width: 767px) {
  .mv {
    height: 350px;
  }
  .mv-image__item {
    background-position: center bottom;
  }
  .mv__waves .waves {
    height: 8vh;
    min-height: 50px;
    max-height: 60px;
  }
}

.catch {
  position: relative;
  z-index: 2;
}
.catch__ttl {
  font-family: "GenJyuuGothic";
  font-weight: 500;
  line-height: 1.75;
}
.catch__ttl span {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(0%, rgba(255, 255, 255, 0.75)));
  background: -webkit-linear-gradient(transparent 0%, rgba(255, 255, 255, 0.75) 0%);
  background: linear-gradient(transparent 0%, rgba(255, 255, 255, 0.75) 0%);
}
.catch__txt {
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .catch {
    margin-top: -150px;
  }
  .catch__ttl {
    font-size: 4.8rem;
  }
  .catch__txt {
    margin-top: 3em;
  }
}
@media screen and (max-width: 767px) {
  .catch {
    margin-top: -90px;
  }
  .catch__ttl {
    font-size: 3.8rem;
  }
  .catch__txt {
    margin-top: 1.5em;
  }
}

.top-news__ttl span {
  display: block;
}
.top-news__ttl span:nth-of-type(1) {
  font-family: "GenJyuuGothic";
  font-weight: 500;
}
.top-news__ttl span:nth-of-type(2) {
  font-family: "Baloo 2", "Arial", cursive;
  color: #E40337;
}
.top-news-list {
  border-top: 1px solid #999;
}
.top-news-list__item > a {
  display: block;
  border-bottom: 1px solid #999;
  position: relative;
}
.top-news-list__item > a::after {
  content: "";
  position: absolute;
  width: 35px;
  height: 10px;
  top: 48%;
  right: 2.4rem;
  background-image: url(../images/anchor-news.svg);
  background-size: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.top-news-list__item > a:hover::after {
  right: 1.2rem;
}
.top-news-list__item time {
  display: block;
  color: #999;
  font-size: 1.4rem;
}
.top-news-list__item p {
  margin-top: 0.25em;
}
.top-news-list__item a:hover p {
  color: #E40337;
}
.top-news__btn {
  text-align: center;
}
.top-news__sns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1.6rem;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .top-news {
    margin-top: 7.5em;
  }
  .top-news > .container {
    display: grid;
    grid-template-columns: 1fr 68%;
    grid-template-rows: -webkit-max-content 1fr;
    grid-template-rows: max-content 1fr;
    grid-template-areas: "ttl body" "sns body";
  }
  .top-news__ttl {
    grid-area: ttl;
  }
  .top-news__ttl span:nth-of-type(1) {
    font-size: 3.2rem;
  }
  .top-news__ttl span:nth-of-type(2) {
    font-size: 2rem;
  }
  .top-news__body {
    grid-area: body;
  }
  .top-news-list__item > a {
    padding: 1em 3em 1em 1em;
  }
  .top-news__sns {
    grid-area: sns;
    padding-top: 2.4rem;
  }
  .top-news__btn {
    margin-top: 4.8rem;
  }
}
@media screen and (max-width: 767px) {
  .top-news {
    margin-top: 6.4rem;
  }
  .top-news > .container {
    position: relative;
  }
  .top-news__ttl span:nth-of-type(1) {
    font-size: 2.4rem;
  }
  .top-news__ttl span:nth-of-type(2) {
    font-size: 1.6rem;
  }
  .top-news-list__item {
    font-size: 1.4rem;
  }
  .top-news-list__item > a {
    padding: 0.75em 1.5em 0.75em 0.5em;
  }
  .top-news__body {
    margin-top: 3.2rem;
  }
  .top-news__btn {
    margin-top: 3.2rem;
  }
  .top-news__sns {
    margin-top: 2.4rem;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.sns {
  display: block;
  border: 1px solid transparent;
  border-radius: 5px;
  padding: 0.875rem 1.25rem;
}
.sns img {
  height: 16px;
  vertical-align: unset;
}
.sns--facebook {
  border-color: #1876F2;
}
.sns--twitter {
  border-color: #1C9CF3;
}
.sns--note {
  border-color: #3EC7B5;
}
.sns--youtube {
  border-color: #FE0000;
}

.top-about > .container {
  position: relative;
}
.top-about__ttl {
  font-family: "GenJyuuGothic";
  font-weight: 500;
}
.top-about__ttl span {
  color: #E40337;
}
.top-about__txt {
  line-height: 2;
}
.top-about__image img {
  width: 100%;
}
.top-about__bg {
  position: absolute;
  content: "";
  z-index: -2;
  background: #F09A8E;
  opacity: 0.2;
  aspect-ratio: 1/1;
  border-radius: 44% 56% 64% 36%/38% 38% 62% 62%;
}
@media screen and (min-width: 768px) {
  .top-about {
    margin-top: 8rem;
  }
  .top-about > .container {
    display: grid;
    grid-template-columns: 1fr 480px;
    grid-template-areas: "body image";
    gap: 3.2rem;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .top-about__body {
    grid-area: body;
  }
  .top-about__ttl {
    font-size: 4.8rem;
  }
  .top-about__txt {
    margin-top: 4.8rem;
  }
  .top-about__btn {
    margin-top: 4.8rem;
  }
  .top-about__image {
    grid-area: image;
  }
  .top-about__image img {
    border-radius: 44% 56% 38% 62%/40% 38% 62% 60%;
  }
  .top-about__bg {
    width: 80%;
    top: 0;
    right: -20%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1099px) {
  .top-about > .container {
    grid-template-columns: 1fr 45%;
  }
  .top-about__ttl {
    font-size: 3.6rem;
  }
  .top-about__image {
    -webkit-align-self: start;
        -ms-flex-item-align: start;
            align-self: start;
  }
}
@media screen and (max-width: 767px) {
  .top-about {
    margin-top: 8rem;
  }
  .top-about__image {
    margin-right: -3.2rem;
  }
  .top-about__image img {
    border-radius: 20px 0 0 20px;
  }
  .top-about__body {
    margin-top: 6.4rem;
  }
  .top-about__ttl {
    font-size: 2.8rem;
  }
  .top-about__txt {
    margin-top: 3.2rem;
  }
  .top-about__btn {
    margin-top: 3.2rem;
  }
  .top-about__bg {
    width: 100%;
    top: 100%;
    right: -15%;
  }
}

.top-grameen > .container {
  position: relative;
  background: #fff;
}
.top-grameen__ttl {
  font-family: "GenJyuuGothic";
}
.top-grameen__txt {
  line-height: 2;
}
.top-grameen__image img {
  width: 100%;
  border-radius: 10px;
}
.top-grameen__image figcaption {
  margin-top: 1em;
  text-align: center;
  font-size: 1.4rem;
}
.top-grameen__btn {
  margin-top: 3.2rem;
}
@media screen and (min-width: 768px) {
  .top-grameen {
    margin-top: 15.6rem;
  }
  .top-grameen > .container {
    display: grid;
    grid-template-columns: 450px 1fr;
    grid-template-areas: "image body";
    gap: 4.8rem;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 4.8rem;
    border-radius: 10px;
  }
  .top-grameen > .container::before {
    content: "";
    position: absolute;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    background: #FFF5F2;
    z-index: -1;
    top: -20px;
    left: -20px;
    border-radius: 20px;
  }
  .top-grameen__ttl {
    font-size: 3.2rem;
  }
  .top-grameen__txt {
    margin-top: 3.2rem;
  }
  .top-grameen__body {
    grid-area: body;
  }
  .top-grameen__image {
    grid-area: image;
  }
  .top-grameen__btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
    gap: 2.4rem;
  }
  .top-grameen__btn .btn {
    width: 100%;
    min-width: unset;
  }
}
@media screen and (min-width: 768px) and (max-width: 1099px) {
  .top-grameen {
    margin-top: 12rem;
  }
  .top-grameen > .container {
    border: 15px solid #FFF5F2;
    padding: 3.2rem 2.4rem;
    width: calc(100% - 4.8rem);
    grid-template-columns: 25% 1fr;
  }
  .top-grameen__ttl {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .top-grameen {
    margin-top: 12rem;
  }
  .top-grameen > .container {
    border: 15px solid #FFF5F2;
    padding: 3.2rem 2.4rem;
    width: calc(100% - 4.8rem);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .top-grameen__body {
    display: contents;
  }
  .top-grameen__ttl {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    font-size: 2.4rem;
    font-weight: 500;
  }
  .top-grameen__txt {
    margin-top: 2.4rem;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  .top-grameen__image {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
    margin-top: 2.4rem;
    text-align: center;
  }
  .top-grameen__image img {
    width: 75%;
  }
  .top-grameen__btn {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
        -ms-flex-order: 4;
            order: 4;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .top-grameen__btn .btn {
    width: 100%;
  }
  .top-grameen__btn .btn + .btn {
    margin-top: 1.6rem;
  }
}

.top-model > .container {
  position: relative;
}
.top-model__bg {
  position: absolute;
  content: "";
  z-index: -2;
  background: #E40337;
  opacity: 0.2;
  aspect-ratio: 1/1;
  border-radius: 43% 57% 70% 30%/71% 39% 61% 29%;
}
.top-model .service-list {
  margin-top: 4.8rem;
}
@media screen and (min-width: 768px) {
  .top-model {
    margin-top: 19.2rem;
  }
  .top-model__bg {
    width: 80%;
    top: -75%;
    left: -50%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1099px) {
  .top-model {
    margin-top: 12rem;
  }
}
@media screen and (max-width: 767px) {
  .top-model {
    margin-top: 12rem;
  }
  .top-model__bg {
    width: 100%;
    top: -50%;
    left: -20%;
  }
}

.top-member {
  margin-top: 19.2rem;
}
.top-member > .container {
  position: relative;
}
.top-member__list {
  margin-top: 4.8rem;
}
.top-member__list .slick-list {
  overflow: visible;
}
.top-member__list .slick-slide {
  opacity: 0.5;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.top-member__list .slick-current, .top-member__list .slick-active {
  opacity: 1;
}
.top-member__list .slick-next {
  border-top: 1px solid #999;
  border-right: 1px solid #999;
  -webkit-transform: translateY(-50%) rotate(45deg);
      -ms-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.top-member__list .slick-prev {
  border-top: 1px solid #999;
  border-left: 1px solid #999;
  -webkit-transform: translateY(-50%) rotate(-45deg);
      -ms-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}
.top-member__list .slick-arrow {
  display: block;
  position: absolute;
  top: 50%;
  font-size: 0;
  line-height: 0;
  width: 2rem;
  height: 2rem;
}
.top-member .slick-slider {
  position: static;
}
.top-member__btn {
  margin-top: 4.8rem;
  text-align: center;
}
.top-member__bg {
  position: absolute;
  content: "";
  z-index: -2;
  background: #F09A8E;
  opacity: 0.2;
  aspect-ratio: 1.25/1;
  border-radius: 57% 43% 62% 38%/79% 57% 43% 21%;
}
@media screen and (min-width: 768px) {
  .top-member {
    margin-top: 19.2rem;
  }
  .top-member__list .slick-slide {
    margin: 0 4rem;
  }
  .top-member__list .slick-next {
    right: 0;
  }
  .top-member__list .slick-prev {
    left: 0;
  }
  .top-member__bg {
    width: 80%;
    top: -70%;
    right: -20%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1099px) {
  .top-member {
    margin-top: 12rem;
  }
}
@media screen and (max-width: 767px) {
  .top-member {
    margin-top: 12rem;
  }
  .top-member__list .slick-slide {
    margin: 0 2rem;
  }
  .top-member__list .slick-next {
    right: 2.5rem;
  }
  .top-member__list .slick-prev {
    left: 2.5rem;
  }
  .top-member__bg {
    width: 100%;
    top: -50%;
    right: -20%;
  }
  .top-member__btn .btn {
    width: 100%;
  }
}

.top-partner {
  margin-top: 12rem;
  background: #FFF5F2;
  padding: 8rem 0;
}
.top-partner__list .slick-list {
  overflow: visible;
}
.top-partner__list .partner-logo {
  border: 0;
}
.top-partner__btn {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .top-partner__list {
    margin-top: 4.8rem;
  }
  .top-partner__list .partner-logo {
    margin: 0 2.4rem;
  }
  .top-partner__btn {
    margin-top: 4.8rem;
  }
}
@media screen and (max-width: 767px) {
  .top-partner__list {
    margin-top: 3.2rem;
  }
  .top-partner__list .partner-logo {
    margin: 0 1rem;
  }
  .top-partner__btn {
    margin-top: 3.2rem;
  }
  .top-partner__btn .btn {
    width: 100%;
  }
}

.top-probono > .container {
  position: relative;
}
.top-probono__list {
  margin-top: 4.8rem;
}
.top-probono__btn {
  margin-top: 4.8rem;
  text-align: center;
}
.top-probono__bg {
  position: absolute;
  content: "";
  z-index: -2;
  background: #E40337;
  opacity: 0.2;
  aspect-ratio: 1/1;
  border-radius: 67% 33% 70% 30%/32% 25% 75% 68%;
}
@media screen and (min-width: 768px) {
  .top-probono {
    margin-top: 19.2rem;
  }
  .top-probono__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 6.4rem;
       -moz-column-gap: 6.4rem;
            column-gap: 6.4rem;
    row-gap: 8rem;
  }
  .top-probono__bg {
    width: 80%;
    top: -30%;
    left: -20%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1099px) {
  .top-probono {
    margin-top: 12rem;
  }
}
@media screen and (max-width: 767px) {
  .top-probono {
    margin-top: 12rem;
  }
  .top-probono__list .slick-list {
    overflow: visible;
  }
  .top-probono__list .slick-slide {
    margin: 0 2rem;
    opacity: 0.5;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .top-probono__list .slick-current, .top-probono__list .slick-active {
    opacity: 1;
  }
  .top-probono .slick-slider {
    position: static;
  }
  .top-probono__bg {
    width: 100%;
    top: 0%;
    left: -10%;
  }
  .top-probono__btn .btn {
    width: 100%;
  }
}

.about {
  margin-top: 12rem;
}

.brand-movie {
  margin-top: 8rem;
}
.brand-movie__ttl {
  font-family: "GenJyuuGothic";
  font-weight: 500;
  text-align: center;
}
.brand-movie__movie {
  width: 100%;
  max-width: 700px;
  margin: 4.8rem auto 0;
  aspect-ratio: 16/9;
  border: 1px solid #ccc;
}
.brand-movie__movie iframe {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .brand-movie__ttl {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .brand-movie__ttl {
    font-size: 2.4rem;
  }
  .brand-movie__movie {
    margin-top: 2.4rem;
  }
}

.about-section + .about-section {
  margin-top: 8rem;
}
.about-section--overview + .about-section--overview {
  margin-top: 12rem;
}
.about-section__txt {
  max-width: 1000px;
  margin: 4.8rem auto 0;
  line-height: 2;
}
.about-section__txt p + p {
  margin-top: 1em;
}
.about-section__txt em {
  font-weight: 700;
  font-style: normal;
  color: #E40337;
}
.about-section__image {
  max-width: 800px;
  margin: 3.2rem auto 0;
}
.about-section__image img {
  width: 100%;
  border: 1px solid #ccc;
}
.about-section__image figcaption {
  margin-top: 1.2rem;
}
.about-section__image figcaption p, .about-section__image figcaption cite {
  font-size: 1.2rem;
  font-style: normal;
  display: block;
}
.about-section__image--full {
  max-width: 1000px;
}
.about-section__inner {
  margin-top: 6.4rem;
}
.about-section__inner + .about-section__inner {
  margin-top: 8rem;
}

.about-mvv {
  margin-top: 4.8rem;
}
.about-mvv__logo figcaption {
  margin-top: 2.4rem;
  font-size: 1.2rem;
  line-height: 2;
}
.about-mvv__ttl span {
  color: #E40337;
}
.about-mvv__ttl span:nth-of-type(1) {
  font-family: "Baloo 2", "Arial", cursive;
}
.about-mvv__ttl span:nth-of-type(2) {
  font-family: "GenJyuuGothic";
  font-weight: 500;
}
.about-mvv__txt {
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .about-mvv {
    display: grid;
    grid-template-columns: 35% 1fr;
    gap: 4.8rem;
  }
  .about-mvv__logo {
    -webkit-align-self: center;
        -ms-flex-item-align: center;
            align-self: center;
  }
  .about-mvv__logo img {
    width: 90%;
  }
  .about-mvv__body {
    border-left: 1px solid #E40337;
    padding: 4.8rem;
  }
  .about-mvv__ttl span:nth-of-type(1) {
    font-size: 3.2rem;
  }
  .about-mvv__ttl span:nth-of-type(2) {
    font-size: 1.6rem;
    margin-left: 2em;
  }
  .about-mvv__txt {
    margin-top: 1em;
  }
  .about-mvv__txt + .about-mvv__ttl {
    margin-top: 4.8rem;
  }
}
@media screen and (max-width: 767px) {
  .about-mvv__logo img {
    width: 75%;
    display: block;
    margin: 0 auto;
  }
  .about-mvv__body {
    margin-top: 2.4rem;
  }
  .about-mvv__ttl span:nth-of-type(1) {
    font-size: 2.4rem;
  }
  .about-mvv__ttl span:nth-of-type(2) {
    font-size: 1.6rem;
    margin-left: 1em;
  }
  .about-mvv__txt + .about-mvv__ttl {
    margin-top: 1em;
  }
}

.about-vision {
  margin-top: 4.8rem;
}
.about-vision__txt {
  line-height: 2;
}
.about-vision__txt p + p {
  margin-top: 1em;
}
.about-vision .list {
  padding: 2.4rem;
  background: #FFF5F2;
}
@media screen and (min-width: 768px) {
  .about-vision {
    display: grid;
    grid-template-columns: 45% 1fr;
    gap: 4.8rem;
  }
}
@media screen and (max-width: 767px) {
  .about-vision__txt {
    margin-top: 2.4rem;
  }
}

.about-7rules {
  margin-top: 6.4rem;
}
@media screen and (min-width: 768px) {
  .about-7rules {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4.8rem;
  }
}

.about-yunus-message {
  margin-top: 12rem;
  padding-bottom: 4.8rem;
}
.about-yunus-message > .container {
  position: relative;
  background: #fff;
}
.about-yunus-message__ttl {
  margin-top: 1.6rem;
  font-family: "GenJyuuGothic";
}
.about-yunus-message__ttl2 {
  font-family: "GenJyuuGothic";
  font-weight: 500;
  color: #E40337;
}
.about-yunus-message__txt {
  line-height: 2;
}
.about-yunus-message__txt p + p {
  margin-top: 1em;
}
.about-yunus-message__image img {
  width: 100%;
  border-radius: 10px;
}
.about-yunus-message__image figcaption {
  margin-top: 1em;
  text-align: center;
  font-size: 1.4rem;
}
.about-yunus-message__btn {
  margin-top: 3.2rem;
}
@media screen and (min-width: 768px) {
  .about-yunus-message > .container {
    display: grid;
    grid-template-columns: 25% 1fr;
    grid-template-areas: "image body";
    gap: 4.8rem;
    padding: 4.8rem;
    border-radius: 10px;
  }
  .about-yunus-message > .container::before {
    content: "";
    position: absolute;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    background: #FFF5F2;
    z-index: -1;
    top: -20px;
    left: -20px;
    border-radius: 20px;
  }
  .about-yunus-message__ttl {
    font-size: 3.2rem;
  }
  .about-yunus-message__txt {
    margin-top: 3.2rem;
  }
  .about-yunus-message__body {
    grid-area: body;
  }
  .about-yunus-message__image {
    grid-area: image;
  }
}
@media screen and (min-width: 768px) and (max-width: 1099px) {
  .about-yunus-message > .container {
    border: 15px solid #FFF5F2;
    padding: 3.2rem 2.4rem;
    width: calc(100% - 4.8rem);
    grid-template-columns: 25% 1fr;
  }
  .about-yunus-message__ttl {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .about-yunus-message > .container {
    border: 15px solid #FFF5F2;
    padding: 3.2rem 2.4rem;
    width: calc(100% - 4.8rem);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about-yunus-message__body {
    display: contents;
  }
  .about-yunus-message__ttl2 {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .about-yunus-message__ttl {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    font-size: 2.4rem;
    font-weight: 500;
  }
  .about-yunus-message__txt {
    margin-top: 2.4rem;
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
        -ms-flex-order: 4;
            order: 4;
  }
  .about-yunus-message__image {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
    margin-top: 2.4rem;
    text-align: center;
  }
  .about-yunus-message__image img {
    width: 75%;
  }
  .about-yunus-message__btn {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
        -ms-flex-order: 5;
            order: 5;
  }
  .about-yunus-message__btn .btn {
    width: 100%;
  }
}

.about-message {
  margin-top: 6.4rem;
}
.about-message__profile img {
  width: 100%;
  border-radius: 20px;
}
.about-message__profile p:nth-of-type(1) {
  margin-top: 1.6rem;
  font-size: 1.6rem;
  text-align: center;
}
.about-message__profile p:nth-of-type(2) {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}
.about-message__profile p:nth-of-type(3) {
  margin-top: 1.6rem;
  font-size: 1.2rem;
}
.about-message__txt {
  line-height: 2;
}
.about-message__txt p + p {
  margin-top: 1em;
}
@media screen and (min-width: 768px) {
  .about-message {
    display: grid;
    grid-template-columns: 30% 1fr;
    grid-template-areas: "profile txt";
    gap: 4.8rem;
  }
  .about-message__profile {
    grid-area: profile;
  }
  .about-message__txt {
    grid-area: txt;
  }
}
@media screen and (max-width: 767px) {
  .about-message__profile {
    margin-top: 2.4rem;
  }
  .about-message__profile img {
    width: 75%;
    display: block;
    margin: 0 auto;
  }
  .about-message__profile p:not(:nth-of-type(3)) {
    text-align: center;
  }
}

.about-grameen {
  margin-top: 6.4rem;
}
.about-grameen__image img {
  width: 100%;
  border-radius: 20px;
}
.about-grameen__body {
  line-height: 2;
}
.about-grameen__body img {
  margin-top: 1em;
  border: 1px solid #ccc;
  width: 100%;
}
.about-grameen__body a {
  color: #E40337;
  text-decoration: underline;
}
.about-grameen__body a:hover {
  text-decoration: none;
}
.about-grameen__body * + * {
  margin-top: 1em;
}
@media screen and (min-width: 768px) {
  .about-grameen {
    display: grid;
    grid-template-columns: 20% 1fr;
    gap: 4.8rem;
  }
}
@media screen and (max-width: 767px) {
  .about-grameen__image {
    text-align: center;
  }
  .about-grameen__image img {
    width: 75%;
  }
  .about-grameen__body {
    margin-top: 2.4rem;
  }
}

.about-yunus {
  margin-top: 6.4rem;
}
.about-yunus__image img {
  width: 100%;
  border-radius: 20px;
}
.about-yunus__body {
  line-height: 2;
}
.about-yunus__body dt {
  font-size: 2rem;
  font-weight: 700;
}
.about-yunus__body dd {
  margin-top: 1em;
}
@media screen and (min-width: 768px) {
  .about-yunus {
    display: grid;
    grid-template-columns: 30% 1fr;
    gap: 4.8rem;
  }
}
@media screen and (max-width: 767px) {
  .about-yunus__image {
    text-align: center;
  }
  .about-yunus__image img {
    width: 75%;
  }
  .about-yunus__body dt {
    text-align: center;
  }
}

.about-boardmember .table {
  margin-top: 4.8rem;
  max-width: 800px;
}
.about-boardmember__txt {
  margin: 1.6rem auto 0;
  max-width: 800px;
}

.about-history {
  margin-top: 6.4rem;
  position: relative;
  padding: 0 0 3em 1em;
}
.about-history::before {
  content: "";
  position: absolute;
  display: block;
  width: 1px;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #E40337;
}
.about-history::after {
  content: "";
  position: absolute;
  display: block;
  width: 1px;
  height: 2em;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(#fff), to(transparent));
  background: -webkit-linear-gradient(bottom, #fff, transparent);
  background: linear-gradient(to top, #fff, transparent);
}
.about-history__item {
  position: relative;
  line-height: 2;
}
.about-history__item::before {
  content: "";
  position: absolute;
  display: block;
  width: 0.625em;
  height: 0.625em;
  top: 0.75em;
  left: -1.25em;
  border-radius: 100%;
  background-color: #E40337;
}
.about-history__item dt {
  color: #E40337;
  font-weight: normal;
}
.about-history__item + .about-history__item {
  margin-top: 1em;
}
@media screen and (min-width: 768px) {
  .about-history__item {
    display: grid;
    grid-template-columns: 12% 1fr;
    grid-area: 4.8rem;
  }
}

.about-anual {
  margin-top: 6.4rem;
}
.about-anual .about-section__txt {
  text-align: center;
}
.about-anual .linkcard {
  margin-top: 4.8rem;
}

.about-rules {
  margin-top: 6.4rem;
}
.about-rules__item > a {
  position: relative;
  display: block;
  border: 1px solid #ccc;
  padding: 0.75em 3em 0.75em 1.5em;
  border-radius: 5px;
}
.about-rules__item > a:hover {
  border: 1px solid #E40337;
  color: #E40337;
}
.about-rules__item > a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.6rem;
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
  -webkit-transform: translateY(-50%) rotate(45deg);
      -ms-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  width: 0.5em;
  height: 0.5em;
}
.about-rules__item > a:hover::before {
  border-color: #E40337;
}
@media screen and (min-width: 768px) {
  .about-rules {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    -webkit-column-gap: 4.8rem;
       -moz-column-gap: 4.8rem;
            column-gap: 4.8rem;
    row-gap: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .about-rules__item + .about-rules__item {
    margin-top: 1em;
  }
}

.about-info {
  margin-top: 8rem;
  margin-bottom: -12.8rem;
  position: relative;
}
.about-info::before {
  content: "";
  position: absolute;
  top: 8rem;
  left: 0;
  width: 100%;
  height: calc(100% - 8rem);
  background: #FFF5F2;
  z-index: -1;
}
.about-info__map iframe {
  width: 100%;
  aspect-ratio: 2/1;
}
.about-info-detail {
  padding: 4.8rem 0;
}
.about-info-detail__item {
  font-size: 1.4rem;
  text-align: center;
}
.about-info-detail__item dt {
  font-weight: 700;
}
.about-info-detail__item a:hover {
  color: #E40337;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .about-info-detail {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.4rem;
  }
  .about-info-detail__item dd {
    margin-top: 1em;
  }
}
@media screen and (max-width: 767px) {
  .about-info-detail__item + .about-info-detail__item {
    margin-top: 1em;
  }
  .about-info-detail__item dd {
    margin-top: 0.5em;
  }
}

.model {
  margin-top: 12rem;
}
.model .heading-02 + .service-list {
  margin-top: 4.8rem;
}

.microfinance-first {
  margin-top: 12rem;
}
.microfinance-first__txt {
  margin-top: 2.4rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .microfinance-first > .container {
    display: grid;
    grid-template-columns: 30% 1fr;
    gap: 8rem;
  }
}
@media screen and (max-width: 767px) {
  .microfinance-first__body {
    margin-top: 3.2rem;
  }
}

.microfinance-feature {
  margin-top: 12rem;
  position: relative;
}
.microfinance-feature::before {
  content: "";
  position: absolute;
  right: 0;
  width: 100%;
  background-color: #FFF5F2;
  z-index: -1;
}
.microfinance-feature__txt {
  margin-top: 2.4rem;
}
.microfinance-feature__head .list {
  margin-top: 4.8rem;
}
.microfinance-feature__head .list p:nth-child(1) {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 0.5em;
  background: #E40337;
  color: #fff;
  font-weight: 700;
}
.microfinance-feature__head .list p:nth-child(2) {
  margin-top: 0.5em;
}
.microfinance-feature-point {
  counter-reset: point;
}
.microfinance-feature-point__item {
  counter-increment: point;
  background: #fff;
  padding: 3.2rem;
}
.microfinance-feature-point__item + .microfinance-feature-point__item {
  margin-top: 4.8rem;
}
.microfinance-feature-point__ttl::before {
  content: "Point 0" counter(point);
  display: block;
  color: #E40337;
  font-weight: 700;
  font-size: 1.4rem;
}
.microfinance-feature-point__ttl span {
  display: inline-block;
  font-family: "GenJyuuGothic";
  font-weight: 500;
}
.microfinance-feature-point__ttl span:nth-of-type(1) {
  font-size: 2rem;
}
.microfinance-feature-point__ttl span:nth-of-type(2) {
  font-size: 1.6rem;
  color: #F09A8E;
}
.microfinance-feature-point__txt {
  margin-top: 1em;
  font-size: 1.4rem;
  line-height: 2;
}
.microfinance-feature-point__txt p + p {
  margin-top: 0.5em;
}
.microfinance-feature-point__txt span {
  font-size: 1.2rem;
}
.microfinance-feature-point__txt a {
  color: #E40337;
}
.microfinance-feature-point__txt a img {
  margin-left: 0.25em;
  height: 0.75em;
  vertical-align: baseline;
}
.microfinance-feature-point__txt a:hover {
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .microfinance-feature > .container {
    display: grid;
    grid-template-columns: 30% 1fr;
    gap: 8rem;
  }
  .microfinance-feature::before {
    max-width: calc( 1100px + (100% - 1100px )/2 - 20%);
    top: 0;
    height: 100%;
  }
  .microfinance-feature__body {
    padding: 4.8rem 0 4.8rem 4.8rem;
  }
  .microfinance-feature-point__ttl span:nth-of-type(2) {
    margin-left: 1em;
  }
}
@media screen and (max-width: 767px) {
  .microfinance-feature .list {
    display: none;
  }
  .microfinance-feature::before {
    top: 7.5%;
    height: 92.5%;
  }
  .microfinance-feature__body {
    margin-top: 4.8rem;
    padding: 3.2rem 0;
  }
  .microfinance-feature-point__ttl span:nth-of-type(2) {
    margin-top: 1em;
    display: block;
  }
}

.microfinance-howto {
  margin-top: 12rem;
}
.microfinance-howto__txt {
  margin-top: 2.4rem;
  line-height: 2;
}
.microfinance-howto__txt a {
  color: #E40337;
}
.microfinance-howto__txt a img {
  margin-left: 0.25em;
  height: 0.75em;
  vertical-align: baseline;
}
.microfinance-howto__txt a:hover {
  text-decoration: underline;
}
.microfinance-howto-step {
  margin-top: 4.8rem;
  counter-reset: step -1;
  border-bottom: 1px solid #ccc;
}
.microfinance-howto-step__item {
  counter-increment: step;
  background: #fff;
  padding: 3.2rem 0;
  border-top: 1px solid #ccc;
}
.microfinance-howto-step__ttl {
  display: inline-block;
  font-family: "GenJyuuGothic";
  font-weight: 500;
}
.microfinance-howto-step__ttl::before {
  content: "ミライＷorkShop : " counter(step);
  display: block;
  color: #E40337;
  font-weight: 700;
  font-size: 1.4rem;
}
.microfinance-howto-step__txt {
  line-height: 2;
}
.microfinance-howto-step__image img {
  width: 100%;
  border: 1px solid #ccc;
}
.microfinance-howto-staff {
  margin-top: 8rem;
}
.microfinance-howto-instructor {
  margin-top: 3.2rem;
  border: 1px solid #ccc;
}
.microfinance-howto-instructor__image {
  background-image: url(../images/microfinance-instructor.jpg);
  background-size: cover;
  background-position: top center;
}
.microfinance-howto-instructor__body {
  padding: 2.4rem;
}
.microfinance-howto-instructor__body > p span {
  font-size: 1.8rem;
  font-weight: 700;
  display: inline-block;
  margin-right: 0.5em;
}
.microfinance-howto-instructor__txt {
  margin-top: 1em;
  font-size: 1.4rem;
}
.microfinance-howto-supporter {
  margin-top: 3.2rem;
}
.microfinance-howto-supporter__item {
  display: grid;
  grid-template-columns: 35% 1fr;
  gap: 3.2rem;
  -webkit-box-align: start;
  -webkit-align-items: start;
      -ms-flex-align: start;
          align-items: start;
}
.microfinance-howto-supporter__item + .microfinance-howto-supporter__item {
  margin-top: 3.2rem;
}
.microfinance-howto-supporter__image {
  width: 100%;
}
.microfinance-howto-supporter__body > p span {
  font-size: 1.8rem;
  font-weight: 700;
  display: inline-block;
  margin-right: 0.5em;
}
.microfinance-howto-supporter__txt {
  margin-top: 1em;
  background: #FFF5F2;
  padding: 1em;
  font-size: 1.4rem;
  position: relative;
}
.microfinance-howto-supporter__txt::before {
  content: "";
  position: absolute;
  top: 0;
  left: -2em;
  margin-top: 1em;
  border: 1em solid transparent;
  border-right: 1em solid #FFF5F2;
}
@media screen and (min-width: 768px) {
  .microfinance-howto-step__item {
    display: grid;
    grid-template-columns: 1fr 45%;
    gap: 4.8rem;
  }
  .microfinance-howto-step__body {
    -webkit-align-self: center;
        -ms-flex-item-align: center;
            align-self: center;
  }
  .microfinance-howto-step__ttl {
    font-size: 2.4rem;
  }
  .microfinance-howto-step__txt {
    margin-top: 2em;
  }
  .microfinance-howto-staff {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4.8rem;
  }
  .microfinance-howto-instructor {
    display: grid;
    grid-template-columns: 45% 1fr;
  }
}
@media screen and (max-width: 767px) {
  .microfinance-howto-step__ttl {
    font-size: 2rem;
  }
  .microfinance-howto-step__txt {
    margin-top: 1em;
  }
  .microfinance-howto-step__image {
    margin-top: 1em;
  }
  .microfinance-howto-staff__item + .microfinance-howto-staff__item {
    margin-top: 4.8rem;
  }
  .microfinance-howto-instructor__image {
    width: 100%;
    aspect-ratio: 4/3;
  }
}

.microfinance-workshop {
  margin-top: 8rem;
}
.microfinance-workshop__txt {
  font-family: "GenJyuuGothic";
  font-weight: 500;
  text-align: center;
}
.microfinance-workshop .linkcard {
  margin-top: 2.4rem;
}

.employment-first {
  margin-top: 12rem;
}

.employment-programs {
  margin-top: 4.8rem;
  background: #FFF5F2;
  counter-reset: count;
}
.employment-programs__item {
  counter-increment: count;
  background: #fff;
  position: relative;
}
.employment-programs__item::before {
  content: "0" counter(count);
  font-size: 1.4rem;
  font-weight: 700;
  color: #E40337;
  margin-bottom: 0.75em;
}
.employment-programs__item::after {
  content: "";
  position: absolute;
  border-top: 1px solid #E40337;
  border-right: 1px solid #E40337;
}
.employment-programs__item:hover::after {
  bottom: 2.4rem;
}
.employment-programs__ttl {
  font-family: "GenJyuuGothic";
  font-weight: 500;
}
.employment-programs__item:hover .employment-programs__ttl {
  color: #E40337;
}
.employment-programs__txt {
  margin-top: 1em;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .employment-programs {
    padding: 4.8rem 0;
  }
  .employment-programs > .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4.8rem;
  }
  .employment-programs__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 3.2rem 3.2rem 6.4rem;
  }
  .employment-programs__item::before {
    display: block;
    text-align: center;
  }
  .employment-programs__item::after {
    bottom: 3.2rem;
    left: 50%;
    -webkit-transform: translateX(-50%) rotate(135deg);
        -ms-transform: translateX(-50%) rotate(135deg);
            transform: translateX(-50%) rotate(135deg);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    width: 0.75em;
    height: 0.75em;
  }
  .employment-programs__ttl {
    font-size: 2rem;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .employment-programs {
    padding: 2.4rem 0;
  }
  .employment-programs__item {
    display: block;
    padding: 2.4rem 4.8rem 2.4rem 2.4rem;
  }
  .employment-programs__item + .employment-programs__item {
    margin-top: 2.4rem;
  }
  .employment-programs__item::after {
    right: 2.4rem;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(45deg);
        -ms-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
    width: 0.5em;
    height: 0.5em;
  }
  .employment-programs__ttl {
    font-size: 1.8rem;
  }
}

.employment-section {
  margin-top: 12rem;
}
.employment-section__txt {
  line-height: 2;
}
.employment-section__txt a {
  color: #E40337;
  text-decoration: underline;
}
.employment-section__txt a:hover {
  text-decoration: none;
}
.employment-section__txt a img {
  margin-left: 0.25em;
  height: 0.75em;
  vertical-align: baseline;
}
.employment-section__txt p + p {
  margin-top: 1em;
}
.employment-section__image {
  text-align: center;
  margin: 3.2rem auto 0;
  max-width: 800px;
}
.employment-section__image img {
  width: 100%;
  border: 1px solid #ccc;
}
.employment-section__movie {
  text-align: center;
  margin: 3.2rem auto 0;
  max-width: 800px;
  aspect-ratio: 16/9;
}
.employment-section__movie iframe {
  width: 100%;
  height: 100%;
  border: 1px solid #ccc;
}
.employment-section-link {
  margin-top: 3.2rem;
  background: #FFF5F2;
  padding: 3.2rem;
}
.employment-section-link__ttl {
  font-weight: 700;
}
.employment-section-link .list {
  margin-top: 1em;
}
.employment-section-link .list__item a {
  color: #E40337;
  text-decoration: underline;
}
.employment-section-link .list__item a:hover {
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .employment-section__txt {
    margin-top: 4.8rem;
  }
  .heading-05 + .employment-section__txt {
    margin-top: 3.2rem;
  }
  .employment-section__txt + .heading-05 {
    margin-top: 3.2rem;
  }
  .employment-section-link .list {
    -webkit-columns: 2;
       -moz-columns: 2;
            columns: 2;
  }
}
@media screen and (max-width: 767px) {
  .employment-section__txt {
    margin-top: 3.2rem;
  }
  .heading-05 + .employment-section__txt {
    margin-top: 2.4rem;
  }
  .employment-section__txt + .heading-05 {
    margin-top: 2.4rem;
  }
}

.employment-results {
  margin-top: 3.2rem;
}
.employment-results__item {
  border: 4px solid #F9D9D1;
  padding: 2.4rem;
}
.employment-results__item p:nth-of-type(1) {
  font-family: "GenJyuuGothic";
  font-size: 2rem;
  font-weight: 500;
}
.employment-results__item p:nth-of-type(2) {
  margin-top: 0.5em;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .employment-results {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4.8rem;
  }
}
@media screen and (max-width: 767px) {
  .employment-results__item + .employment-results__item {
    margin-top: 2.4rem;
  }
}

.employment-program-overview {
  margin-top: 4.8rem;
}
.employment-program-overview__ttl {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.25em 0.5em;
  font-family: "GenJyuuGothic";
  font-size: 2rem;
  font-weight: 500;
  background: #E40337;
  color: #fff;
}
.employment-program-overview__ttl + * {
  margin-top: 3.2rem;
}
.employment-program-overview__table {
  border-top: 1px solid #ccc;
}
.employment-program-overview__table tr {
  border-bottom: 1px solid #ccc;
}
.employment-program-overview__table th {
  background: #FFF5F2;
  font-weight: 700;
  width: 100px;
}
.employment-program-overview__table th, .employment-program-overview__table td {
  padding: 1em;
}
.employment-program-overview__txt {
  line-height: 2;
}
.employment-program-overview__txt a {
  color: #E40337;
  text-decoration: underline;
}
.employment-program-overview__txt a:hover {
  text-decoration: none;
}
.employment-program-overview__txt a img {
  margin-left: 0.25em;
  height: 0.75em;
  vertical-align: baseline;
}
.employment-program-overview__txt p + p {
  margin-top: 1em;
}
.employment-program-overview__txt span {
  font-weight: 700;
  color: #E40337;
}
.employment-program-overview__inner + .employment-program-overview__txt {
  margin-top: 3.2rem;
}
@media screen and (min-width: 768px) {
  .employment-program-overview__inner {
    display: grid;
    grid-template-columns: 1fr 55%;
    gap: 3.2rem;
    grid-template-areas: "txt table";
  }
  .employment-program-overview__table {
    grid-area: table;
  }
  .employment-program-overview__txt {
    grid-area: txt;
  }
}
@media screen and (max-width: 767px) {
  .employment-program-overview__inner {
    display: contents;
  }
  .employment-program-overview__table {
    margin-top: 2.4rem;
  }
  .employment-program-overview__txt {
    margin-top: 2.4rem;
  }
}

.members {
  margin-top: 12rem;
}
@media screen and (min-width: 768px) {
  .members-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4.8rem;
  }
}
@media screen and (max-width: 767px) {
  .members .card + .card {
    margin-top: 2.4rem;
  }
}

.member-post {
  margin-top: 12rem;
}
@media screen and (min-width: 768px) {
  .member-post > .container {
    display: grid;
    grid-template-columns: 18% 1fr;
    gap: 9.6rem;
    grid-template-areas: "profile article";
  }
}

.member-article__header {
  border-bottom: 1px solid #ccc;
  padding-bottom: 2.4rem;
}
.member-article__ttl {
  font-size: 3.2rem;
  font-weight: 700;
}
.member-article__name {
  position: relative;
  font-size: 1.4rem;
  margin-top: 1em;
  padding-left: 2em;
}
.member-article__name::before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  display: block;
  width: 1em;
  height: 1px;
  background: #999;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.member-article__body {
  margin-top: 4.8rem;
  line-height: 2;
  /*--wordpress hack --*/
}
.member-article__body * + * {
  margin-top: 3em;
}
.member-article__body p {
  line-height: 2;
}
.member-article__body p br {
  display: block;
  content: "";
  margin-top: 1em;
}
.member-article__body p * + br {
  margin-top: 1em !important;
}
.member-article__body p strong {
  color: #E40337;
}
.member-article__body a {
  color: #E40337;
  font-weight: 700;
  text-decoration: underline;
}
.member-article__body a:hover {
  text-decoration: none;
}
.member-article__body h2 {
  font-size: 1.8rem;
  font-weight: 700;
}
.member-article__body ul {
  list-style: disc;
  margin-left: 1.5em;
}
.member-article__body ul li + li {
  margin-top: 1.2rem;
}
.member-article__body ol {
  list-style: decimal;
  margin-left: 1.5em;
}
.member-article__body ol li + li {
  margin-top: 1.2rem;
}
.member-article__body ol li > ol {
  margin-left: 2em;
}
.member-article__body blockquote {
  background: #eee;
  padding: 1.6rem;
  font-size: 1.4rem;
}
.member-article__body blockquote cite {
  display: block;
  text-align: right;
  margin-top: 1.2rem;
}
.member-article__body img {
  max-width: 100%;
  height: unset;
}
.member-article__body .wp-block-media-text__media img,
.member-article__body .wp-block-media-text__media video,
.member-article__body .wp-block-image img {
  max-width: 100%;
  height: auto !important;
}
.member-article__body .blocks-gallery-grid {
  margin: 0 !important;
}
.member-article__body .wp-block-image {
  max-width: 80%;
  margin: 2.4rem auto 0 !important;
}
.member-article__body .wp-block-image + * {
  margin-top: 4.8rem;
}
@media screen and (min-width: 768px) {
  .member-article {
    grid-area: article;
  }
}

.member-profile__icon img {
  width: 100%;
}
.member-profile__icon figcaption {
  margin-top: 0.785em;
  text-align: center;
}
.member-profile__icon figcaption span:nth-child(1) {
  font-size: 2rem;
  font-weight: 700;
}
.member-profile__icon figcaption span:nth-child(2) {
  font-size: 1.4rem;
}
.member-profile__tag {
  margin-top: 2.4rem;
}
.member-profile__tag span {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.2rem;
  line-height: 1;
  padding: 0.6rem 0.8rem;
  color: #999;
  border: 1px solid #999;
}
.member-profile__link {
  margin-top: 2.4rem;
}
.member-profile__link a {
  font-size: 1.4rem;
  color: #E40337;
  text-decoration: underline;
  position: relative;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 1.5em;
}
.member-profile__link a:hover {
  text-decoration: none;
}
.member-profile__link a::before {
  position: absolute;
  content: "";
  width: 0.75em;
  height: 0.75em;
  background-image: url(../images/icon-link-red.svg);
  background-size: cover;
  background-repeat: no-repeat;
  top: 0.5em;
  left: 0;
}
.member-profile__link a + a {
  margin-top: 1em;
}
@media screen and (min-width: 768px) {
  .member-profile {
    grid-area: profile;
  }
  .member-profile__tag span + span {
    margin-top: 0.75em;
  }
}
@media screen and (max-width: 767px) {
  .member-profile {
    margin-top: 4.8rem;
    border-top: 1px solid #ccc;
    padding-top: 4.8rem;
  }
  .member-profile__icon {
    text-align: center;
  }
  .member-profile__icon img {
    width: 150px;
  }
  .member-profile__tag {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 2.4rem;
  }
  .member-profile__tag span {
    display: inline-block;
  }
  .member-profile__link {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.member-recommend {
  margin-top: 8rem;
}
.member-recommend__list {
  margin-top: 4.8rem;
}
.member-recommend__list--nocontents {
  text-align: center;
}
.member-recommend__btn {
  margin-top: 4.8rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .member-recommend__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6.4rem;
  }
  .member-recommend__list--nocontents {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .member-recommend__list .card + .card {
    margin-top: 2.4rem;
  }
  .member-recommend__btn .btn {
    width: 100%;
  }
}

.partner-section {
  margin-top: 12rem;
}
.partner-section__txt {
  text-align: center;
}
.partner-section .heading-02 span {
  display: inline-block;
  color: #E40337;
  margin-right: 0.5em;
  font-size: 1.25em;
}
.heading-02 + .partner-section__txt {
  margin-top: 4.8rem;
}
.partner-section .heading-05 {
  margin-top: 4.8rem;
}
.partner-section__image {
  margin-top: 4.8rem;
  text-align: center;
}
.partner-section__image img {
  width: 100%;
  max-width: 640px;
}
.partner-section__image figcaption {
  margin-top: 3.2rem;
}

.partner-point {
  margin-top: 8rem;
}
@media screen and (min-width: 768px) {
  .partner-point {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.4rem;
  }
}

.partner-list {
  margin-top: 3.2rem;
  display: grid;
}
.partner-list + .partner-section__txt {
  margin-top: 2.4rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .partner-list {
    grid-template-columns: repeat(4, 1fr);
    -webkit-column-gap: 8rem;
       -moz-column-gap: 8rem;
            column-gap: 8rem;
    row-gap: 4.8rem;
  }
  .partner-list + .partner-list {
    margin-top: 6.4rem;
  }
}
@media screen and (max-width: 767px) {
  .partner-list {
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 3.2rem;
       -moz-column-gap: 3.2rem;
            column-gap: 3.2rem;
    row-gap: 2.4rem;
  }
  .partner-list + .partner-list {
    margin-top: 4.8rem;
  }
}

.partner-support-list {
  margin-top: 3.2rem;
  background: #FFF5F2;
  padding: 3.2rem;
}
.partner-support-list .list__item + .list__item {
  margin-top: 0.5em;
}
@media screen and (min-width: 768px) {
  .partner-support-list .list {
    -webkit-columns: 2;
       -moz-columns: 2;
            columns: 2;
  }
}

.partner-probono {
  margin-top: 3.2rem;
  background: #FFF5F2;
  padding: 3.2rem;
}
.partner-probono__ttl {
  font-family: "GenJyuuGothic";
  font-weight: 500;
  color: #E40337;
}
.partner-probono__txt {
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .partner-probono {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .partner-probono__ttl {
    font-size: 2rem;
    -webkit-flex-basis: auto;
        -ms-flex-preferred-size: auto;
            flex-basis: auto;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
  .partner-probono__txt {
    padding-left: 3.2rem;
  }
}

.partner-next {
  margin-top: 20rem;
  position: relative;
}
.partner-next::before {
  content: "";
  position: absolute;
  display: block;
  top: -136px;
  left: 50%;
  width: 1px;
  height: 100px;
  background-color: #F09A8E;
}
.partner-next__txt {
  text-align: center;
  line-height: 2;
}
.partner-next .linkcard {
  margin-top: 4.8rem;
}

.probono-post {
  margin-top: 12rem;
}
.probono-post > .container {
  max-width: 900px;
}

.probono-profile {
  margin-top: 12rem;
  border-bottom: 1px solid #ccc;
  padding-bottom: 4.8rem;
  display: grid;
}
.probono-profile-status__item {
  font-size: 1.4rem;
  margin-top: 1em;
}
.probono-profile-status__item dt {
  border: 1px solid #ccc;
  font-size: 1.2rem;
  font-weight: normal;
  text-align: center;
  border-radius: 50px;
}
.probono-profile__company {
  font-size: 1.2rem;
}
.probono-profile__name span:nth-child(1) {
  font-size: 2rem;
  font-weight: 700;
}
.probono-profile__name span:nth-child(2) {
  font-size: 1.4rem;
}
.probono-profile__image img {
  width: 100%;
}
.probono-profile__image img.--noimage {
  border: 1px solid #ccc;
}
.probono-profile__company + .probono-profile__name {
  margin-top: 0.25em;
}
@media screen and (min-width: 768px) {
  .probono-profile {
    grid-template-columns: 18% 1fr;
    gap: 3.2rem;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .probono-profile-status__item {
    display: grid;
    grid-template-columns: 10% 1fr;
    gap: 1em;
  }
}
@media screen and (max-width: 767px) {
  .probono-profile {
    grid-template-columns: 25% 1fr;
    gap: 1.6rem;
  }
  .probono-profile-status__item dt {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0 1.6rem;
  }
}

.probono-article {
  padding-bottom: 4.8rem;
  border-bottom: 1px solid #ccc;
  margin-top: 4.8rem;
  line-height: 2;
  /*--wordpress hack --*/
}
.probono-article * + * {
  margin-top: 2em;
}
.probono-article p {
  line-height: 2;
}
.probono-article p br {
  display: block;
  content: "";
  margin-top: 1em;
}
.probono-article p * + br {
  margin-top: 1em !important;
}
.probono-article p strong {
  color: #E40337;
}
.probono-article a {
  color: #E40337;
  font-weight: 700;
  text-decoration: underline;
}
.probono-article a:hover {
  text-decoration: none;
}
.probono-article h2 {
  position: relative;
  padding-left: 2em;
  font-family: "GenJyuuGothic";
  font-weight: 500;
}
.probono-article h2::before {
  position: absolute;
  top: 0.75em;
  left: 0;
  content: "";
  display: block;
  width: 1.5em;
  height: 2px;
  border-radius: 50px;
  background: #E40337;
}
@media screen and (min-width: 768px) {
  .probono-article h2 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .probono-article h2 {
    font-size: 2rem;
  }
}
.probono-article ul {
  list-style: disc;
  margin-left: 1.5em;
}
.probono-article ul li + li {
  margin-top: 1.2rem;
}
.probono-article ol {
  list-style: decimal;
  margin-left: 1.5em;
}
.probono-article ol li + li {
  margin-top: 1.2rem;
}
.probono-article ol li > ol {
  margin-left: 2em;
}
.probono-article blockquote {
  background: #eee;
  padding: 1.6rem;
  font-size: 1.4rem;
}
.probono-article blockquote cite {
  display: block;
  text-align: right;
  margin-top: 1.2rem;
}
.probono-article img {
  width: 100%;
  max-width: 100%;
  height: unset;
}
.probono-article .wp-block-media-text__media img,
.probono-article .wp-block-media-text__media video,
.probono-article .wp-block-image img {
  max-width: 100%;
  height: auto !important;
}
.probono-article .blocks-gallery-grid {
  margin: 0 !important;
}
.probono-article .wp-block-image {
  max-width: 80%;
  margin: 2.4rem auto 0 !important;
}
.probono-article .wp-block-image + * {
  margin-top: 4.8rem;
}

.probono-recommend {
  margin-top: 4.8rem;
}
.probono-recommend > .container {
  max-width: 900px;
}
.probono-recommend__btn {
  margin-top: 4.8rem;
  text-align: center;
}
.probono-recommend__item {
  border: 1px solid #ccc;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
}
.probono-recommend__item:hover {
  border: 2px solid #E40337;
}
.probono-recommend__image img {
  width: 100%;
}
.probono-recommend__company {
  font-size: 1.2rem;
}
.probono-recommend__name span:nth-child(1) {
  font-size: 1.6rem;
  font-weight: 700;
}
.probono-recommend__name span:nth-child(2) {
  font-size: 1.4rem;
}
.probono-recommend__company + .probono-recommend__name {
  margin-top: 0.25em;
}
.probono-recommend__anchor {
  margin-top: 1em;
  font-size: 1.8rem;
  font-family: "Baloo 2", "Arial", cursive;
  color: #E40337;
  line-height: 1;
  display: block;
  position: relative;
}
.probono-recommend__anchor::before {
  position: absolute;
  width: 1.4rem;
  height: 1.4rem;
  top: 50%;
  left: 0;
  border-left: 2px solid #E40337;
  border-top: 2px solid #E40337;
  -webkit-transform: translateY(-50%) rotate(-45deg);
      -ms-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}
.probono-recommend__anchor::after {
  position: absolute;
  width: 1.2rem;
  height: 1.2rem;
  top: 50%;
  right: 0;
  border-right: 2px solid #E40337;
  border-top: 2px solid #E40337;
  -webkit-transform: translateY(-50%) rotate(45deg);
      -ms-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.probono-recommend__anchor--prev {
  padding-left: 2em;
}
.probono-recommend__anchor--prev::before {
  content: "";
}
.probono-recommend__anchor--next {
  text-align: right;
  padding-right: 2em;
}
.probono-recommend__anchor--next::after {
  content: "";
}
@media screen and (min-width: 768px) {
  .probono-recommend__item {
    padding: 2.4rem;
  }
  .probono-recommend__image {
    -webkit-flex-basis: 60px;
        -ms-flex-preferred-size: 60px;
            flex-basis: 60px;
    margin-right: 2.4rem;
  }
  .probono-recommend-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8rem;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .probono-recommend__item {
    padding: 0.75rem;
  }
  .probono-recommend__image {
    -webkit-flex-basis: 40px;
        -ms-flex-preferred-size: 40px;
            flex-basis: 40px;
    margin-right: 1.6rem;
  }
  .probono-recommend__btn .btn {
    width: 100%;
  }
  .probono-recommend__prev + .probono-recommend__next {
    margin-top: 3.2rem;
  }
}

.probono-section {
  margin-top: 12rem;
}
.probono-section .heading-05 {
  margin-top: 4.8rem;
}
.probono-section__txt {
  margin-top: 3.2rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .probono-section__txt {
    text-align: left;
  }
}

.probono-about {
  margin-top: 4.8rem;
}
.probono-about img {
  width: 100%;
}
.probono-about figcaption {
  line-height: 2;
}
.probono-about figcaption p + p {
  margin-top: 1em;
}
@media screen and (min-width: 768px) {
  .probono-about {
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: 4.8rem;
  }
}
@media screen and (max-width: 767px) {
  .probono-about figcaption {
    margin-top: 1em;
  }
}

.probono-supporter-voice {
  margin-top: 4.8rem;
}
.probono-supporter-voice-list {
  margin-top: 3.2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3.2rem;
}
.probono-supporter-voice-list__item {
  border-top: 2px solid #F9D9D1;
  background: #FFF5F2;
  padding: 2rem;
  font-size: 1.4rem;
}
.probono-supporter-voice__txt {
  margin-top: 4.8rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .probono-supporter-voice-list__item {
    -webkit-flex-basis: 30%;
        -ms-flex-preferred-size: 30%;
            flex-basis: 30%;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
}
@media screen and (max-width: 767px) {
  .probono-supporter-voice__txt {
    text-align: left;
  }
}

.probono-interview {
  margin-top: 4.8rem;
}
@media screen and (min-width: 768px) {
  .probono-interview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 6.4rem;
       -moz-column-gap: 6.4rem;
            column-gap: 6.4rem;
    row-gap: 8rem;
  }
}
@media screen and (max-width: 767px) {
  .probono-interview .card + .card {
    margin-top: 2.4rem;
  }
}

.probono-list {
  margin-top: 4.8rem;
  display: grid;
}
@media screen and (min-width: 768px) {
  .probono-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 4.8rem;
  }
}
@media screen and (max-width: 767px) {
  .probono-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.4rem;
  }
}

.probono-card {
  display: block;
}
.probono-card__image {
  width: 100%;
}
.probono-card__image--noimage {
  border: 1px solid #ccc;
}
.probono-card__body {
  -webkit-transform: translateY(-2em);
      -ms-transform: translateY(-2em);
          transform: translateY(-2em);
  padding-left: 1em;
}
.probono-card__ttl {
  border-left: 2px solid #E40337;
  padding: 3em 1em 0.5em;
  font-size: 2rem;
  font-family: "GenJyuuGothic";
}
.probono-card__ttl span {
  display: block;
}
.probono-card__ttl span:nth-child(1) {
  font-size: 1.2rem;
}
.probono-card__ttl span:nth-child(2) {
  font-size: 2rem;
  font-family: "GenJyuuGothic";
}
.probono-card__txt {
  border-left: 2px solid #ccc;
  padding: 0 1.6rem 0.8rem;
  font-size: 1.2rem;
}
.probono-card--individual .probono-card__ttl {
  padding-top: 2.25em;
}
@media screen and (min-width: 768px) {
  .probono-card {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .probono-card:hover {
    -webkit-transform: translateY(10px);
        -ms-transform: translateY(10px);
            transform: translateY(10px);
  }
}

.probono-policy {
  margin-top: 4.8rem;
}
.probono-policy .point-list__item {
  border-color: #ccc;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.probono-policy .point-list__item h4 {
  text-align: center;
  font-family: "GenJyuuGothic";
  font-size: 2rem;
  font-weight: 500;
}
.probono-policy .point-list__item p {
  line-height: 1.5;
  margin-top: 1em;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .probono-policy {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4.8rem;
  }
}

.probono-howto {
  margin-top: 8rem;
}
.probono-howto .linkcard {
  margin-top: 3.2rem;
}
.probono-howto .heading-05 {
  margin-top: unset;
}

.probono-terms {
  margin-top: 8rem;
}
.probono-terms .heading-05 {
  margin-top: unset;
}
.probono-terms .list {
  margin-top: 3.2rem;
}
.probono-terms .list__item {
  background: #FFF5F2;
  padding: 1em 1em 1em 3em;
}
.probono-terms .list__item::before {
  top: 1.25em;
  left: 1em;
}
.probono-terms .list__item p {
  margin-top: 0.25em;
  font-size: 1.4rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .probono-terms .list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.2rem;
  }
  .probono-terms .list__item + .list__item {
    margin-top: unset;
  }
}

.probono-flow {
  margin-top: 8rem;
}
.probono-flow .heading-05 {
  margin-top: unset;
}
.probono-flow-list {
  margin-top: 3.2rem;
  counter-reset: flow;
}
.probono-flow-list__item {
  counter-increment: flow;
  padding: 3.2rem;
  border: 2px solid #F9D9D1;
}
.probono-flow-list__item + .probono-flow-list__item {
  margin-top: 3.2rem;
}
.probono-flow-list__ttl {
  font-family: "GenJyuuGothic";
  font-weight: 500;
}
.probono-flow-list__ttl::before {
  content: "Step 0" counter(flow);
  display: block;
  color: #E40337;
  font-family: "Baloo 2", "Arial", cursive;
  font-size: 1.6rem;
}
.probono-flow-list__ttl span {
  font-size: 0.75em;
}
.probono-flow-list__txt p + p {
  margin-top: 0.5em;
}
@media screen and (min-width: 768px) {
  .probono-flow-list__item {
    display: grid;
    grid-template-columns: 25% 1fr;
    gap: 4.8rem;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .probono-flow-list__ttl {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .probono-flow-list__ttl {
    font-size: 2rem;
  }
  .probono-flow-list__txt {
    margin-top: 1em;
  }
}

.news-archive__ttl {
  font-size: 2.4rem;
  font-family: "GenJyuuGothic";
  font-weight: 500;
}
.news-archive__ttl span {
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .news-archive > .container {
    display: grid;
    grid-template-columns: 1fr 27%;
    gap: 8rem;
  }
}

.news-archives-list {
  margin-top: 4.8rem;
}
.news-archives-list__item > a {
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: 3.2rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.news-archives-list__item + .news-archives-list__item {
  margin-top: 4.8rem;
}
.news-archives-list__image {
  overflow: hidden;
}
.news-archives-list__image img {
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover .news-archives-list__image img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.news-archives-list__date {
  font-size: 1.2rem;
  color: #999;
  display: block;
  text-align: right;
  margin-top: 0.5rem;
}
.news-archives-list__tag {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5em;
}
.news-archives-list__tag span {
  padding: 0.25em 0.75em;
  font-size: 1.2rem;
  color: #999;
  border: 1px solid #999;
}
.news-archives-list__ttl {
  margin-top: 0.5rem;
  font-size: 1.8rem;
  font-weight: 500;
  font-family: "GenJyuuGothic";
}
a:hover .news-archives-list__ttl {
  color: #E40337;
}

.news-side__inner + .news-side__inner {
  margin-top: 3.2rem;
}
@media screen and (max-width: 767px) {
  .news-side {
    margin-top: 8rem;
    border-top: 1px solid #ccc;
    padding-top: 4.8rem;
  }
}

.news-category {
  margin-top: 1.6rem;
}
.news-category a {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.25em 0.75em;
  font-size: 1.4rem;
  color: #999;
  border: 1px solid #999;
}
.news-category a:hover, .news-category a.--active {
  border-color: #222;
  color: #222;
}
.news-category a + a {
  margin-top: 0.5em;
}

.news-monthly {
  margin-top: 1.6rem;
}
.news-monthly li {
  margin-left: 1.5em;
  list-style: disc;
}
.news-monthly li a:hover {
  color: #E40337;
  text-decoration: underline;
}
.news-monthly li + li {
  margin-top: 0.25em;
}

.news-article__ttl {
  font-family: "GenJyuuGothic";
  font-weight: 500;
}
.news-article-info {
  margin-top: 3.2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.news-article-info__date {
  font-size: 1.4rem;
  color: #999;
  display: block;
}
.news-article-info__tag {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5em;
}
.news-article-info__tag a {
  padding: 0.25em 0.75em;
  font-size: 1.2rem;
  color: #999;
  border: 1px solid #999;
}
.news-article-info__tag a:hover {
  border-color: #222;
  color: #222;
}
.news-article-info__tag + .news-article-info__date {
  margin-left: 1.6rem;
}
.news-article__image {
  margin-top: 3.2rem;
}
.news-article__image img {
  width: 100%;
}
.news-article__body {
  margin-top: 3.2rem;
  /*--wordpress hack --*/
}
.news-article__body * + * {
  margin-top: 1em;
}
.news-article__body p {
  line-height: 2;
}
.news-article__body a {
  color: #E40337;
  font-weight: 700;
  text-decoration: underline;
}
.news-article__body a:hover {
  text-decoration: none;
}
.news-article__body h2 {
  position: relative;
  font-family: "GenJyuuGothic";
  font-weight: 500;
}
.news-article__body h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background-color: #E40337;
  border-radius: 50px;
}
@media screen and (min-width: 768px) {
  .news-article__body h2 {
    font-size: 3.2rem;
    padding: 2.4rem;
  }
  .news-article__body h2::before {
    width: 6px;
  }
}
@media screen and (max-width: 767px) {
  .news-article__body h2 {
    font-size: 2.8rem;
    padding: 2rem;
  }
  .news-article__body h2::before {
    width: 3px;
  }
}
.news-article__body h3 {
  position: relative;
  padding-left: 2em;
  font-family: "GenJyuuGothic";
  font-weight: 500;
}
.news-article__body h3::before {
  position: absolute;
  top: 0.75em;
  left: 0;
  content: "";
  display: block;
  width: 1.5em;
  height: 2px;
  border-radius: 50px;
  background: #E40337;
}
@media screen and (min-width: 768px) {
  .news-article__body h3 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .news-article__body h3 {
    font-size: 2rem;
  }
}
.news-article__body h4 {
  font-size: 1.8rem;
  font-weight: 700;
}
.news-article__body ul {
  list-style: disc;
  margin-left: 1.5em;
}
.news-article__body ul li + li {
  margin-top: 1.2rem;
}
.news-article__body ol {
  list-style: decimal;
  margin-left: 1.5em;
}
.news-article__body ol li + li {
  margin-top: 1.2rem;
}
.news-article__body ol li > ol {
  margin-left: 2em;
}
.news-article__body blockquote {
  background: #eee;
  padding: 1.6rem;
  font-size: 1.4rem;
}
.news-article__body blockquote cite {
  display: block;
  text-align: right;
  margin-top: 1.2rem;
}
.news-article__body table {
  border-top: 1px solid #999;
  border-collapse: collapse;
}
.news-article__body table tr {
  border-bottom: 1px solid #999;
  border-right: 1px solid #ccc;
}
.news-article__body table th {
  font-weight: 700;
}
.news-article__body table th, .news-article__body table td {
  padding: 0.5em 1em;
}
.news-article__body img {
  max-width: 100%;
  height: unset;
}
.news-article__body .wp-block-media-text__media img,
.news-article__body .wp-block-media-text__media video,
.news-article__body .wp-block-image img {
  max-width: 100%;
  height: auto !important;
}
.news-article__body .blocks-gallery-grid {
  margin: 0 !important;
}
.news-article__body .wp-block-image {
  max-width: 80%;
  margin: 2.4rem auto 0 !important;
}
.news-article__body .wp-block-image + * {
  margin-top: 4.8rem;
}
@media screen and (min-width: 768px) {
  .news-article__ttl {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .news-article__ttl {
    font-size: 2.4rem;
  }
}

.news-recommend {
  margin-top: 8rem;
}
.news-recommend > .container {
  padding-top: 4.8rem;
  border-top: 1px solid #ccc;
}
.news-recommend__btn {
  margin-top: 4.8rem;
  text-align: center;
}
.news-recommend__item {
  border: 1px solid #ccc;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
}
.news-recommend__item:hover {
  border: 2px solid #E40337;
}
.news-recommend__image img {
  width: 100%;
}
.news-recommend__company {
  font-size: 1.2rem;
}
.news-recommend__anchor {
  margin-top: 1em;
  font-size: 1.8rem;
  font-family: "Baloo 2", "Arial", cursive;
  color: #E40337;
  line-height: 1;
  display: block;
  position: relative;
}
.news-recommend__anchor::before {
  position: absolute;
  width: 1.4rem;
  height: 1.4rem;
  top: 50%;
  left: 0;
  border-left: 2px solid #E40337;
  border-top: 2px solid #E40337;
  -webkit-transform: translateY(-50%) rotate(-45deg);
      -ms-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}
.news-recommend__anchor::after {
  position: absolute;
  width: 1.2rem;
  height: 1.2rem;
  top: 50%;
  right: 0;
  border-right: 2px solid #E40337;
  border-top: 2px solid #E40337;
  -webkit-transform: translateY(-50%) rotate(45deg);
      -ms-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.news-recommend__anchor--prev {
  padding-left: 2em;
}
.news-recommend__anchor--prev::before {
  content: "";
}
.news-recommend__anchor--next {
  text-align: right;
  padding-right: 2em;
}
.news-recommend__anchor--next::after {
  content: "";
}
@media screen and (min-width: 768px) {
  .news-recommend__item {
    padding: 2rem;
  }
  .news-recommend__image {
    -webkit-flex-basis: 120px;
        -ms-flex-preferred-size: 120px;
            flex-basis: 120px;
    margin-right: 2.4rem;
  }
  .news-recommend-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4.8rem;
  }
}
@media screen and (max-width: 767px) {
  .news-recommend__item {
    padding: 0.75rem;
  }
  .news-recommend__image {
    -webkit-flex-basis: 90px;
        -ms-flex-preferred-size: 90px;
            flex-basis: 90px;
    margin-right: 1.6rem;
  }
  .news-recommend__btn .btn {
    width: 100%;
  }
  .news-recommend__prev + .news-recommend__next {
    margin-top: 3.2rem;
  }
}

.contact > .container {
  max-width: 900px;
}
.contact__txt {
  text-align: center;
}
.contact-description {
  margin-top: 4.8rem;
  background: #FFF5F2;
  padding: 3.2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 10px;
}
.contact-description__ttl {
  font-size: 2rem;
  font-weight: 700;
  color: #E40337;
}
.contact-description__txt {
  margin-top: 1.6rem;
  text-align: center;
  line-height: 2;
}
.contact-description__txt a {
  color: #E40337;
  text-decoration: underline;
}
.contact-description__txt a:hover {
  text-decoration: none;
}
.contact-links {
  margin-top: 4.8rem;
}
.contact-links__item > a {
  display: block;
  border: 1px solid #999;
  padding: 1em 1.5em;
  border-radius: 10px;
  position: relative;
}
.contact-links__item > a::after {
  content: "";
  position: absolute;
  width: 1rem;
  height: 1rem;
  top: 50%;
  right: 1em;
  border-right: 1px solid #999;
  border-top: 1px solid #999;
  -webkit-transform: translateY(-50%) rotate(45deg);
      -ms-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.contact-links__item > a:hover {
  color: #E40337;
  border-color: #E40337;
  border-width: 2px;
}
.contact-links__item > a:hover::after {
  border-color: #E40337;
}
.contact-links__item + .contact-links__item {
  margin-top: 2.4rem;
}

.donate {
  position: relative;
}
.donate-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: 900px;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
.donate-bg__item {
  position: absolute;
}
.donate-bg__item img {
  width: 100%;
}
.donate-bg__item:nth-of-type(1) {
  right: -20%;
  top: 5%;
}
.donate-bg__item:nth-of-type(2) {
  left: -20%;
  top: 25%;
}
.donate-bg__item:nth-of-type(3) {
  right: -20%;
  top: 50%;
}
.donate-bg__item:nth-of-type(4) {
  right: -20%;
  top: 75%;
}
@media screen and (max-width: 767px) {
  .donate-bg__item {
    opacity: 0.5;
  }
}

.donate-first > .container {
  max-width: 900px;
}
.donate-first__ttl {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 3.2rem;
  color: #fff;
  margin: 0 auto;
  font-family: "GenJyuuGothic";
  font-weight: 500;
}
.donate-first__ttl span {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(0%, #E40337));
  background: -webkit-linear-gradient(transparent 0%, #E40337 0%);
  background: linear-gradient(transparent 0%, #E40337 0%);
}
.donate-first__txt {
  margin-top: 3.2rem;
}
.donate-first__txt p + p {
  margin-top: 1em;
  line-height: 2;
}
.donate-first__txt a {
  color: #E40337;
  text-decoration: underline;
}
.donate-first__txt a:hover {
  text-decoration: none;
}
.donate-first__txt small {
  font-size: 0.875em;
  color: #999;
}
.donate-cta + .donate-first__txt {
  margin-top: 6.4rem;
}
@media screen and (min-width: 768px) {
  .donate-first__txt {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .donate-first__txt {
    text-align: center;
  }
}

.donate-cta {
  margin: 8rem auto 0;
  position: relative;
  padding: 4.8rem 3.2rem 3.2rem;
  background: #FFF5F2;
  border-radius: 10px;
}
.donate-cta::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -25px;
  width: 2px;
  height: 50px;
  background-color: #E40337;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.donate-cta__ttl {
  position: relative;
  font-family: "GenJyuuGothic";
  font-weight: 500;
  text-align: center;
  color: #E40337;
  font-size: 2.4rem;
}
.donate-cta__btn {
  margin: 3.2rem auto 0;
}
.donate-cta__btn .btn {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.donate-cta__txt {
  margin-top: 3.2rem;
}
.donate-cta__txt a {
  color: #E40337;
  text-decoration: underline;
}
.donate-cta__txt a:hover {
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .donate-cta__txt {
    text-align: center;
  }
  .donate-cta__btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 4.8rem;
    max-width: 85%;
  }
}
@media screen and (max-width: 767px) {
  .donate-cta__btn .btn {
    height: 60px;
  }
  .donate-cta__btn .btn + .btn {
    margin-top: 1.6rem;
  }
}

.donate-section {
  margin-top: 12rem;
}
.donate-section > .container {
  max-width: 900px;
}
.donate-section__ttl {
  position: relative;
  font-family: "GenJyuuGothic";
  font-weight: 500;
  text-align: center;
  color: #E40337;
}
.donate-section__ttl::before {
  content: "";
  position: absolute;
  top: 110%;
  left: 50%;
  height: 2px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 50px;
  background-color: #E40337;
}
.donate-section__txt {
  line-height: 2;
}
.donate-section__ttl + .donate-section__txt {
  margin-top: 4.8rem;
}
.donate-section__ttl02 {
  font-family: "GenJyuuGothic";
  font-weight: 500;
  text-align: center;
  line-height: 2;
  font-size: 2.4rem;
}
.donate-section .linkcard {
  margin-top: 4.8rem;
}
.donate-section__inner {
  margin-top: 4.8rem;
}
.donate-section__inner + .donate-section__inner {
  margin-top: 6.4rem;
}
.donate-section__txt02 {
  margin-top: 3.2rem;
  line-height: 2;
}
.donate-section .list {
  margin-top: 3.2rem;
}
@media screen and (min-width: 768px) {
  .donate-section__txt {
    text-align: center;
  }
  .donate-section__ttl {
    font-size: 3.2rem;
  }
  .donate-section__ttl::before {
    width: 60px;
  }
}
@media screen and (max-width: 767px) {
  .donate-section__ttl {
    font-size: 2.4rem;
  }
  .donate-section__ttl::before {
    width: 40px;
  }
}

.donate-tsunagaru {
  margin: 4.8rem auto 0;
}
.donate-tsunagaru > .container {
  background: #f4f4f4;
  border-radius: 10px;
  border: 4px solid #f4f4f4;
}
.donate-tsunagaru__image img {
  width: 100%;
}
.donate-tsunagaru__body a {
  color: #E40337;
  text-decoration: underline;
}
.donate-tsunagaru__body a img {
  margin-left: 0.25em;
  height: 0.75em;
  vertical-align: baseline;
}
.donate-tsunagaru__body a:hover {
  text-decoration: none;
}
.donate-tsunagaru__body p {
  margin-top: 0.75em;
}
@media screen and (min-width: 768px) {
  .donate-tsunagaru > .container {
    display: grid;
    grid-template-columns: 35% 1fr;
    max-width: 900px;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .donate-tsunagaru__image {
    border-radius: 10px 0 0 10px;
  }
  .donate-tsunagaru__body {
    padding: 20px;
  }
  .donate-tsunagaru__ttl {
    font-weight: 700;
  }
}/*# sourceMappingURL=styles.css.map */