@charset "UTF-8";
/* CSS Document */

/* 20241009 1000girls-fy25 */
/* ヒーローイメージ */
.thousand-girls-fy25__xmas-logo--container {
  position: absolute;
  top: 0;
  right: -10%;
  transform: translateX(-50%);
  width: 25%;
}
.thousand-girls-fy25__xmas-logo--img {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .thousand-girls-fy25__xmas-logo--container {
    position: absolute;
    top: 0;
    right: 10%;
    transform: translateX(0);
    width: 10%;
  }
  .thousand-girls-fy25__xmas-logo--img {
    width: 100%;
  }
}

/* 20240723 Chosen-FY24_BGD */
/* Button Design */
.chosen-fy24__btn,
a.chosen-fy24__btn,
button.chosen-fy24__btn {
  /*font-size: 1.6rem;*/
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

.chosen-fy24__btn-wrap {
  margin: 10px 0 20px;
}

a.chosen-fy24__btn--green {
  /*font-size: 2.2rem;*/

  position: relative;

  padding: 0.25rem 1.5rem 1.5rem 1.5rem;

  color: #fff;
  background: #32b16c;
  -webkit-box-shadow: 0 5px 0 #2c9d60;
  box-shadow: 0 5px 0 #2c9d60;
  width: 100%;
}

a.chosen-fy24__btn--green span {
  /*font-size: 1.5rem;*/

  position: absolute;
  bottom: -10px;
  left: calc(50% - 187px);

  display: block;

  width: 373px;
  padding: 0.2rem 0;

  color: #32b16c;
  border: 2px solid #32b16c;
  border-radius: 0.5rem;
  background: #fff;
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
}

a.chosen-fy24__btn--green:hover {
  -webkit-transform: translate(0, 3px);
  transform: translate(0, 3px);

  color: #fff;
  background: #30a967;
  -webkit-box-shadow: 0 2px 0 #2c9d60;
  box-shadow: 0 2px 0 #2c9d60;
}

a.chosen-fy24__btn--green:hover:before {
  left: 2rem;
}
@media screen and (min-width: 768px) {
  a.chosen-fy24__btn--green {
    padding: 0.25rem 4rem 1.5rem 5.5rem;
    width: auto;
  }
  a.chosen-fy24__btn--green span {
    left: calc(50% - 200px);
    width: 400px;
  }
}

/* 20240314 Chosen-FY24 */
/* 漫画 */
.chosen-fy24__comic--number {
  background-color: rgba(0, 0, 0, 0.562);
  border-radius: 9999px;
  padding: 0.2rem 0.5rem;
}
/* カウンター棒グラフ */

/*------------------------------------
  bar graph
------------------------------------*/
.chosen-fy24__bar-graph-wrap {
  position: relative;
  height: 50px;
  -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  background-color: #e6edf3;
  border-radius: 4px;
}
.chosen-fy24__bar-graph-wrap .graph {
  height: 50px;
  position: absolute;
  left: 0;
  border-radius: 0 4px 4px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 10px; /*
	-webkit-animation: graphAnim 2.5s forwards;
			animation: graphAnim 2.5s forwards;*/
}
.active {
  -webkit-animation: graphAnim 2.5s forwards;
  animation: graphAnim 2.5s forwards;
}

.chosen-fy24__bar-graph-wrap .graph span {
  font-size: 14px;
  color: #ffffff;
}
@media screen and (max-width: 750px) {
  .chosen-fy24__bar-graph-wrap .graph span {
    font-size: 12px;
  }
}
.chosen-fy24__bar-graph-wrap .graph.bar-orange {
  /*background: #ff6b00;*/
  background: rgb(255, 107, 0);
  background: linear-gradient(180deg, rgba(255, 107, 0, 1) 0%, rgba(255, 84, 0, 1) 100%);
  width: 82%; /* 数字修正箇所 */
}

@-webkit-keyframes graphAnim {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes graphAnim {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
#fixmenu {
  opacity: 0;
  transform: translateY(100px);
}

/*　上に上がる動き　*/
#fixmenu.UpMove {
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*　下に下がる動き　*/
#fixmenu.DownMove {
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
/* 交流 */
.chosen-fy24__exchange--container::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 930px;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .chosen-fy24__exchange--container::before {
    height: 450px;
  }
}
/* コンセプト */
.chosen-fy24__concept {
  position: relative;
  background: #fff0e5;
}
.chosen-fy24__concept::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 20%;
  height: 100%;
  background-color: #fff;
}
/* 概要 */
.chosen-fy24__summary {
  background: url(/childsponsor/item_img/chosen-fy24_summary_bg_sp.jpg) no-repeat center/cover;
  padding-top: 33rem;
  padding-bottom: 33rem;
}
/* カウンターなし */
/*
.chosen-fy24__summary--img-01 {
  position: absolute;
  right: 0;
  top: -67%;
  width: 48%;
}
.chosen-fy24__summary--img-02 {
  position: absolute;
  left: 0;
  top: -63%;
  width: 32%;
}
.chosen-fy24__summary--img-03 {
  position: absolute;
  right: 0;
  top: -41%;
  width: 36%;
}
.chosen-fy24__summary--img-04 {
  position: absolute;
  left: 0;
  top: -39%;
  width: 37%;
}
.chosen-fy24__summary--img-05 {
  position: absolute;
  left: 29%;
  top: -19%;
  width: 22%;
}
.chosen-fy24__summary--img-06 {
  position: absolute;
  left: 0;
  top: 111%;
  width: 34%;
}
.chosen-fy24__summary--img-07 {
  position: absolute;
  right: 0;
  top: 106%;
  width: 39%;
}
.chosen-fy24__summary--img-08 {
  position: absolute;
  left: 18%;
  top: 124%;
  width: 37%;
}
.chosen-fy24__summary--img-09 {
  position: absolute;
  right: 0;
  top: 139%;
  width: 41%;
}
.chosen-fy24__summary--img-10 {
  position: absolute;
  left: 10%;
  top: 155%;
  width: 21%;
}
*/
/* カウンターあり */

.chosen-fy24__summary--img-01 {
  position: absolute;
  right: 0;
  top: -53%;
  width: 48%;
}
.chosen-fy24__summary--img-02 {
  position: absolute;
  left: 0;
  top: -55%;
  width: 32%;
}
.chosen-fy24__summary--img-03 {
  position: absolute;
  right: 0;
  top: -33%;
  width: 36%;
}
.chosen-fy24__summary--img-04 {
  position: absolute;
  left: 0;
  top: -35%;
  width: 37%;
}
.chosen-fy24__summary--img-05 {
  position: absolute;
  left: 29%;
  top: -16%;
  width: 22%;
}
.chosen-fy24__summary--img-06 {
  position: absolute;
  left: 0;
  top: 106%;
  width: 34%;
}
.chosen-fy24__summary--img-07 {
  position: absolute;
  right: 0;
  top: 106%;
  width: 39%;
}
.chosen-fy24__summary--img-08 {
  position: absolute;
  left: 18%;
  top: 120%;
  width: 37%;
}
.chosen-fy24__summary--img-09 {
  position: absolute;
  right: 0;
  top: 134%;
  width: 41%;
}
.chosen-fy24__summary--img-10 {
  position: absolute;
  left: 10%;
  top: 147%;
  width: 21%;
}

/*
.chosen-fy24__summary--img-01 {
  position: absolute;
  right: 0;
  top: -90%;
  width: 48%;
}
.chosen-fy24__summary--img-02 {
  position: absolute;
  left: 0;
  top: -100%;
  width: 32%;
}
.chosen-fy24__summary--img-03 {
  position: absolute;
  right: 0;
  top: -45%;
  width: 36%;
}
.chosen-fy24__summary--img-04 {
  position: absolute;
  left: 0;
  top: -60%;
  width: 37%;
}
.chosen-fy24__summary--img-05 {
  position: absolute;
  left: 29%;
  top: -27%;
  width: 22%;
}
.chosen-fy24__summary--img-06 {
  position: absolute;
  left: 0;
  top: 112%;
  width: 34%;
}
.chosen-fy24__summary--img-07 {
  position: absolute;
  right: 0;
  top: 102%;
  width: 39%;
}
.chosen-fy24__summary--img-08 {
  position: absolute;
  left: 18%;
  top: 133%;
  width: 37%;
}
.chosen-fy24__summary--img-09 {
  position: absolute;
  right: 0;
  top: 158%;
  width: 41%;
}
.chosen-fy24__summary--img-10 {
  position: absolute;
  left: 10%;
  top: 172%;
  width: 21%;
}
*/
@media screen and (min-width: 768px) {
  .chosen-fy24__summary {
    background: url(/childsponsor/item_img/chosen-fy24_summary_bg_pc.jpg) no-repeat center/cover;
    padding-top: 12rem;
    padding-bottom: 12rem;
  }
  .chosen-fy24__summary--img-01 {
    position: absolute;
    left: 15%;
    top: -7%;
    width: 14%;
  }
  .chosen-fy24__summary--img-02 {
    position: absolute;
    left: 2%;
    top: 10%;
    width: 10%;
  }
  .chosen-fy24__summary--img-03 {
    position: absolute;
    left: 10%;
    top: 26%;
    width: 13%;
  }
  .chosen-fy24__summary--img-04 {
    position: absolute;
    left: 5%;
    top: 72%;
    width: 11%;
  }
  .chosen-fy24__summary--img-05 {
    position: absolute;
    left: 19%;
    top: 79%;
    width: 7%;
  }
  .chosen-fy24__summary--img-06 {
    position: absolute;
    right: 19%;
    top: -10%;
    width: 10%;
    left: auto;
  }
  .chosen-fy24__summary--img-07 {
    position: absolute;
    right: 2%;
    top: 6%;
    width: 11%;
    left: auto;
  }
  .chosen-fy24__summary--img-08 {
    position: absolute;
    right: 14%;
    top: 36%;
    width: 12%;
    left: auto;
  }
  .chosen-fy24__summary--img-09 {
    position: absolute;
    right: 2%;
    top: 61%;
    width: 13%;
    left: auto;
  }
  .chosen-fy24__summary--img-10 {
    position: absolute;
    right: 20%;
    top: 89%;
    width: 7%;
    left: auto;
  }
}
/* ヒーローイメージ */
.chosen-fy24__hero-image--container {
  position: relative;
  background-color: #ff6b00;
  z-index: 0;
  height: 550px;
}
.chosen-fy24__hero-image--container::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background-color: #fff;
  z-index: -1;
}
.chosen-fy24__header-movie {
  width: 92%;
  height: 550px;
  background: url(/childsponsor/item_img/chosen-fy24_header-movie_bg_sp_01.jpg) no-repeat center/cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  overflow: hidden;
  z-index: -1;
}
.chosen-fy24__header-movie::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 550px;
  background-color: rgba(0, 0, 0, 0.2);
  background-image: radial-gradient(#111 30%, transparent 31%), radial-gradient(#111 30%, transparent 31%);
  background-size: 4px 4px;
  background-position: 0 0, 2px 2px;
  /*border-radius: 0.75rem;*/
}
.chosen-fy24__header-movie video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%) scale(3.15);
  /*border-radius: 0.75rem;*/
}
.chosen-fy24__mv {
  position: relative;
  height: 550px;
}
.chosen-fy24__logo--container img {
  position: absolute;
  top: 3%;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.chosen-fy24__heading--container img {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 3%;
}
.chosen-fy24__play-bottom--container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .chosen-fy24__hero-image--container {
    height: 76vh;
  }
  .chosen-fy24__hero-image--container::before {
    width: 100%;
  }
  .chosen-fy24__header-movie {
    min-width: 960px;
    width: 95%;
    height: 76vh;
    background: url(/childsponsor/item_img/chosen-fy24_header-movie_bg_pc_01.jpg) no-repeat center/cover;
  }
  .chosen-fy24__header-movie::after {
    height: 76vh;
  }
  .chosen-fy24__mv {
    min-width: 960px;
    height: 76vh;
  }
  .chosen-fy24__logo--container img {
    position: absolute;
    top: 4%;
    left: 6%;
    margin: 0;
  }
  .chosen-fy24__heading--container img {
    position: absolute;
    left: 4%;
    bottom: 4%;
    margin: 0;
  }
  .chosen-fy24__play-bottom--container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .chosen-fy24__header-movie video {
    transform: translateX(-50%) translateY(-50%) scale(1);
    /*border-radius: 0.75rem;*/
  }
}
.pulse {
  animation: pulse 3s infinite;
  -webkit-animation: pulse 3s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.9) translate(9px, 7px);
  }
  50% {
    transform: scale(1) translate(0px, 0px);
  }
  100% {
    transform: scale(0.9) translate(9px, 7px);
  }
}

/* 20240115 ヒーローイメージ変更 */
.main-visual--childsponsor-20240115 {
  background-image: url(/childsponsor/item_img/index_mv_sp_20240115.jpg);
}
.main-visual__wrapper--childsponsor-20240115 {
  width: 100%;
  height: 425px;
}
@media screen and (min-width: 768px) {
  .main-visual--childsponsor-20240115 {
    background-image: url(/childsponsor/item_img/index_mv_20240115.jpg);
  }
  .main-visual__wrapper--childsponsor-20240115 {
    width: 980px;
    height: 40vw;
    max-height: 600px;
  }
}

/* 20231221 ベトナムイベントLP */
/* ヒーローイメージ */
.vietnam-fy24__hero-image--img {
}
.vietnam-fy24__heading--container {
  position: absolute;
  top: 63%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
}
.vietnam-fy24__heading-2--img {
  width: 100%;
  margin-bottom: 8%;
}

@media screen and (min-width: 768px) {
  .vietnam-fy24__hero-image--img {
    margin-left: 25%;
  }
  .vietnam-fy24__hero-image--container {
    background-color: #ff6b00;
  }
  .vietnam-fy24__hero-image--container::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 36%;
    background-color: #fff;
  }
  .vietnam-fy24__heading--container {
    position: absolute;
    top: 23%;
    left: 10%;
    transform: translateX(0);
    width: 90%;
  }
  .vietnam-fy24__heading-2--img {
    width: 34%;
    margin-bottom: 2%;
  }
  .vietnam-fy24__hero-image-cta--container::before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    width: 15%;
    height: 100%;
    background-color: #fff;
  }
}

/* 20231117 テレビ番組をご覧になった皆さまへ(1000GIRLSTVCM用) */
.main-visual--tv-20231114 {
  background-image: url(/childsponsor/item_img/sp-tvi_mv_sp_20231114.jpg);
  height: 280px;
}
@media screen and (min-width: 768px) {
  .main-visual--tv-20231114 {
    background-image: url(/childsponsor/item_img/sp-tv_mv_pc_20231114.jpg);
    height: 40vw;
    border-bottom-left-radius: 3.5rem;
  }
}

/* 20231117 1000GIRLS */

/* カウンター棒グラフ */

/*------------------------------------
  bar graph
------------------------------------*/
.bar-graph-wrap {
  position: relative;
  height: 50px;
  -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  background-color: #e6edf3;
  border-radius: 4px;
}
.bar-graph-wrap .graph {
  height: 50px;
  position: absolute;
  left: 0;
  border-radius: 0 4px 4px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 10px; /*
	-webkit-animation: graphAnim 2.5s forwards;
			animation: graphAnim 2.5s forwards;*/
}
.active {
  -webkit-animation: graphAnim 2.5s forwards;
  animation: graphAnim 2.5s forwards;
}

.bar-graph-wrap .graph span {
  font-size: 14px;
  color: #ffffff;
}
@media screen and (max-width: 750px) {
  .bar-graph-wrap .graph span {
    font-size: 12px;
  }
}
.bar-graph-wrap .graph.bar-orange {
  /*background: #ff6b00;*/
  background: rgb(255, 107, 0);
  background: linear-gradient(180deg, rgba(255, 107, 0, 1) 0%, rgba(255, 84, 0, 1) 100%);
  width: 90%; /* 数字修正箇所 */
}

@-webkit-keyframes graphAnim {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes graphAnim {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

/* ワールドビジョンとは */
.thousand-girls-fy24__worldvision--container {
  background-color: #ff6b00;
}
.thousand-girls-fy24__worldvision--container::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 500px;
  background-color: #f3f4f6;
}
@media screen and (min-width: 768px) {
  .thousand-girls-fy24__worldvision--container::before {
    height: 450px;
  }
}

/* スタッフメッセージ */
.thousand-girls-fy24__staff-message--container {
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .thousand-girls-fy24__staff-message--container {
    background-color: #ffebdc;
  }
  .thousand-girls-fy24__staff-message--container::before {
    position: absolute;
    content: "";
    bottom: 0;
    right: 0;
    width: 38%;
    height: 100%;
    background-color: #fff;
  }
}

/* ストーリー */
.thousand-girls-fy24__story--container {
  background-color: #ffebdc;
}
@media screen and (min-width: 768px) {
  .thousand-girls-fy24__story--container::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 38%;
    height: 100%;
    background-color: #fff;
  }
}

/* チャイルド・スポンサーシップ */
.thousand-girls-fy24__childsponsor--container::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1170px;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .thousand-girls-fy24__childsponsor--container::before {
    height: 450px;
  }
}

/* 動画 */
.thousand-girls-fy24__movie--container {
  background-color: #03accb;
}

/* 概要 */
.thousand-girls-fy24__summary--container {
  background-image: url(/childsponsor/item_img/1000girls-fy24_summary_bg_sp.jpg);
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .thousand-girls-fy24__summary--container {
    background-image: url(/childsponsor/item_img/1000girls-fy24_summary_bg_pc.jpg);
    background-position: center;
  }
}

/* ヒーローイメージ */
.thousand-girls-fy24__hero-image--img {
}
.thousand-girls-fy24__logo--container {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translateX(-50%);
  width: 46%;
}
.thousand-girls-fy24__logo--img {
  width: 100%;
}
.thousand-girls-fy24__heading--container {
  position: absolute;
  top: 66%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
}
.thousand-girls-fy24__heading-2--img {
  width: 100%;
  margin-bottom: 8%;
}
.thousand-girls-fy24__heading-3--img {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .thousand-girls-fy24__hero-image--img {
    margin-left: 25%;
  }
  .thousand-girls-fy24__hero-image--container {
    background-color: #ff6b00;
  }
  .thousand-girls-fy24__hero-image--container::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 36%;
    background-color: #fff;
  }
  .thousand-girls-fy24__logo--container {
    position: absolute;
    top: 5%;
    left: 10%;
    transform: translateX(0);
    width: 90%;
  }
  .thousand-girls-fy24__logo--img {
    width: 18%;
  }
  .thousand-girls-fy24__heading--container {
    position: absolute;
    top: 44%;
    left: 10%;
    transform: translateX(0);
    width: 90%;
  }
  .thousand-girls-fy24__heading-2--img {
    width: 30%;
    margin-bottom: 2%;
  }
  .thousand-girls-fy24__heading-3--img {
    width: 28%;
  }
  .thousand-girls-fy24__hero-image-cta--container::before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    width: 15%;
    height: 100%;
    background-color: #fff;
  }
}

/* 20230415 Chosen FY23 4月 */
.chosen__mv--fy23-april {
  width: 100%;
  height: 400px;
  display: block;
  right: 0;
  top: 0;
  z-index: 10;
  background-image: url(/childsponsor/item_img/chosen_mv_fy23-04_sp.jpg);
}
.chosen__heading-group--fy23-april {
  display: block;
  left: 0;
  top: 24px;
  z-index: 20;
}
.chosen__hero--fy23-april {
  z-index: 1;
  position: relative;
  padding-top: 0;
}
.chosen__hero--fy23-april::before {
  content: "";
  right: 0;
  top: 0;
  width: 100vw;
  display: block;
  position: absolute;
  z-index: -1;
  height: 665px;
  background: #fff5ec;
}
.chosen__hero-container--fy23-april {
  display: block;
  height: 660px;
}
@media screen and (min-width: 768px) {
  .chosen__mv--fy23-april {
    width: 60%;
    height: 40vw;
    display: block;
    right: 0;
    top: 0;
    z-index: 10;
    background-image: url(/childsponsor/item_img/chosen_mv_fy23-04_pc.jpg);
  }
  .chosen__heading-group--fy23-april {
    display: block;
    left: 50px;
    top: 0px;
    z-index: 20;
  }
  .chosen__hero-container--fy23-april {
    display: block;
    height: 40vw;
  }
  .chosen__hero--fy23-april {
    z-index: 1;
    position: relative;
    padding-top: 40px;
  }
  .chosen__hero--fy23-april::before {
    content: "";
    right: 40%;
    top: 0px;
    width: 100vw;
    display: block;
    position: absolute;
    z-index: -1;
    height: 40vw;
    background: #fff5ec;
  }
}
@media screen and (min-width: 1536px) {
  .chosen__hero--fy23-april::before {
    height: 38vw;
  }
}
.chosen__heading2-container--fy23-april {
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 11%, rgba(255, 245, 236, 1) 11%, rgba(255, 245, 236, 1) 100%);
}
.chosen__ico--feature {
  width: 14%;
}
@media screen and (min-width: 768px) {
  .chosen__ico--feature {
    width: 10%;
  }
}
.chosen__story-container--after {
  background: rgb(243, 244, 246);
  background: linear-gradient(180deg, rgba(243, 244, 246, 1) 0%, rgba(243, 244, 246, 1) 30%, rgba(255, 245, 236, 1) 30%, rgba(255, 245, 236, 1) 100%);
}
.chosen__story-container--before {
  background: rgb(243, 244, 246);
  background: linear-gradient(180deg, rgba(243, 244, 246, 1) 0%, rgba(243, 244, 246, 1) 30%, rgba(235, 235, 235, 1) 30%, rgba(235, 235, 235, 1) 100%);
}
@media screen and (min-width: 768px) {
  .chosen__story-container--after {
    background: rgb(243, 244, 246);
    background: linear-gradient(180deg, rgba(243, 244, 246, 1) 0%, rgba(243, 244, 246, 1) 50%, rgba(255, 245, 236, 1) 50%, rgba(255, 245, 236, 1) 100%);
  }
  .chosen__story-container--before {
    background: rgb(243, 244, 246);
    background: linear-gradient(180deg, rgba(243, 244, 246, 1) 0%, rgba(243, 244, 246, 1) 50%, rgba(235, 235, 235, 1) 50%, rgba(235, 235, 235, 1) 100%);
  }
}
.chosen__voice-container--fy23-april {
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 20%, rgba(249, 250, 251, 1) 20%, rgba(249, 250, 251, 1) 100%);
}
@media screen and (min-width: 768px) {
  .chosen__voice-container--fy23-april {
    background: rgb(255, 255, 255);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(249, 250, 251, 1) 50%, rgba(249, 250, 251, 1) 100%);
  }
}
.chosen__step-container--fy23-april {
  background: rgb(250, 107, 0);
}
.chosen__step-article-container--fy23-april {
  width: 100%;
  margin-right: 0;
}
.chosen__step-article-container--fy23-april:nth-of-type(4) {
  margin-right: 0;
}
.chosen__step-article-container--fy23-april h3 {
  color: #fff;
}
.chosen__step-article-container--fy23-april p {
  color: #fff;
}
@media screen and (min-width: 768px) {
  .chosen__step-article-container--fy23-april {
    width: 23%;
    margin-right: 2%;
  }
  .chosen__step-article-container--fy23-april:nth-of-type(4) {
    margin-right: 0;
  }
  .chosen__step-container--fy23-april {
    background: rgb(250, 107, 0);
    background: linear-gradient(180deg, rgba(250, 107, 0, 1) 0%, rgba(250, 107, 0, 1) 45%, rgba(249, 250, 251, 1) 45%, rgba(249, 250, 251, 1) 100%);
  }
  .chosen__step-article-container--fy23-april h3 {
    color: #ff6b00;
  }
  .chosen__step-article-container--fy23-april p {
    color: #000;
  }
}

/* 20230125 スポとはCMS化 */
.main-visual--childsponsor-20230125 {
  background-image: url(/childsponsor/item_img/index_mv_sp_20221122.jpg);
}
.main-visual__wrapper--childsponsor-20230125 {
  width: 100%;
  height: 425px;
}
@media screen and (min-width: 768px) {
  .main-visual--childsponsor-20230125 {
    background-image: url(/childsponsor/item_img/index_mv_20221122.jpg);
  }
  .main-visual__wrapper--childsponsor-20230125 {
    width: 980px;
    height: 40vw;
    max-height: 600px;
  }
}
/* childsponsor Future */
.childsponsor__wrapper--future {
  background-color: #ff6b00;
}
.childsponsor__heading--future::before {
  content: "";
  display: block;
  width: 214px;
  height: 99px;
  background-image: url(/childsponsor/item_img/index_heading_future.png);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: -75px;
  left: -20px;
  z-index: -1;
  transform: scale(0.8);
}
@media screen and (min-width: 768px) {
  .childsponsor__wrapper--future::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: -moz-linear-gradient(0deg, #fff 0%, #fff 5%, #ff6600 5%, #ff6600 100%);
    background: -webkit-linear-gradient(0deg, #fff 0%, #fff 5%, #ff6600 5%, #ff6600 100%);
    background: linear-gradient(0deg, #fff 0%, #fff 5%, #ff6600 5%, #ff6600 100%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -10;
  }
  .childsponsor__img--future {
    width: 50%;
    height: 100%;
    position: absolute;
    top: 70px;
    left: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 0 10px 10px 0;
  }
  .childsponsor__heading--future::before {
    content: "";
    display: block;
    width: 214px;
    height: 99px;
    background-image: url(/childsponsor/item_img/index_heading_future.png);
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: -85px;
    left: -20px;
    z-index: -1;
    transform: scale(1);
  }
}
/* childsponsor story */
.childsponsor__heading--story::before {
  content: "";
  display: block;
  width: 222px;
  height: 112px;
  background-image: url(/childsponsor/item_img/index_heading_story.png);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: -80px;
  left: calc(50% - 222px);
  z-index: -1;
  transform: scale(0.8);
}
.childsponsor-list__container {
  -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s ease 0s;
}
@media screen and (min-width: 768px) {
  .childsponsor-list__container {
    -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.15);
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s ease 0s;
  }
  .childsponsor__heading--story::before {
    content: "";
    display: block;
    width: 222px;
    height: 112px;
    background-image: url(/childsponsor/item_img/index_heading_story.png);
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: -80px;
    left: calc(50% - 300px);
    z-index: -1;
    transform: scale(1);
  }
}

/* childsponsor issues */
.childsponsor__heading--issues::before {
  content: "";
  display: block;
  width: 222px;
  height: 112px;
  background-image: url(/childsponsor/item_img/index_heading_problem.png);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: -80px;
  left: calc(50% - 220px);
  z-index: -1;
  transform: scale(0.8);
}
@media screen and (min-width: 768px) {
  .childsponsor__heading--issues::before {
    content: "";
    display: block;
    width: 222px;
    height: 112px;
    background-image: url(/childsponsor/item_img/index_heading_problem.png);
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: -80px;
    left: calc(50% - 475px);
    z-index: -1;
    transform: scale(1);
  }
}

/* childsponsor solution */
.childsponsor__heading--solution::before {
  content: "";
  display: block;
  width: 433px;
  height: 119px;
  background-image: url(/childsponsor/item_img/index_heading_solution.png);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: -96px;
  left: calc(50% - 235px);
  z-index: -1;
  transform: scale(0.8);
}
@media screen and (min-width: 768px) {
  .childsponsor__heading--solution::before {
    content: "";
    display: block;
    width: 433px;
    height: 119px;
    background-image: url(/childsponsor/item_img/index_heading_solution.png);
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: -96px;
    left: calc(50% - 423px);
    z-index: -1;
    transform: scale(1);
  }
}

/* childsponsor childsponsor */
.childsponsor__heading--childsponsor::before {
  content: "";
  display: block;
  width: 409px;
  height: 105px;
  background-image: url(/childsponsor/item_img/index_heading_chidlsponsor.png);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: -62px;
  left: calc(50% - 260px);
  z-index: -10;
  transform: scale(0.7);
}
.childsponsor__heading--point01::before {
  content: "";
  display: block;
  width: 253px;
  height: 103px;
  background-image: url(/childsponsor/item_img/index_heading_point1.png);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: -56px;
  left: -50px;
  z-index: -1;
  transform: scale(0.7);
}
.childsponsor__heading--point02::before {
  content: "";
  display: block;
  width: 253px;
  height: 103px;
  background-image: url(/childsponsor/item_img/index_heading_point2.png);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: -56px;
  left: -50px;
  z-index: -1;
  transform: scale(0.7);
}
.childsponsor__heading--point03::before {
  content: "";
  display: block;
  width: 253px;
  height: 103px;
  background-image: url(/childsponsor/item_img/index_heading_point3.png);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: -56px;
  left: -50px;
  z-index: -1;
  transform: scale(0.7);
}
@media screen and (min-width: 768px) {
  .childsponsor__heading--childsponsor::before {
    content: "";
    display: block;
    width: 409px;
    height: 105px;
    background-image: url(/childsponsor/item_img/index_heading_chidlsponsor.png);
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: -62px;
    left: calc(50% - 423px);
    z-index: -1;
    transform: scale(1);
  }
  .childsponsor__heading--point01::before {
    content: "";
    display: block;
    width: 253px;
    height: 103px;
    background-image: url(/childsponsor/item_img/index_heading_point1.png);
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: -82px;
    left: -38px;
    z-index: -1;
    transform: scale(1);
  }
  .childsponsor__heading--point02::before {
    content: "";
    display: block;
    width: 253px;
    height: 103px;
    background-image: url(/childsponsor/item_img/index_heading_point2.png);
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: -82px;
    left: -23px;
    z-index: -1;
    transform: scale(1);
  }
  .childsponsor__heading--point03::before {
    content: "";
    display: block;
    width: 253px;
    height: 103px;
    background-image: url(/childsponsor/item_img/index_heading_point3.png);
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: -82px;
    left: -38px;
    z-index: -1;
    transform: scale(1);
  }
}
/* childsponsor change */
.childsponsor__heading--change::before {
  content: "";
  display: block;
  width: 253px;
  height: 118px;
  background-image: url(/childsponsor/item_img/index_heading_change.png);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: -82px;
  left: calc(50% - 231px);
  z-index: -1;
  transform: scale(0.8);
}
@media screen and (min-width: 768px) {
  .childsponsor__heading--change::before {
    content: "";
    display: block;
    width: 253px;
    height: 118px;
    background-image: url(/childsponsor/item_img/index_heading_change.png);
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: -88px;
    left: calc(50% - 381px);
    z-index: -1;
    transform: scale(1);
  }
}

/* childsponsor faq */
.childsponsor__heading--faq::before {
  content: "";
  display: block;
  width: 129px;
  height: 60px;
  background-image: url(/childsponsor/item_img/index_heading_qa.png);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: -38px;
  left: calc(50% - 168px);
  z-index: -1;
  transform: scale(0.8);
}
@media screen and (min-width: 768px) {
  .childsponsor__heading--faq::before {
    content: "";
    display: block;
    width: 129px;
    height: 60px;
    background-image: url(/childsponsor/item_img/index_heading_qa.png);
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: -38px;
    left: calc(50% - 168px);
    z-index: -1;
    transform: scale(1);
  }
}

/* childsponsor about */
.childsponsor__heading--about::before {
  content: "";
  display: block;
  width: 367px;
  height: 117px;
  background-image: url(/childsponsor/item_img/index_heading_about.png);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: -94px;
  left: calc(50% - 230px);
  z-index: -1;
  transform: scale(0.8);
}
@media screen and (min-width: 768px) {
  .childsponsor__heading--about::before {
    content: "";
    display: block;
    width: 367px;
    height: 117px;
    background-image: url(/childsponsor/item_img/index_heading_about.png);
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: -94px;
    left: calc(50% - 386px);
    z-index: -1;
    transform: scale(1);
  }
  .childsponsor__wrapper--about {
    background: -moz-linear-gradient(0deg, #fff 0%, #fff 30%, #ff6600 30%, #ff6600 100%);
    background: -webkit-linear-gradient(0deg, #fff 0%, #fff 30%, #ff6600 30%, #ff6600 100%);
    background: linear-gradient(0deg, #fff 0%, #fff 30%, #ff6600 30%, #ff6600 100%);
  }
}

/* childsponsor cta */
.childsponsor__wrapper--cta {
  height: 370px;
  background: url(/childsponsor/item_img/index_img_donate_01.jpg) no-repeat;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .childsponsor__wrapper--cta {
    height: 370px;
    background: url(/childsponsor/item_img/index_img_donate_01.jpg) no-repeat;
    background-size: cover;
    background-position: center;
  }
}

/* childsponsor voice */
.childsponsor__heading--voice::before {
  content: "";
  display: block;
  width: 253px;
  height: 103px;
  background-image: url(/childsponsor/item_img/index_heading_voice.png);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: -68px;
  left: -24px;
  z-index: -1;
  transform: scale(0.8);
}
@media screen and (min-width: 768px) {
  .childsponsor__heading--voice::before {
    content: "";
    display: block;
    width: 253px;
    height: 103px;
    background-image: url(/childsponsor/item_img/index_heading_voice.png);
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: -68px;
    left: -24px;
    z-index: -1;
    transform: scale(1);
  }
  .childsponsor__wrapper--voice {
    background: -moz-linear-gradient(90deg, #f4f5f7 0%, #f4f5f7 60%, #ff6600 60%, #ff6600 100%);
    background: -webkit-linear-gradient(90deg, #f4f5f7 0%, #f4f5f7 60%, #ff6600 60%, #ff6600 100%);
    background: linear-gradient(90deg, #f4f5f7 0%, #f4f5f7 60%, #ff6600 60%, #ff6600 100%);
  }
}
.childsponsor__wrapper--voice .swiper-button-prev {
  background-color: transparent;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ff6600'%2F%3E%3C%2Fsvg%3E");
}
.childsponsor__wrapper--voice .swiper-button-next {
  background-color: transparent;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ff6600'%2F%3E%3C%2Fsvg%3E");
}

/* 20221011 テレビ番組をご覧になった皆さまへ */
.main-visual--tv-20221011 {
  background-image: url(/childsponsor/item_img/sp-tvi_mv_sp_20221011.jpg);
  height: 280px;
}
@media screen and (min-width: 768px) {
  .main-visual--tv-20221011 {
    background-image: url(/childsponsor/item_img/sp-tv_mv_pc_20221011.jpg);
    height: 600px;
    border-bottom-left-radius: 3.5rem;
  }
}

/* 20220901 まもりたい電車広告LP */
.main-visual--mamoritai-20220901 {
  background-image: url(/childsponsor/item_img/mamoritai_mv_sp_20220901.jpg);
  height: 280px;
}
@media screen and (min-width: 768px) {
  .main-visual--mamoritai-20220901 {
    background-image: url(/childsponsor/item_img/mamoritai_mv_pc_20220901.jpg);
    height: 600px;
    border-bottom-left-radius: 3.5rem;
  }
}

/* 20220621 Chosen先行申込み Fy22 */
.main-visual--chosen-fy22-early {
  background-image: url(/childsponsor/item_img/chosen_mv_fy22_sp02.jpg);
}
.main-visual-wrapper--chosen-fy22-early {
  height: 500px;
}
@media screen and (min-width: 768px) {
  .main-visual--chosen-fy22-early {
    background-image: url(/childsponsor/item_img/chosen_mv_fy22_pc02.jpg);
  }
  .main-visual-wrapper--chosen-fy22-early {
    width: 980px;
    height: 620px;
  }
}
.chosen-fy22__container--sns-campaign {
  background: linear-gradient(33deg, #00badb 0%, #00badb 50%, #00acca 50%, #00acca 100%);
}

/* 20220323 Chosen Fy22 */
.main-visual--chosen-fy22 {
  background-image: url(/childsponsor/item_img/chosen_mv_fy22_sp01.jpg);
}
@media screen and (min-width: 768px) {
  .main-visual--chosen-fy22 {
    background-image: url(/childsponsor/item_img/chosen_mv_fy22_pc01.jpg);
  }
}

/* スポンサーの声 */
.main-visual--sponsor-voice {
  background-image: url(/childsponsor/item_img/sponsor-voice_mv_sp02.jpg);
}
.sponsor-voice__donor-name-01 {
  top: 255px;
}
.sponsor-voice__donor-name-02 {
  top: 271px;
}
.sponsor-voice__container--donor-list {
  position: relative;
}
.sponsor-voice__container--donor-list::before {
  background-color: #fff5ec;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.sponsor-voice__container--donor-comment {
  background-image: url(/childsponsor/item_img/sponsor-voice_icon_quote.svg);
  background-size: 35px;
  background-repeat: no-repeat;
  background-color: rgba(255, 255, 255, 0.9);
  background-blend-mode: lighten;
  background-position: left 15px top 11px;
}
.sponsor-voice__container--story {
  position: relative;
}
.sponsor-voice__container--story::before {
  background-color: #fff5ec;
  content: "";
  display: block;
  width: 100%;
  height: 75%;
  position: absolute;
  top: 12vw;
  left: 0;
  z-index: -1;
}
.sponsor-voice__container--cta {
  background-image: url(/children/item_img/index_img_donate_01.jpg);
}

@media screen and (min-width: 768px) {
  .main-visual--sponsor-voice {
    background-image: url(/childsponsor/item_img/sponsor-voice_mv_pc02.jpg);
  }
  .main-visual-wrapper--sponsor-voice {
    width: 980px;
  }
  .sponsor-voice__container--donor {
    width: 32%;
    margin-right: 2%;
  }
  .sponsor-voice__container--donor:nth-of-type(3n) {
    margin-right: 0;
  }
  .sponsor-voice__img--donor {
    height: 300px;
  }
  .sponsor-voice__donor-name-01 {
    top: 252px;
  }
  .sponsor-voice__donor-name-02 {
    top: 268px;
  }
  .sponsor-voice__container--donor-list {
    position: relative;
  }
  .sponsor-voice__container--donor-list::before {
    background-color: #fff5ec;
    right: auto;
    left: 0;
    transform-origin: 100% 50%;
    content: "";
    display: block;
    width: 86%;
    height: 100%;
    position: absolute;
    top: 0%;
    z-index: -1;
    transition: all 0.6s ease-in-out 0s;
  }
  .sponsor-voice__container--story {
    position: relative;
  }
  .sponsor-voice__container--story::before {
    background-color: #fff5ec;
    right: 0;
    left: auto;
    transform-origin: 100% 50%;
    content: "";
    display: block;
    width: 60.25%;
    height: 116%;
    position: absolute;
    top: -9%;
    z-index: -1;
    transition: all 0.6s ease-in-out 0s;
  }
  .sponsor-voice__container--cta {
    background-image: url(/children/item_img/index_img_donate_01.jpg);
  }
}

/* 続きを読む */
.cp_box *,
.cp_box *:before,
.cp_box *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.cp_box {
  position: relative;
}
.cp_box label {
  position: absolute;
  z-index: 1;
  bottom: 0;
  width: 100%;
  height: 140px; /* グラデーションの高さ */
  cursor: pointer;
  text-align: center;
  /* 以下グラデーションは背景を自身のサイトに合わせて設定してください */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
}
.cp_box input:checked + label {
  background: inherit; /* 開いた時にグラデーションを消す */
}
.cp_box label:after {
  line-height: 2.5rem;
  position: absolute;
  z-index: 2;
  bottom: 0px;
  left: 50%;
  width: 16rem;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f078"" 続きをよむ";
  transform: translate(-50%, 0);
  letter-spacing: 0.05em;
  color: #ff6600;
  border-radius: 100px;
  background-color: #fff;
  border: 2px solid #ff6600;
}
.cp_box input {
  display: none;
}
.cp_box .cp_container {
  overflow: hidden;
  height: 150px; /* 開く前に見えている部分の高さ */
  transition: all 0.5s;
}
.cp_box input:checked + label {
  /* display: none ; 閉じるボタンを消す場合解放 */
}
.cp_box input:checked + label:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f077"" 閉じる";
}
.cp_box input:checked ~ .cp_container {
  height: auto;
  padding-bottom: 80px; /* 閉じるボタンのbottomからの位置 */
  transition: all 0.5s;
}

/* 続きを読む 閉じるなし */
.cp_box-02 *,
.cp_box-02 *:before,
.cp_box-02 *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.cp_box-02 {
  position: relative;
}
.cp_box-02 label.cp_box-02--label {
  position: absolute;
  z-index: 1;
  bottom: 0;
  width: 100%;
  height: 140px; /* グラデーションの高さ */
  cursor: pointer;
  text-align: center;
  /* 以下グラデーションは背景を自身のサイトに合わせて設定してください */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 90%);
}
.cp_box-02 input:checked + label.cp_box-02--label {
  background: inherit; /* 開いた時にグラデーションを消す */
}
.cp_box-02 label.cp_box-02--label:after {
  line-height: 2.5rem;
  position: absolute;
  z-index: 2;
  bottom: 0px;
  left: 50%;
  width: 16rem;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f078"" さらにスポンサーの声を読む";
  transform: translate(-50%, 0);
  letter-spacing: 0.05em;
  color: #ff6600;
  border-radius: 100px;
  background-color: #fff5ef;
  border: 2px solid #ff6600;
}
.cp_box-02 input {
  display: none;
}
.cp_box-02 .cp_container-02 {
  overflow: hidden;
  height: 0px; /* 開く前に見えている部分の高さ */
  transition: all 0.5s;
}
.cp_box-02 input:checked + label.cp_box-02--label {
  display: none; /* 閉じるボタンを消す場合解放 */
}
.cp_box-02 input:checked + label.cp_box-02--label:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f077"" 閉じる";
}
.cp_box-02 input:checked ~ .cp_container-02 {
  height: auto;
  padding-bottom: 0px; /* 閉じるボタンのbottomからの位置 */
  transition: all 0.5s;
}

img {
  border-style: none;
  height: none;
}
.pagetop img {
  display: inline;
}
.box img {
  display: inline;
}
.donateBlk_minInner img {
  display: inline;
}

/* child-story styles */

.main-visual--child-story {
  background-image: url(/childsponsor/item_img/child-story_mv_sp01.jpg);
}

@media screen and (min-width: 768px) {
  .main-visual--child-story {
    background-image: url(/childsponsor/item_img/child-story_mv_01.jpg);
  }
  .main-visual-wrapper--child-story {
    width: 980px;
  }
  .question__container {
    width: 980px;
  }
}

/* chosen styles */

.main-visual--chosen {
  background-image: url(/childsponsor/item_img/chosen_mv_sp01.jpg);
}
.chosen-video__conatainer {
  background-image: url(/childsponsor/item_img/chosen_child-letters_sp.png);
}
.chosen--change__heading-h2::after {
  content: "";
  position: absolute;
  bottom: -5.33vw;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: 0;
  height: 0;
  border-top: solid 5.67vw #ff6600;
  border-right: solid 5.67vw transparent;
  border-bottom: solid 0.67vw transparent;
  border-left: solid 5.67vw transparent;
}
.chosen-change__container--problem {
  position: relative;
}
.chosen-change__container--problem::before {
  background-color: #fff0da;
  content: "";
  display: block;
  width: 100%;
  height: 75%;
  position: absolute;
  top: 12vw;
  left: 0;
  z-index: -1;
}
.chosen-change__container--solution {
  position: relative;
}
.chosen-change__container--solution::before {
  background-color: #fff0da;
  content: "";
  display: block;
  width: 100%;
  height: 75%;
  position: absolute;
  top: 12vw;
  left: 0;
  z-index: -1;
}
.chosen-change__container--future {
  position: relative;
}
.chosen-change__container--future::before {
  background-color: #fff0da;
  content: "";
  display: block;
  width: 100%;
  height: 75%;
  position: absolute;
  top: 12vw;
  left: 0;
  z-index: -1;
}
.chosen-step__container {
  margin-right: 0;
}
.chosen-share {
  background-image: url(/childsponsor/item_img/chosen_img-share_sp01.jpg);
}

@media screen and (min-width: 768px) {
  .main-visual--chosen {
    background-image: url(/childsponsor/item_img/chosen_mv_01.jpg);
  }
  .main-visual-wrapper--chosen {
    width: 980px;
  }
  .chosen-video {
    background-image: url(/childsponsor/item_img/chosen_bg_01.png);
  }
  .chosen-video__conatainer {
    background-image: url(/childsponsor/item_img/chosen_child-letters.png);
  }
  .chosen--change__heading-h2::after {
    bottom: -40px;
    border-top: solid 20px #ff6600;
    border-right: solid 20px transparent;
    border-bottom: solid 20px transparent;
    border-left: solid 20px transparent;
  }
  .chosen-change__container--problem {
    position: relative;
  }
  .chosen-change__container--problem::before {
    background-color: #fff0da;
    right: 0;
    left: auto;
    transform-origin: 100% 50%;
    content: "";
    display: block;
    width: 60.25%;
    height: 94%;
    position: absolute;
    top: 32%;
    z-index: -1;
    transition: all 0.6s ease-in-out 0s;
  }
  .chosen-change__container--solution {
    position: relative;
  }
  .chosen-change__container--solution::before {
    background-color: #fff0da;
    left: 0;
    transform-origin: 100% 50%;
    content: "";
    display: block;
    width: 60.25%;
    height: 80%;
    position: absolute;
    top: 42%;
    z-index: -1;
    transition: all 0.6s ease-in-out 0s;
  }
  .chosen-change__container--future {
    position: relative;
  }
  .chosen-change__container--future::before {
    background-color: #fff0da;
    right: 0;
    left: auto;
    transform-origin: 100% 50%;
    content: "";
    display: block;
    width: 60.25%;
    height: 94%;
    position: absolute;
    top: 28%;
    z-index: -1;
    transition: all 0.6s ease-in-out 0s;
  }
  .chosen-story__container {
    width: 32%;
    margin-right: 2%;
  }
  .chosen-story__container:nth-of-type(3n) {
    margin-right: 0;
  }
  .chosen-step__container {
    width: 21.25%;
    margin-right: 5%;
  }
  .chosen-step__container:nth-of-type(4) {
    margin-right: 0;
  }
  .chosen-share {
    background-image: url(/childsponsor/item_img/chosen_img-share_01.jpg);
  }
  .chosen-share__container {
    width: 980px;
  }
}
