@charset "UTF-8";
/*------------------------------
    colors               
------------------------------*/
/*------------------------------
    text                
------------------------------*/
/*------------------------------
    breakpoints                
------------------------------*/
/*------------------------------
    px → vw                
------------------------------*/
/*------------------------------
    images                
------------------------------*/
/*------------------------------
    center                
------------------------------*/
/*------------------------------
    flex                
------------------------------*/
/*------------------------------
    rounded                
------------------------------*/
/*------------------------------
    colors               
------------------------------*/
/*------------------------------
    text                
------------------------------*/
/*------------------------------
    breakpoints                
------------------------------*/
/*------------------------------
    px → vw                
------------------------------*/
/*------------------------------
    images                
------------------------------*/
/*------------------------------
    center                
------------------------------*/
/*------------------------------
    flex                
------------------------------*/
/*------------------------------
    rounded                
------------------------------*/
/*------------------------------*/
/* reset                        */
/*------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  list-style: none;
  color: #000;
}

html {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

body {
  line-height: 2;
  letter-spacing: 0.75px;
}

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

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  display: inline-block;
  text-decoration: none;
}

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

img {
  width: 100%;
  height: auto;
}

input, button, select, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

* {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/* CLEARFIX(.cf) */
.cf {
  display: inline-block;
}
.cf::after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

* html .cf {
  height: 1%;
}

/*------------------------------
    colors               
------------------------------*/
/*------------------------------
    text                
------------------------------*/
/*------------------------------
    breakpoints                
------------------------------*/
/*------------------------------
    px → vw                
------------------------------*/
/*------------------------------
    images                
------------------------------*/
/*------------------------------
    center                
------------------------------*/
/*------------------------------
    flex                
------------------------------*/
/*------------------------------
    rounded                
------------------------------*/
/*================================================

	header

=================================================*/
header {
  background: rgba(248, 247, 242, 0.6);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 3;
}
header .header-inner {
  padding: 4vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .header-inner.open .header-logo {
  opacity: 0;
}
header .header-inner.open .header-nav-btn span:nth-of-type(1) {
  -webkit-animation: active-bar01 0.75s forwards;
          animation: active-bar01 0.75s forwards;
}
header .header-inner.open .header-nav-btn span:nth-of-type(2) {
  opacity: 0;
}
header .header-inner.open .header-nav-btn span:nth-of-type(3) {
  -webkit-animation: active-bar03 0.75s forwards;
          animation: active-bar03 0.75s forwards;
  width: 100%;
}
@-webkit-keyframes active-bar01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(8px) rotate(0);
            transform: translateY(8px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(8px) rotate(45deg);
            transform: translateY(8px) rotate(45deg);
  }
}
@keyframes active-bar01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(8px) rotate(0);
            transform: translateY(8px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(8px) rotate(45deg);
            transform: translateY(8px) rotate(45deg);
  }
}
@-webkit-keyframes active-bar03 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-8px) rotate(0);
            transform: translateY(-8px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-8px) rotate(-45deg);
            transform: translateY(-8px) rotate(-45deg);
  }
}
@keyframes active-bar03 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-8px) rotate(0);
            transform: translateY(-8px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-8px) rotate(-45deg);
            transform: translateY(-8px) rotate(-45deg);
  }
}
header .header-inner.open nav {
  right: 0;
  opacity: 1;
}
header .header-logo {
  width: 64vw;
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
header .header-nav-btn {
  margin-left: auto;
  position: relative;
  width: 24px;
  height: 19px;
  cursor: pointer;
  z-index: 20;
}
header .header-nav-btn span {
  position: absolute;
  right: 0;
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background: #4399FF;
}
header .header-nav-btn span:nth-of-type(1) {
  -webkit-animation: bar01 0.75s forwards;
          animation: bar01 0.75s forwards;
  top: 0;
  background: #4399FF;
}
header .header-nav-btn span:nth-of-type(2) {
  -webkit-transition: all 0.25s 0.25s;
  transition: all 0.25s 0.25s;
  opacity: 1;
  top: 8px;
  background: #FFBBDA;
}
header .header-nav-btn span:nth-of-type(3) {
  -webkit-animation: bar03 0.75s forwards;
          animation: bar03 0.75s forwards;
  bottom: 0;
  width: 60%;
  background: #3EDDBF;
}
@-webkit-keyframes bar01 {
  0% {
    -webkit-transform: translateY(9px) rotate(45deg);
            transform: translateY(9px) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(9px) rotate(0);
            transform: translateY(9px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
}
@keyframes bar01 {
  0% {
    -webkit-transform: translateY(9px) rotate(45deg);
            transform: translateY(9px) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(9px) rotate(0);
            transform: translateY(9px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
}
@-webkit-keyframes bar03 {
  0% {
    -webkit-transform: translateY(-9px) rotate(-45deg);
            transform: translateY(-9px) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(-9px) rotate(0);
            transform: translateY(-9px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
}
@keyframes bar03 {
  0% {
    -webkit-transform: translateY(-9px) rotate(-45deg);
            transform: translateY(-9px) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(-9px) rotate(0);
            transform: translateY(-9px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
}

nav {
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.075em;
}
nav ul {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
}
nav .nav-sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0 1em;
  padding: 12vw 0 0;
  margin: 12vw 0 0;
  border-top: 1px solid #fff;
}
nav .nav-sub a {
  width: 37.3333333333vw;
  font-size: 14px;
  padding: 5px 15px;
  border: 1px solid #4399FF;
  border-radius: 100px;
}
nav .nav-logo {
  width: 75vw;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 5vh;
}

@media screen and (max-width: 991px) {
  nav {
    width: 100vw;
    height: 100vh;
    background: #F8F7F2;
    position: fixed;
    top: 0;
    right: -100vw;
    bottom: 0;
    z-index: 10;
    overflow-x: hidden;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    opacity: 0;
  }
  nav .nav-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0 0;
  }
  .nav-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5em 0;
  }
}
/*   _____   _____ 
    |  __ \ / ____|
    | |__) | |     
    |  ___/| |     
    | |    | |____ 
    |_|     \_____|
*/
@media screen and (min-width: 992px) {
  header {
    z-index: 2;
  }
  header .header-inner {
    width: 91.6666666667vw;
    margin: 0 auto;
    padding: 30px 0;
  }
  header .header-logo {
    width: 20.8333333333vw;
    max-width: 300px;
  }
  header .header-nav-btn {
    display: none;
  }
  nav {
    margin-left: auto;
    width: 75%;
  }
  nav ul {
    font-size: 13px;
  }
  nav .nav-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  nav .nav-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0 10px;
  }
  nav .nav-sub {
    margin: 0 0 0 auto;
    padding: 0;
    gap: 0 5px;
    border-top: 0;
    max-width: 36%;
  }
  nav .nav-sub .btn a {
    width: auto;
    font-size: 13px;
    padding: 10px;
  }
  nav .nav-logo {
    display: none;
  }
}
@media screen and (min-width: 1440px) {
  nav {
    width: calc(100% - 300px);
  }
  nav ul {
    font-size: 14px;
  }
  nav .nav-main {
    gap: 0 30px;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  nav .nav-sub {
    gap: 0 15px;
  }
  nav .nav-sub .btn.btn-mail a {
    padding: 10px 20px;
  }
  nav .nav-sub .btn a {
    padding: 10px 30px;
  }
}
@media screen and (min-width: 1920px) {
  nav ul {
    font-size: 16px;
  }
}
/*------------------------------
    colors               
------------------------------*/
/*------------------------------
    text                
------------------------------*/
/*------------------------------
    breakpoints                
------------------------------*/
/*------------------------------
    px → vw                
------------------------------*/
/*------------------------------
    images                
------------------------------*/
/*------------------------------
    center                
------------------------------*/
/*------------------------------
    flex                
------------------------------*/
/*------------------------------
    rounded                
------------------------------*/
/*================================================

	footer

=================================================*/
footer {
  background: #F8F7F2;
  padding: 8vw 4vw 4vw;
  margin-top: 12vw;
  color: #000;
}
footer .footer-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8vw 0;
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.075em;
}
footer .footer-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8vw 0;
}
footer .footer-left__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5em 0;
  font-size: 13px;
  font-size: 3.4666666667vw;
}
footer .footer-right__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0 1em;
}
footer .footer-right__link li {
  width: 50%;
}
footer .copyright {
  font-size: 12px;
  font-size: 3.2vw;
  margin-top: 8vw;
  text-align: center;
}

/*   _____   _____ 
    |  __ \ / ____|
    | |__) | |     
    |  ___/| |     
    | |    | |____ 
    |_|     \_____|
*/
@media screen and (min-width: 992px) {
  footer {
    padding: 4.1666666667vw;
    margin-top: 6.25vw;
  }
  footer .footer-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  footer .footer-left {
    gap: 60px 0;
  }
  footer .footer-left__logo {
    width: 33.3333333333vw;
  }
  footer .footer-left__nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0 2.0833333333vw;
    font-size: 14px;
  }
  footer .footer-right {
    min-width: 360px;
    width: 25vw;
  }
  footer .footer-right__link {
    gap: 0 2.0833333333vw;
  }
  footer .footer-right .btn a {
    font-size: 13px;
  }
  footer .copyright {
    font-size: 12px;
    text-align: right;
    margin-top: 60px;
  }
}
@media screen and (min-width: 1440px) {
  footer {
    padding: 60px 4.1666666667vw;
  }
  footer .footer-left__nav {
    gap: 0 30px;
  }
  footer .footer-left__logo {
    max-width: 420px;
  }
  footer .footer-right {
    width: auto;
  }
  footer .footer-right__link {
    gap: 0 30px;
  }
  footer .footer-right .btn {
    min-width: 210px;
    width: auto;
  }
  footer .footer-right .btn.btn-w {
    min-width: 150px;
  }
}
@media screen and (min-width: 1920px) {
  footer {
    margin-top: 4.1666666667vw;
  }
}
/*================================================

	index

=================================================*/
.main-inner {
  background: url(../img/heading_bg.png) center center/cover no-repeat;
  border-radius: 10.6666666667vw;
}

/*-------------------------------------
    キービジュアル                
-------------------------------------*/
.keyVisualIndex {
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.075em;
  line-height: 2;
  text-align: center;
  position: relative;
}
.keyVisualIndex::after {
  content: "";
  display: block;
  background: url(../img/index_kv.svg) center center/contain no-repeat;
}
.keyVisualIndex h1 {
  font-size: 24px;
  font-size: 6.4vw;
}
.keyVisualIndex p {
  font-size: 16px;
  font-size: 4.2666666667vw;
  padding-top: 90.6666666667vw;
}

/*-------------------------------------
    私たちについて                
-------------------------------------*/
.aboutUs {
  padding: 0 8vw 16vw;
  position: relative;
}
.aboutUs::before {
  content: "";
  display: block;
  width: 60vw;
  height: 60vw;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.74);
  -webkit-filter: blur(8vw);
          filter: blur(8vw);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 0;
}
.aboutUs-inner {
  position: relative;
  z-index: 1;
}
.aboutUs-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4vw 0;
  margin-top: 8vw;
  position: relative;
}

/*-------------------------------------
    お知らせ                
-------------------------------------*/
.info-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8vw 0;
}
.info-inner a {
  text-decoration: none;
  color: #000;
}

.info-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4vw 0;
}
.info-list li a {
  background: #fff;
  padding: 4vw 4.8vw;
  border: 1px solid #FFBBDA;
  border-radius: 4vw;
}
.info-list__date {
  display: block;
  font-size: 12px;
  font-size: 3.2vw;
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.075em;
  color: #797979;
  margin-bottom: 10px;
}
.info-list__date-year {
  margin-right: 4px;
  font-size: 11px;
  font-size: 2.9333333333vw;
  color: inherit;
}
.info-list__cnt h3 {
  font-size: 14px;
  font-size: 3.7333333333vw;
  font-weight: 700;
  margin-bottom: 0.75em;
}
.info-list__arrow {
  display: block;
  margin: 1em 0 0 auto;
  width: 4.8vw;
  height: 4.2666666667vw;
  background: url(../img/icon_arrow_p.svg) center center/100% auto no-repeat;
}

.info-index {
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.075em;
  font-size: 14px;
  font-size: 3.7333333333vw;
  width: 50%;
  margin: 0 auto;
  position: relative;
}
.info-index a {
  position: relative;
  display: block;
  line-height: 21.3333333333vw;
  text-align: right;
  padding-right: 10.6666666667vw;
}
.info-index a span {
  position: relative;
  z-index: 1;
}
.info-index a::before, .info-index a::after {
  content: "";
  display: block;
}
.info-index a::before {
  width: 21.3333333333vw;
  height: 21.3333333333vw;
  background: #fff;
  border-radius: 100px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
}
.info-index a::after {
  width: 3.7333333333vw;
  height: 3.2vw;
  background: url(../img/icon_arrow_b.svg) center center/100% auto no-repeat;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 4vw;
}

/*-------------------------------------
    一緒に子どもたちの支えになりませんか？                
-------------------------------------*/
#support {
  background: #fff;
  padding: 0;
  position: relative;
}
#support .arch {
  display: block;
  background: #F8F7F2;
  line-height: 0;
  width: 100vw;
  height: 8.3333333333vw;
  position: absolute;
  left: 0;
  -webkit-mask: url(../img/bg_arch.svg) luminance center center/100% auto no-repeat;
          mask: url(../img/bg_arch.svg) luminance center center/100% auto no-repeat;
  z-index: 1;
}
#support .arch.arch-top {
  top: 0;
}
#support .arch.arch-bottom {
  bottom: 0;
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1);
}
#support .sec-inner {
  padding: 16vw 4vw;
  position: relative;
  z-index: 0;
}
#support .sec-inner::before, #support .sec-inner::after {
  content: "";
  display: block;
  width: 80vw;
  height: 80vw;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  z-index: -1;
}
#support .sec-inner::before {
  background-image: url(../img/bg_grad01.png);
  background-image: -webkit-image-set(url(../img/bg_grad01.png) 1x, url(../img/bg_grad01.webp) 2x);
  background-image: image-set(url(../img/bg_grad01.png) 1x, url(../img/bg_grad01.webp) 2x);
  top: 0;
  right: 0;
}
#support .sec-inner::after {
  background-image: url(../img/bg_grad02.png);
  background-image: -webkit-image-set(url(../img/bg_grad02.png) 1x, url(../img/bg_grad02.webp) 2x);
  background-image: image-set(url(../img/bg_grad02.png) 1x, url(../img/bg_grad02.webp) 2x);
  bottom: 0;
  left: 0;
}

.support-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8vw 0;
}
.support-list li {
  background: #F8F7F2;
  padding: 3.2vw 8vw 8vw;
  border-radius: 4vw;
}
.support-list li h3 {
  margin-bottom: 4vw;
  text-align: center;
}
.support-list li p {
  margin-bottom: 6.4vw;
}
.support-list__img {
  padding: 4vw;
}

@media screen and (max-width: 767px) {
  .keyVisualIndex::after {
    width: 84vw;
    height: 80vw;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .keyVisualIndex-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 100%;
  }
}
/*   _____   _____ 
    |  __ \ / ____|
    | |__) | |     
    |  ___/| |     
    | |    | |____ 
    |_|     \_____|
*/
@media screen and (min-width: 768px) {
  .main-inner {
    border-radius: 80px;
  }
  /*-------------------------------------
      キービジュアル                
  -------------------------------------*/
  .keyVisualIndex {
    width: 91.6666666667vw;
    margin: 0 auto;
  }
  .keyVisualIndex::after {
    width: 37.5vw;
    height: 35.7638888889vw;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 4.1666666667vw;
  }
  .keyVisualIndex-inner {
    width: 42.7083333333vw;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 4.1666666667vw;
  }
  .keyVisualIndex h1 {
    font-size: 36px;
    font-size: 2.5vw;
  }
  .keyVisualIndex p {
    padding-top: 0;
    font-size: 21px;
    font-size: 1.4583333333vw;
  }
  /*-------------------------------------
      私たちについて                
  -------------------------------------*/
  .aboutUs {
    width: 91.6666666667vw;
    margin: 0 auto;
    max-width: 720px;
    padding: 120px 0 160px;
  }
  .aboutUs::before {
    width: 480px;
    height: 480px;
    -webkit-filter: blur(30px);
            filter: blur(30px);
  }
  .aboutUs-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0 20px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 60px;
  }
  .aboutUs-btn a {
    width: calc(50% - 10px);
  }
  /*-------------------------------------
      お知らせ                
  -------------------------------------*/
  #info {
    padding: 8.3333333333vw 0 11.1111111111vw;
  }
  #info h2 {
    text-align: left;
  }
  .info-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .info-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0 28px;
  }
  .info-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .info-list li a {
    padding: 27px 30px;
    border-radius: 30px;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-box-flex: 1;
        -ms-flex: 1 auto;
            flex: 1 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .info-list li a:hover {
    -webkit-box-shadow: 0 0 15px rgba(255, 187, 218, 0.45);
            box-shadow: 0 0 15px rgba(255, 187, 218, 0.45);
  }
  .info-list li a:hover .info-list__arrow {
    margin: 1em -8px 0 auto;
  }
  .info-list__date {
    font-size: 12px;
  }
  .info-list__date-year {
    font-size: 11px;
  }
  .info-list__cnt {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .info-list__cnt h3 {
    font-size: 14px;
  }
  .info-list__cnt p {
    font-size: 12px;
  }
  .info-list__arrow {
    width: 18px;
    height: 16px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .info-index a {
    font-size: 16px;
    line-height: 120px;
    padding-right: 38px;
    letter-spacing: 0.075em;
  }
  .info-index a::before {
    width: 120px;
    height: 120px;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  .info-index a::after {
    width: 18px;
    height: 16px;
    right: 18px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .info-index a:hover::before {
    -webkit-box-shadow: 0 0 15px rgba(255, 187, 218, 0.45);
            box-shadow: 0 0 15px rgba(255, 187, 218, 0.45);
  }
  .info-index a:hover::after {
    right: 12px;
  }
  /*-------------------------------------
      一緒に子どもたちの支えになりませんか？                
  -------------------------------------*/
  #support .sec-inner {
    padding: 120px 4.1666666667vw;
    max-width: 100vw;
  }
  #support .sec-inner::before, #support .sec-inner::after {
    width: 33.3333333333vw;
    height: 33.3333333333vw;
  }
  #support .support-list {
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px 0;
  }
  #support .support-list li {
    padding: 60px;
    border-radius: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0 60px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #support .support-list__img {
    padding: 0;
    width: 33.3333333333vw;
  }
  #support .support-list__text {
    width: 37.5vw;
  }
  #support .support-list__text h3 {
    text-align: left;
    margin-bottom: 24px;
  }
  #support .support-list__text p {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1440px) {
  /*-------------------------------------
      お知らせ                
  -------------------------------------*/
  #info {
    width: 1440px;
    margin: 0 auto;
  }
  .info-list li {
    width: 320px;
  }
  /*-------------------------------------
      一緒に子どもたちの支えになりませんか？                
  -------------------------------------*/
  #support .sec-inner {
    padding: 120px;
  }
  #support .support-list__img {
    width: 480px;
  }
  #support .support-list__text {
    width: 540px;
  }
  #support .support-list__text .btn {
    max-width: 360px;
    margin-left: auto;
  }
}
@media screen and (min-width: 1920px) {
  #info {
    padding: 6.25vw 0 8.3333333333vw;
  }
}
/*================================================

	about

=================================================*/
/*------------------------------
    aboutus                
------------------------------*/
.aboutus-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8vw 0;
  margin-bottom: 12vw;
}
.aboutus .box h3 {
  margin-bottom: 1em;
}
.aboutus .box p {
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.075em;
}

/*------------------------------
    report                
------------------------------*/
.report .text-wrap {
  margin-bottom: 6.4vw;
}

@media screen and (max-width: 767px) {
  /*------------------------------
      report                
  ------------------------------*/
  .table-report tr {
    border: 1px solid #4399FF;
  }
  .table-report th, .table-report td {
    display: block;
    width: 100%;
  }
  .table-report th {
    padding: 0.5em 1em;
  }
  .table-report td {
    border: 1px solid #4399FF;
    padding: 1em;
  }
}
/*   _____   _____ 
    |  __ \ / ____|
    | |__) | |     
    |  ___/| |     
    | |    | |____ 
    |_|     \_____|
*/
@media screen and (min-width: 768px) {
  /*------------------------------
      aboutus                
  ------------------------------*/
  .aboutus-wrap {
    gap: 48px 0;
    margin-bottom: 90px;
  }
  /*------------------------------
      report                
  ------------------------------*/
  .report .text-wrap {
    margin-bottom: 30px;
  }
  .table-report tr {
    border: 1px solid #4399FF;
  }
  .table-report th {
    border-bottom: 1px solid #fff;
  }
  .table-report td {
    border: 1px solid #4399FF;
  }
}
@media screen and (min-width: 1920px) {
  /*------------------------------
      report                
  ------------------------------*/
  .table-report th {
    width: 180px;
  }
}
/*------------------------------
    table                
------------------------------*/
/*================================================

	call

=================================================*/
/*------------------------------
    together                
------------------------------*/
.together .box-quote {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8vw 0;
  margin-bottom: 4vw;
}
.together .box-quote__inn .quote {
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.075em;
}
.together .box-quote__inn .note {
  text-align: right;
}

/*------------------------------
    training                
------------------------------*/
.training {
  max-width: 100vw;
  overflow-x: hidden;
}
.training-lead {
  margin-bottom: 8vw;
}
.training-lead h3 {
  text-align: center;
}
.training-note {
  margin-bottom: 8vw;
}
.training-note ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1em 0;
  padding-left: 1.5em;
}
.training-note ul li {
  text-indent: -1.5em;
}
.training-note ul li::before {
  content: "";
  display: inline-block;
  width: 0.8em;
  height: 0.8em;
  background: #4399FF;
  border-radius: 100px;
  margin-right: 0.5em;
}
.training-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12vw 0;
}
.training-cnt h3 {
  text-align: center;
}
.training-cnt.bg-img::before, .training-cnt.bg-img::after {
  z-index: 0;
}
.training-cnt.bg-img .box {
  position: relative;
  z-index: 1;
}
.training-overview {
  background: #fff;
  padding: 8vw 4vw;
  border-radius: 4vw;
  margin-bottom: 8vw;
}
.training-overview__inn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4vw 0;
  margin-bottom: 8vw;
}
.training-overview__inn dl dt {
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.075em;
}
.training-overview__inn dl dd {
  padding-left: 1em;
}
.training-closed .training-overview__inn {
  text-align: center;
  margin-bottom: 0;
  margin-top: 4vw;
}
.training table {
  margin-bottom: 4vw;
}
.training-doc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4vw 0;
}
.training-contact {
  margin-top: 12vw;
  padding: 0 4vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4vw 0;
}
.training-contact h4 {
  margin-bottom: 0.5em;
}
.training-contact .tel {
  color: #4399FF;
  text-decoration: underline;
}

/*   _____   _____ 
    |  __ \ / ____|
    | |__) | |     
    |  ___/| |     
    | |    | |____ 
    |_|     \_____|
*/
@media screen and (min-width: 768px) {
  /*------------------------------
      together                
  ------------------------------*/
  .together .box-quote {
    gap: 4.1666666667vw;
  }
  /*------------------------------
      training                
  ------------------------------*/
  .training-lead {
    margin-bottom: 3.3333333333vw;
  }
  .training-wrap {
    gap: 90px 0;
  }
  .training-overview {
    margin-bottom: 3.3333333333vw;
  }
  .training-overview__inn {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.6666666667vw 0;
    margin-bottom: 3.3333333333vw;
  }
  .training-overview__inn dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .training-overview__inn dl dt {
    width: 12.5vw;
  }
  .training-overview__inn dl dd {
    width: 45.8333333333vw;
  }
  .training .btn {
    width: 45.8333333333vw;
    margin: 0 auto;
  }
  .training-note {
    margin-bottom: 3.3333333333vw;
  }
  .training-closed .training-overview__inn {
    margin-top: 1.6666666667vw;
  }
  .training table {
    margin-bottom: 24px;
  }
  .training-doc {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0 30px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .training-doc .btn {
    width: calc(50% - 15px);
  }
  .training-apply .btn {
    max-width: 480px;
  }
  .training-contact {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 4.1666666667vw;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin-top: 90px;
    padding: 4.1666666667vw;
  }
  .training-contact .btn {
    width: 29.1666666667vw;
    max-width: 420px;
  }
  .training-contact .btn a {
    font-size: 16px !important;
  }
}
@media screen and (min-width: 1920px) {
  /*------------------------------
      together                
  ------------------------------*/
  .together .box-quote {
    gap: 60px 0;
    margin-bottom: 48px;
  }
  .together .box-quote__inn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .together .box-quote__inn .quote {
    width: 780px;
  }
  .together .box-quote .note {
    font-size: 14px;
  }
  /*------------------------------
      training                
  ------------------------------*/
  .training-lead {
    margin-bottom: 48px;
  }
  .training-wrap {
    gap: 90px 0;
  }
  .training-cnt h3 {
    margin-bottom: 48px;
  }
  .training-overview {
    margin-bottom: 48px;
  }
  .training-overview__inn {
    gap: 24px 0;
    margin-bottom: 48px;
  }
  .training-overview__inn dl dt {
    width: 180px;
  }
  .training-overview__inn dl dd {
    width: 660px;
  }
  .training-overview .btn {
    width: 480px;
  }
  .training-note {
    margin-bottom: 48px;
  }
  .training-closed .training-overview__inn {
    margin-top: 24px;
  }
  .training-contact {
    padding: 0 60px;
  }
}
/*------------------------------
    table                
------------------------------*/
table {
  width: 100%;
}
table th {
  color: #fff;
  font-size: 16px;
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.075em;
  text-align: center;
  background: #4399FF;
}
table caption {
  font-size: 18px;
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.075em;
  margin-bottom: 1em;
}

.table-training tbody tr:not(.skip-num) {
  counter-increment: number;
}
.table-training tbody tr td:first-child span {
  display: block;
  text-align: center;
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.075em;
}
.table-training tbody tr .hokou::before {
  content: "補講";
}
.table-training-note {
  margin-bottom: 24px;
  font-size: 12px;
  color: #797979;
  line-height: 1.5;
}

/*   _____   _____ 
    |  __ \ / ____|
    | |__) | |     
    |  ___/| |     
    | |    | |____ 
    |_|     \_____|
*/
@media screen and (min-width: 768px) {
  table {
    table-layout: fixed;
  }
  table caption {
    font-size: 24px;
    margin-bottom: 48px;
  }
  table th, table td {
    line-height: 1.7;
    padding: 15px;
  }
  table td {
    vertical-align: middle;
  }
  thead th {
    border-right: 1px solid #fff;
  }
  thead th:nth-child(1) {
    width: 8%;
  }
  thead th:nth-child(2) {
    width: 13%;
  }
  thead th:nth-child(3) {
    width: 14%;
  }
  thead th:nth-child(4) {
    width: 35%;
  }
  thead th:nth-child(5) {
    width: 30%;
  }
  .table-training tr .num::before {
    content: counter(number);
  }
  .table-training tr .hokou::before {
    font-size: 14px;
  }
  .table-training td {
    border-right: 1px solid #4399FF;
    border-top: 1px solid #4399FF;
  }
  .table-training td:nth-child(1), .table-training td:nth-child(2), .table-training td:nth-child(3) {
    text-align: center;
  }
  .table-training td:last-child {
    border-right: none;
  }
  .table-training-note {
    font-size: 14px;
    text-align: right;
    margin-bottom: 60px;
  }
}
/*    _____ _____  
     / ____|  __ \ 
     | (___| |__) |
     \___ \|  ___/ 
     ____) | |     
    |_____/|_|    
*/
@media screen and (max-width: 767px) {
  thead {
    display: none;
  }
  .table-training tr, .table-training td {
    display: block;
    width: 100%;
    border-bottom: 1px solid #4399FF;
  }
  .table-training tr:last-child {
    border-bottom: none;
  }
  .table-training td {
    line-height: 0;
    opacity: 0;
    visibility: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
  .table-training td span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: calc(100% - 6em);
    padding: 0 1em;
  }
  .table-training td::before {
    content: attr(data-label);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: #F8F7F2;
    width: 6em;
    padding: 0 0.5em;
    line-height: 0;
    visibility: hidden;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
  .table-training td.is-open {
    line-height: 1.7;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
  .table-training td.is-open span {
    padding: 1em;
  }
  .table-training td.is-open::before {
    padding: 1em 0.5em;
    line-height: 1.7;
    visibility: visible;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
  .table-training .training-num {
    background: #4399FF;
    line-height: 1.7;
    opacity: 1;
    visibility: visible;
    padding: 1em;
    position: relative;
  }
  .table-training .training-num::before, .table-training .training-num::after {
    content: "";
    display: block;
    background: #fff;
    border-radius: 2px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .table-training .training-num::before {
    width: 15px;
    height: 2px;
    padding: 0;
    visibility: visible;
    right: 15px;
  }
  .table-training .training-num::after {
    width: 2px;
    height: 15px;
    right: 21.5px;
    opacity: 1;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
  .table-training .training-num.is-active::after {
    opacity: 0;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
  .table-training .training-num span {
    color: #fff;
    width: 100%;
  }
  .table-training .training-num .num::before {
    content: "第" counter(number) "回";
  }
}
/*================================================

	support

=================================================*/
/*------------------------------
    donate                
------------------------------*/
.donate-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8vw 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 8vw;
}
.donate-img__top {
  width: 20vw;
}
.donate-img__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0 4vw;
}
.donate-img__list li {
  position: relative;
}
.donate-img__list li::before {
  content: "";
  display: block;
  width: 125%;
  height: 125%;
  background: #fff;
  border-radius: 300px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.donate-img__list li img {
  position: relative;
}

/*------------------------------
    support                
------------------------------*/
.support .sec-inner {
  position: relative;
  z-index: 1;
}
.support-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16vw 0;
}
.support-cnt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8vw 0;
}
.support-box {
  background: #fff;
  padding: 8vw 5.3333333333vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4vw 0;
  border-radius: 4vw;
}
.support-box__img .note {
  text-align: right;
}
.support-box__text-membership {
  font-size: 14px;
  font-size: 3.7333333333vw;
}
.support-box__text-membership dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0 1em;
}
.support-transfer {
  padding: 0 4vw;
}
.support-transfer h4 {
  text-align: center;
}
.support-transfer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4vw 0;
  margin-bottom: 4vw;
}
.support-transfer .transfer-box {
  background: rgba(255, 255, 255, 0.6);
  padding: 4vw;
}
.support-transfer .transfer-box > dt {
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.075em;
  font-size: 14px;
  font-size: 3.7333333333vw;
  margin-bottom: 0.5em;
}
.support-transfer .transfer-box dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5em 0;
}
.support-transfer .transfer-box dd dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 13px;
  font-size: 3.4666666667vw;
  line-height: 1.5;
}
.support-transfer .transfer-box dd dl dt {
  width: 5em;
}
.support-transfer .transfer-box dd dl dd {
  width: calc(100% - 5em);
}
.support-transfer .transfer-box .note {
  margin-top: 0.5em;
  padding-left: 1em;
  text-indent: -0.5em;
}
.support-transfer .transfer-box .note::before {
  content: "※";
  display: inline-block;
}
.support-transfer__receipt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4vw 0;
}
.support-transfer__receipt .text-wrap {
  gap: 0.5em 0;
}
.support-transfer__receipt ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0 0.5em;
  font-size: 13px;
  font-size: 3.4666666667vw;
}
.support-transfer__receipt ul li::before {
  content: "・";
  display: inline-block;
}
.support-notice h3 {
  text-align: center;
}

/*   _____   _____ 
    |  __ \ / ____|
    | |__) | |     
    |  ___/| |     
    | |    | |____ 
    |_|     \_____|
*/
@media screen and (min-width: 768px) {
  /*------------------------------
      donate                
  ------------------------------*/
  .donate-img__top {
    width: 124px;
  }
  .donate-img__list {
    gap: 0 5.5555555556vw;
  }
  .donate-img__list li::before {
    width: 135%;
    height: 135%;
  }
  /*------------------------------
      support                
  ------------------------------*/
  .support-wrap {
    gap: 6.25vw 0;
  }
  .support-cnt {
    gap: 3.3333333333vw 0;
  }
  .support-cnt.wrap-bg {
    padding: 0;
    margin-bottom: 90px;
  }
  .support-box {
    padding: 4.1666666667vw;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    border-radius: 2.7777777778vw;
  }
  .support-box__text {
    width: 39.5833333333vw;
  }
  .support-box__text--noimg {
    width: 100%;
  }
  .support-box__text-membership {
    font-size: 16px;
  }
  .support-box__img {
    width: 33.3333333333vw;
  }
  .support-box__img a:hover {
    opacity: 0.7;
  }
  .support-transfer__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .support-transfer .transfer-box {
    width: calc(50% - 6px);
    padding: 2.5vw;
  }
  .support-transfer .transfer-box > dt {
    font-size: 16px;
    margin-bottom: 1.5em;
  }
  .support-transfer .transfer-box dd dl {
    font-size: 16px;
  }
  .support-transfer__receipt {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .support-transfer__receipt .text-wrap {
    width: 45.8333333333vw;
  }
  .support-transfer__receipt ul {
    font-size: 16px;
  }
  .support-transfer__receipt .btn {
    width: 20.8333333333vw;
  }
  .support-transfer__receipt .btn a {
    font-size: 14px !important;
  }
  .support-notice {
    padding: 0 4.1666666667vw;
  }
}
@media screen and (min-width: 1920px) {
  /*------------------------------
      donate                
  ------------------------------*/
  .donate-img {
    gap: 88px 0;
    max-width: 1090px;
    margin: 0 auto 115px;
  }
  .donate-img__list {
    gap: 0 80px;
  }
  .donate-img__list li {
    width: 310px;
  }
  .donate-img__list li::before {
    width: 420px;
    height: 420px;
  }
  /*------------------------------
      support                
  ------------------------------*/
  .section.support .sec-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
  }
  .support-wrap {
    gap: 90px 0;
  }
  .support-cnt {
    gap: 48px 0;
  }
  .support-box {
    border-radius: 40px;
    padding: 60px;
  }
  .support-box__text {
    width: 570px;
  }
  .support-box__img {
    width: 480px;
  }
  .support-transfer {
    padding: 0 60px;
  }
  .support-transfer .transfer-box {
    padding: 48px;
  }
  .support-transfer__receipt .text-wrap {
    width: 660px;
  }
  .support-transfer__receipt .btn {
    width: 240px;
  }
  .support-notice {
    padding: 0 60px;
  }
}
/*================================================

	chart

=================================================*/
.chart-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8vw 0;
  margin-bottom: 16vw;
}

.chart-bars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.chart-bars::before, .chart-bars::after {
  display: block;
  content: "";
  background: #777;
  position: absolute;
}
.chart-bars__bar {
  position: relative;
}
.chart-bars__bar::before, .chart-bars__bar::after {
  display: block;
}
.chart-bars__bar::before {
  content: attr(data-label);
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.075em;
  text-align: center;
  line-height: 1.4;
  position: absolute;
}
.chart-bars__bar::after {
  content: "";
  background: #777;
  position: absolute;
}
.chart-bars .bars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 0;
}
.chart-bars .bars-boy .sum {
  color: #4399FF;
}
.chart-bars .bars-girl .sum {
  color: #3EDDBF;
}
.chart-bars .bar {
  display: block;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}
.chart-bars .bar.call-b {
  background: #4399FF;
}
.chart-bars .bar.chat-b {
  background: #A6CEFF;
}
.chart-bars .bar.call-g {
  background: #3EDDBF;
}
.chart-bars .bar.chat-g {
  background: #ABEDE0;
}
.chart-scales {
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.075em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.chart-scales::before {
  content: "(件)";
  position: absolute;
}
.chart-scales li {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.chart-scales li::after {
  content: "";
  display: block;
  position: absolute;
  background: #777;
}
.chart-scales li:first-child {
  -webkit-box-flex: 0;
      -ms-flex: 0;
          flex: 0;
}
.chart-scales li:first-child::after {
  content: none;
}
.chart-scales li:first-child span {
  left: 0;
}
.chart-labels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: auto;
  width: 64vw;
}
.chart-labels ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.chart-labels li {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.chart-labels li::before {
  display: inline-block;
  content: "";
  width: 1em;
  height: 1em;
  background: #4399FF;
  border-radius: 2px;
  margin-right: 0.5em;
}
.chart-labels__boys li:nth-child(2)::before {
  background: #A6CEFF;
}
.chart-labels__girls li:nth-child(1)::before {
  background: #3EDDBF;
}
.chart-labels__girls li:nth-child(2)::before {
  background: #ABEDE0;
}
.chart-labels span {
  background: #F8F7F2;
  color: #797979;
  padding: 2px 6px 3px;
  margin-left: 0.5em;
  font-size: 11px;
  font-size: 2.9333333333vw;
}
.chart-club__inn {
  background: #F8F7F2;
  border-radius: 4vw;
  padding: 6.4vw;
}

/*------------------------------
    男女それぞれの電話・チャット内容              
------------------------------*/
.voice-overall .chart-labels span {
  background: #fff;
}

@media screen and (max-width: 767px) {
  .chart {
    padding-right: 4vw;
  }
  .chart-bars {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5.3333333333vw 0;
    margin-bottom: 2.6666666667vw;
  }
  .chart-bars::before {
    width: 1px;
    height: calc(100% + 8vw);
    top: -2.6666666667vw;
    left: calc(16vw - 1px);
  }
  .chart-bars::after {
    width: calc(100% - 16vw);
    height: 1px;
    bottom: -5.3333333333vw;
    left: calc(16vw - 1px);
  }
  .chart-bars__bar {
    position: relative;
    padding-left: 16vw;
  }
  .chart-bars__bar::before, .chart-bars__bar::after {
    display: block;
  }
  .chart-bars__bar::before {
    width: 14.6666666667vw;
    font-size: 10px;
    font-size: 2.6666666667vw;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 0;
  }
  .chart-bars__bar::after {
    width: 2.1333333333vw;
    height: 1px;
    left: 16vw;
    top: -2.6666666667vw;
  }
  .chart-bars .bar {
    height: 15px;
  }
  .chart-bars .sum {
    font-size: 11px;
    font-size: 2.9333333333vw;
    margin-left: 0.5em;
    line-height: 1;
  }
  .chart-scales {
    font-size: 10px;
    font-size: 2.6666666667vw;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-left: calc(16vw - 0.25em);
    margin-top: 6.6666666667vw;
  }
  .chart-scales::before {
    left: 5.3333333333vw;
  }
  .chart-scales li::after {
    width: 1px;
    height: 2.1333333333vw;
    right: 1px;
    top: calc(-4vw + 2px);
  }
  .chart-scales li span {
    position: absolute;
    left: calc(100% - 1.5em);
  }
  .chart-scales li:first-child span {
    left: 0;
  }
  .chart-scales li:nth-child(2) span {
    left: calc(100% - 1em);
  }
}
/*   _____   _____ 
    |  __ \ / ____|
    | |__) | |     
    |  ___/| |     
    | |    | |____ 
    |_|     \_____|
*/
@media screen and (min-width: 768px) {
  .chart-wrap {
    position: relative;
    gap: 60px 0;
    margin-bottom: 4.1666666667vw;
  }
  .chart {
    width: 100%;
    height: 480px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .chart-bars {
    height: 100%;
    width: calc(100% - 5.5555555556vw);
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0 2.5vw;
    padding-right: 1.25vw;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .chart-bars__bar::after {
    right: -1.25vw;
  }
  .chart-bars::before {
    width: 1px;
    height: 100%;
    left: 0;
  }
  .chart-bars::after {
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 0;
  }
  .chart-bars__bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
  }
  .chart-bars__bar::before {
    bottom: -4.1666666667vw;
    left: 50%;
    width: 7.6388888889vw;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    font-size: 13px;
  }
  .chart-bars__bar::after {
    width: 1px;
    height: 12px;
    bottom: 0;
    right: -1.25vw;
  }
  .chart-bars .bars {
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .chart-bars .bar {
    width: 2.5vw;
  }
  .chart-bars .sum {
    margin-bottom: 1em;
    text-align: center;
    max-width: 2.5vw;
  }
  .chart-scales {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    width: 4.1666666667vw;
    margin-right: 1.3888888889vw;
    height: calc(100% + 2em);
    text-align: right;
  }
  .chart-scales::before {
    left: -10px;
  }
  .chart-scales li::after {
    width: 12px;
    height: 1px;
    top: 1em;
    right: calc(-2.0833333333vw - 5px);
  }
  .chart-labels {
    width: 25vw;
    position: absolute;
    right: 0;
    top: 6.25vw;
    margin-top: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .chart-labels ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 10px 0;
  }
  .chart-labels li {
    width: 100%;
    font-size: 14px;
  }
  .chart-labels li::before {
    width: 2.0833333333vw;
    height: 2.0833333333vw;
    border-radius: 4px;
  }
  .chart-labels span {
    font-size: 13px;
    padding: 1px 4px;
  }
  .chart-club {
    width: 29.8611111111vw;
    position: absolute;
    top: 6.25vw;
    left: 27.0833333333vw;
  }
  .chart-club__inn {
    width: 100%;
    padding: 2.0833333333vw;
    border-radius: 24px 24px 24px 0;
    position: relative;
  }
  .chart-club__inn::after {
    content: "";
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 36px 24px 0 0;
    border-color: #F8F7F2 transparent transparent transparent;
    position: absolute;
    left: 0;
    bottom: -36px;
  }
  /*------------------------------
      男女それぞれの電話・チャット内容              
  ------------------------------*/
  .voice-overall .chart-bars {
    gap: 0 5vw;
    padding-right: 2.5vw;
  }
  .voice-overall .chart-bars__bar::after {
    right: -2.5vw;
  }
  .voice-overall .chart-bars__bar::before {
    white-space: nowrap;
    font-size: 18px;
  }
  .voice-overall .chart-bars .bar {
    width: 3.4722222222vw;
  }
  .voice-overall .chart-bars .sum {
    max-width: 3.4722222222vw;
  }
  /*------------------------------
      自分のこと              
  ------------------------------*/
  .voice-myself .chart-bars__bar:nth-child(1)::before, .voice-myself .chart-bars__bar:nth-child(4)::before, .voice-myself .chart-bars__bar:nth-child(5)::before, .voice-myself .chart-bars__bar:nth-child(7)::before {
    bottom: calc(-4.1666666667vw - 1em);
  }
  /*------------------------------
      学校のこと              
  ------------------------------*/
  .voice-school .chart-bars {
    gap: 0 3.4722222222vw;
    padding-right: 1.7361111111vw;
  }
  .voice-school .chart-bars__bar::after {
    right: -1.7361111111vw;
  }
  .voice-school .chart-bars__bar:nth-child(4)::before, .voice-school .chart-bars__bar:nth-child(9)::before {
    bottom: calc(-4.1666666667vw - 1em);
  }
  .voice-school .chart-labels {
    width: 12.5vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px 0;
  }
  /*------------------------------
      家庭のこと              
  ------------------------------*/
  .voice-home .chart-bars {
    gap: 0 5.8333333333vw;
    padding-right: 2.9166666667vw;
  }
  .voice-home .chart-bars__bar::after {
    right: -2.9166666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .chart-bars {
    padding-right: 18px;
    gap: 0 36px;
    width: calc(100% - 80px);
  }
  .chart-bars__bar::before {
    width: 90px;
    bottom: -40px;
  }
  .chart-bars__bar::after {
    right: -18px;
  }
  .chart-bars .bar {
    width: 30px;
  }
  .chart-bars .sum {
    max-width: 30px;
  }
  .chart-scales {
    width: 60px;
    margin-right: 20px;
  }
  .chart-scales li::after {
    right: -33px;
  }
  .chart-labels {
    width: 300px;
    top: 90px;
  }
  .chart-labels ul {
    gap: 10px 0;
  }
  .chart-labels li {
    font-size: 14px;
  }
  .chart-labels li::before {
    width: 24px;
    height: 24px;
  }
  .chart-labels span {
    font-size: 13px;
  }
  .chart-club {
    width: 430px;
    top: 30px;
    left: 375px;
  }
  .chart-club__inn {
    padding: 30px;
  }
  /*------------------------------
      男女それぞれの電話・チャット内容              
  ------------------------------*/
  .voice-overall .chart-bars {
    gap: 0 60px;
    padding-right: 30px;
  }
  .voice-overall .chart-bars__bar::after {
    right: -30px;
  }
  .voice-overall .chart-bars__bar::before {
    white-space: nowrap;
    font-size: 18px;
    width: auto;
  }
  .voice-overall .chart-bars .bar {
    width: 45px;
  }
  .voice-overall .chart-bars .sum {
    max-width: 45px;
  }
  /*------------------------------
      自分のこと              
  ------------------------------*/
  .voice-myself .chart-bars__bar:nth-child(1)::before {
    bottom: -40px;
  }
  .voice-myself .chart-bars__bar:nth-child(4)::before, .voice-myself .chart-bars__bar:nth-child(5)::before, .voice-myself .chart-bars__bar:nth-child(7)::before {
    bottom: calc(-40px - 1em);
  }
  /*------------------------------
      学校のこと              
  ------------------------------*/
  .voice-school .chart-bars {
    gap: 0 48px;
    padding-right: 24px;
  }
  .voice-school .chart-bars__bar::after {
    right: -24px;
  }
  .voice-school .chart-bars__bar:nth-child(4)::before, .voice-school .chart-bars__bar:nth-child(9)::before {
    bottom: calc(-40px - 1em);
  }
  .voice-school .chart-labels {
    width: 150px;
    top: 30px;
  }
  /*------------------------------
      家庭のこと              
  ------------------------------*/
  .voice-home .chart-bars {
    gap: 0 80px;
    padding-right: 40px;
  }
  .voice-home .chart-bars__bar::after {
    right: -40px;
  }
}
/*================================================

	voice

=================================================*/
.section.section-voice {
  padding: 16vw 0 12vw;
}

.voice-heading {
  position: relative;
}
.voice-heading::before, .voice-heading::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.voice-heading::before {
  width: 80vw;
  height: 80vw;
  background: #fff;
  border-radius: 40vw;
  top: -16vw;
  z-index: 0;
}
.voice-heading::after {
  width: 16vw;
  height: 21.3333333333vw;
  top: -24vw;
}
.voice-heading__myself::after {
  background: url(../img/voice_img_myself.svg) center center/contain no-repeat;
}
.voice-heading__school::after {
  background: url(../img/voice_img_school.svg) center center/contain no-repeat;
}
.voice-heading__home::after {
  background: url(../img/voice_img_home.svg) center center/contain no-repeat;
}
.voice-heading h2 {
  position: relative;
}

.voice-wrap h3 {
  text-align: center;
  margin-bottom: 1.5em;
  position: relative;
}
.voice-wrap h3::before, .voice-wrap h3::after {
  content: "";
  display: block;
}
.voice-wrap h3::before {
  width: 21.3333333333vw;
  height: 21.3333333333vw;
  background: #F8F7F2;
  border-radius: 16vw;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 0;
}
.voice-wrap h3::after {
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #F8F7F2 transparent transparent transparent;
  border-width: 20px 10px 0px 10px;
  position: absolute;
  left: 58%;
  bottom: -30px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.voice-wrap h3 span {
  position: relative;
}
.voice-wrap .voice-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4vw 0;
  position: relative;
}

.voice-other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8vw 0;
}
.voice-other .voice-wrap h3::before {
  background: #fff;
}
.voice-other .voice-wrap h3::after {
  border-color: #fff transparent transparent transparent;
}

/*   _____   _____ 
    |  __ \ / ____|
    | |__) | |     
    |  ___/| |     
    | |    | |____ 
    |_|     \_____|
*/
@media screen and (min-width: 768px) {
  .section.section-voice {
    padding: 16.6666666667vw 0 6.25vw;
  }
  .section.section-voice .box {
    padding: 0 4.1666666667vw 6.25vw;
  }
  .voice-heading::before {
    width: 66.6666666667vw;
    height: 66.6666666667vw;
    top: -8.3333333333vw;
  }
  .voice-heading::after {
    width: 90px;
    height: 120px;
    top: -12.5vw;
  }
  .voice-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0 4.1666666667vw;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 0 4.1666666667vw;
    margin-top: 8.3333333333vw;
  }
  .voice-wrap h3 {
    width: 12.5vw;
    line-height: 12.5vw;
  }
  .voice-wrap h3::before {
    width: 12.5vw;
    height: 12.5vw;
  }
  .voice-wrap h3::after {
    border-width: 30px 15px 0px 15px;
    bottom: 0.6944444444vw;
    left: 80%;
  }
  .voice-wrap .voice-list {
    width: calc(100% - 16.6666666667vw);
    margin-top: 6.25vw;
    gap: 2.0833333333vw 0;
  }
  .voice-other {
    gap: 30px 0;
    margin: -30px 0 60px;
  }
  .voice-other .voice-wrap {
    margin-top: 0;
  }
  .voice-other .voice-wrap h3 {
    font-size: 18px;
  }
  .voice-other .voice-wrap:nth-child(2) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .voice-other .voice-wrap:nth-child(2) h3::after {
    right: 80%;
    left: auto;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}
@media screen and (min-width: 1440px) {
  .section.voice-overall {
    margin-bottom: 90px;
  }
  .section.section-voice {
    padding: 120px 0;
  }
  .section.section-voice .box {
    padding: 0 60px 90px;
  }
  .voice-heading::before {
    width: 960px;
    height: 960px;
    top: -90px;
  }
  .voice-heading::after {
    top: -140px;
  }
  .voice-wrap {
    gap: 0 60px;
    padding: 0 60px;
    margin-top: 90px;
  }
  .voice-wrap h3 {
    width: 180px;
    line-height: 180px;
  }
  .voice-wrap h3::before {
    width: 180px;
    height: 180px;
  }
  .voice-wrap h3::after {
    bottom: 10px;
    left: 150px;
  }
  .voice-wrap .voice-list {
    width: 720px;
    margin-top: 90px;
    gap: 30px 0;
  }
}
/*================================================

	Common

=================================================*/
body {
  background: #F8F7F2;
}

.body-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  min-height: 100vh;
}

.section {
  padding: 12vw 0;
}
.section .sec-inner {
  padding: 0 4vw;
}

main {
  background: #F8F7F2;
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  font-size: 14px;
  font-size: 3.7333333333vw;
  /*------------------------------
      テキスト                
  ------------------------------*/
  /*------------------------------
      下層ページKV                
  ------------------------------*/
  /*------------------------------
      下層ページ背景                
  ------------------------------*/
}
main h1, main h2, main h3, main h4 {
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.075em;
  line-height: 1.5;
}
main h1 {
  font-size: 30px;
  font-size: 8vw;
}
main h2 {
  font-size: 24px;
  font-size: 6.4vw;
  margin-bottom: 8vw;
  text-align: center;
}
main h3 {
  font-size: 18px;
  font-size: 4.8vw;
  margin-bottom: 1em;
}
main h4 {
  font-size: 16px;
  font-size: 4.2666666667vw;
  margin-bottom: 0.5em;
}
main p {
  font-size: 14px;
  font-size: 3.7333333333vw;
  line-height: 2;
}
main br.pc {
  display: none;
}
main a {
  color: #4399FF;
  text-decoration: underline;
}
main .text-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1em 0;
}
main .text-center {
  text-align: center;
}
main .note {
  font-size: 12px;
  font-size: 3.2vw;
  color: #797979;
  line-height: 1.3;
}
main .keyVisual {
  background-image: url(../img/heading_bg.png);
  background-position: center center;
  background-size: auto 100%;
  background-repeat: no-repeat;
  border-radius: 10.6666666667vw;
}
main .keyVisual-inner {
  padding: 16vw 4vw;
  position: relative;
}
main .keyVisual-inner::before {
  content: "";
  width: 76vw;
  height: 35.2vw;
  position: absolute;
  top: 41.3333333333vw;
  left: 8vw;
}
main .keyVisual-inner h1 {
  text-align: center;
}
main .keyVisual-inner p {
  padding-top: 53.3333333333vw;
}
main .keyVisual-inner.keyVisual-support::before {
  background: url(../img/support_kv.svg) center center/contain no-repeat;
}
main .keyVisual-inner.keyVisual-call::before {
  background: url(../img/call_kv.svg) center center/contain no-repeat;
}
main .keyVisual-inner.keyVisual-about::before {
  background: url(../img/about_kv.svg) center center/contain no-repeat;
}
main .keyVisual-inner.keyVisual-voice::before {
  background: url(../img/voice_kv.svg) center center/contain no-repeat;
}
main .bg-img {
  position: relative;
}
main .bg-img::before, main .bg-img::after {
  content: "";
  display: block;
  width: 80vw;
  height: 80vw;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  z-index: -1;
}
main .bg-img::before {
  background-image: url(../img/bg_grad03.png);
  background-image: -webkit-image-set(url(../img/bg_grad03.png) 1x, url(../img/bg_grad03.webp) 2x);
  background-image: image-set(url(../img/bg_grad03.png) 1x, url(../img/bg_grad03.webp) 2x);
  top: -32vw;
  right: -8vw;
}
main .bg-img::after {
  background-image: url(../img/bg_grad04.png);
  background-image: -webkit-image-set(url(../img/bg_grad04.png) 1x, url(../img/bg_grad04.webp) 2x);
  background-image: image-set(url(../img/bg_grad04.png) 1x, url(../img/bg_grad04.webp) 2x);
  bottom: -32vw;
  left: -8vw;
}
main .box {
  background: #fff;
  border-radius: 4vw;
  padding: 8vw 4vw;
}
main .box.box-t {
  background: rgba(255, 255, 255, 0.6);
  padding: 8vw;
}

#main {
  padding: 0 4vw;
}

.body-wrap {
  /*------------------------------
      ボタン                
  ------------------------------*/
}
.body-wrap a {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.body-wrap .btn a {
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.075em;
  font-size: 13px;
  font-size: 3.4666666667vw;
  display: block;
  background: #4399FF;
  border: 1px solid #4399FF;
  text-align: center;
  color: #fff;
  border-radius: 100px;
  padding: 10px 0;
  text-decoration: none;
}
.body-wrap .btn-w a {
  color: #4399FF;
  background: #fff;
  border: 1px solid #4399FF;
}
.body-wrap .btn-mail a::after {
  content: "";
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  background: url(../img/icon_mail.svg) center center/contain no-repeat;
  vertical-align: middle;
  margin-left: 0.25em;
  margin-bottom: 3px;
}
.body-wrap .btn-pdf {
  position: relative;
}
.body-wrap .btn-pdf a::after {
  content: "";
  display: block;
  width: 8vw;
  height: 10.6666666667vw;
  background: url(../img/icon_pdf.svg) center center/contain no-repeat;
  position: absolute;
  bottom: 4vw;
  right: 8vw;
}
.body-wrap .support-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4vw 0;
}
.body-wrap .support-links a {
  display: block;
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.075em;
  color: #000;
  text-decoration: none;
  text-align: center;
  padding: 8vw 4vw 8vw 21.3333333333vw;
  background: #fff;
  border-radius: 4vw;
  position: relative;
}
.body-wrap .support-links a::before {
  content: "";
  width: 13.3333333333vw;
  height: 13.3333333333vw;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 4vw;
}
.body-wrap .support-links__call a::before {
  background-image: url(../img/support_img_call.svg);
}
.body-wrap .support-links__support a::before {
  background-image: url(../img/support_img_support.svg);
}

/*   _____   _____ 
    |  __ \ / ____|
    | |__) | |     
    |  ___/| |     
    | |    | |____ 
    |_|     \_____|
*/
@media screen and (min-width: 768px) {
  main {
    font-size: 16px;
    /*------------------------------
        テキスト                
    ------------------------------*/
    /*------------------------------
        下層ページKV                
    ------------------------------*/
    /*------------------------------
        下層ページ背景                
    ------------------------------*/
  }
  main h1 {
    font-size: 48px;
  }
  main h2 {
    font-size: 36px;
    margin-bottom: 60px;
  }
  main h3 {
    font-size: 24px;
  }
  main h4 {
    font-size: 18px;
    margin-bottom: 1.5em;
  }
  main p {
    font-size: 16px;
  }
  main .note {
    font-size: 12px;
  }
  main br.sp {
    display: none;
  }
  main br.pc {
    display: block;
  }
  main .keyVisual {
    border-radius: 80px;
    background-position: center -16.7361111111vw;
    background-size: 100% auto;
    margin-bottom: 8.3333333333vw;
  }
  main .keyVisual-inner {
    padding: 11.8055555556vw 4.1666666667vw;
  }
  main .keyVisual-inner h1 {
    text-align: left;
  }
  main .keyVisual-inner p {
    padding-top: 1.25vw;
    width: 45.8333333333vw;
  }
  main .keyVisual-inner::before {
    width: 33.3333333333vw;
    height: 13.8888888889vw;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 4.1666666667vw;
    left: auto;
  }
  main .bg-img::before, main .bg-img::after {
    width: 50vw;
    height: 50vw;
  }
  main .bg-img::before {
    top: -16.6666666667vw;
  }
  main .bg-img::after {
    bottom: -16.6666666667vw;
  }
  main .box {
    border-radius: 40px;
    padding: 4.1666666667vw;
  }
  main .box.box-t {
    padding: 4.1666666667vw;
  }
  #main {
    padding: 2.0833333333vw 4.1666666667vw 0;
  }
  .section {
    padding: 6.25vw 0;
  }
  .section .sec-inner {
    padding: 0 4.1666666667vw;
  }
  .body-wrap {
    /*------------------------------
        ボタン                
    ------------------------------*/
  }
  .body-wrap .btn a {
    font-size: 18px;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  .body-wrap .btn a:hover {
    -webkit-box-shadow: 0 0 15px rgba(121, 121, 121, 0.45);
            box-shadow: 0 0 15px rgba(121, 121, 121, 0.45);
  }
  .body-wrap .btn-mail a, .body-wrap .btn-pdf a {
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  .body-wrap .btn-mail a:hover, .body-wrap .btn-pdf a:hover {
    -webkit-box-shadow: 0 0 15px rgba(67, 153, 255, 0.45);
            box-shadow: 0 0 15px rgba(67, 153, 255, 0.45);
  }
  .body-wrap .btn-pdf a::after {
    width: 45px;
    height: 60px;
    bottom: 15px;
    right: 60px;
  }
  .body-wrap .support-links {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0 30px;
  }
  .body-wrap .support-links li {
    width: calc(50% - 15px);
  }
  .body-wrap .support-links a {
    padding: 5.2083333333vw 2.7777777778vw 5.2083333333vw 13.8888888889vw;
    font-size: 18px;
    border-radius: 40px;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  .body-wrap .support-links a::before {
    width: 90px;
    height: 90px;
    left: 3.125vw;
  }
  .body-wrap .support-links a:hover {
    -webkit-box-shadow: 0 0 15px rgba(121, 121, 121, 0.25);
            box-shadow: 0 0 15px rgba(121, 121, 121, 0.25);
  }
}
@media screen and (min-width: 1440px) {
  .section {
    padding: 90px 0;
  }
  .section .sec-inner {
    padding: 0 120px;
    max-width: 1440px;
    margin: 0 auto;
  }
  main {
    /*------------------------------
        下層ページ背景                
    ------------------------------*/
  }
  main .keyVisual {
    margin-bottom: 120px;
  }
  main .bg-img::before {
    right: calc(-50vw + 600px);
  }
  main .bg-img::after {
    left: calc(-50vw + 600px);
  }
  main .box {
    padding: 60px;
  }
  main .box.box-t {
    padding: 60px;
  }
  .body-wrap .support-links a {
    font-size: 24px;
    padding: 75px 40px 75px 160px;
  }
  .body-wrap .support-links a::before {
    left: 45px;
  }
}