@charset "UTF-8";
/* CSS Document */



.mb-10 {
  margin-bottom: 10px !important;
}


/* highlight styles */

.highlight__container {
  width: 100%;
  padding: 10px 0 10px 0;
}

.bg-orange {
	background-color: #FFF2E5;
}

.bg-green {
	background-color: #F5FFEE;
}

.bg-blue {
	background-color: #EEFBFF;
}

.highlight__txt {
  text-align: center;
  margin-bottom: 25px;
  color: #3e4b56;
}

/* button styles */

.highlight__flex-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.highlight__flex-item {
  width: 40%;
}

.highlight__flex-item:first-child {
  margin-right: 40px;
}

.highlight__flex-item h3 {
  margin-bottom: 0px;
  color: #3e4b56;
  text-align: center;
}

.btn-square {
  width: 100%;
  display: block;
  padding: 17px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  text-decoration: none;
  color: #FFF;
  text-align: center;
  font-weight: 700;
  font-size: 19px;
}

.orange {
  background-color: #FF6600;
  border-bottom: 4px solid #D6471A;
}

.green {
  background-color: #19B100;
  border-bottom: 4px solid #128100;
}

.blue {
  background-color: #00ACCB;
  border-bottom: 4px solid #017B90;
}

.btn-square span.btn-txt--base{
  color: #FFF;
  position: relative;
  padding-left: 24px;
}

.btn-square span.btn-txt--base::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 7px;
  height: 7px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
  margin-top: -5px;
}

@media screen and (max-width: 768px) {
  .highlight__flex-item {
    width: 100%;
  }
  .highlight__flex-item:first-child {
    margin-right: 0px;
    margin-bottom: 20px;
  }
}



/* Floating styles */


.floating__container {
  width: 100%;
  padding: 0 0 5px 0;
  position: fixed;
  left: 0;
  bottom: 0;
  display: none;
  width: 100%;
  background: rgba(255,255,255,1.0);
  z-index: 100;
}

.floating__txt {
  text-align: center;
  margin-bottom: 20px;
  color: #3e4b56;
}

.floating__flex-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.floating__flex-item {
  width: 40%;
}

.floating__flex-item:first-child {
  margin-right: 40px;
}

.floating__flex-item h3 {
  font-size: 14px;
  margin-bottom: 0px;
  color: #3e4b56;
  text-align: center;
}

.floating__btn {
  width: 90%;
  display: block;
  padding: 16px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  /*color: #FFF;*/
}

.floating__btn--green {
  background-color: #19B100;
  border-bottom: 4px solid #128100;
}

.floating__btn--blue {
  background-color: #00ACCB;
  border-bottom: 4px solid #017B90;
}

.floating__btn--orange {
  background-color: #FF630B;
  padding: 18px 20px;
  color: #FFF;
}

.floating__btn--white {
  border: 2px solid #FF630B;
  color: #FF6600;
}

.floating__btn span.floating__btn-txt--base{
  /*color: #FFF;*/
  position: relative;
  padding-left: 24px;
}

.floating__btn--white span.floating__btn-txt--base {
  color: #FF6600;
}

.floating__btn span.floating__btn-txt--base::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 7px;
  height: 7px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
  margin-top: -5px;
}



.floating__btn--white span.floating__btn-txt--base::before {
  border-top: 3px solid #ff6600;
  border-right: 3px solid #ff6600;
}

.floating__txt--time{
  text-align: center;
  font-size: 12px;
}

.floating__btn-txt--tel {
  font-size: 24px;
}

@media screen and (max-width: 768px) {
  .floating__flex-container {
    width: 100%;
  }
  .floating__flex-item {
    width: 45%;
  }
  .floating__flex-item:first-child {
    margin-right: 5px;
  }
  .floating__flex-item h3 {
    font-size: 12px;
  }
  .floating__btn {
    width: 85%;
    display: block;
    padding: 10px 10px;
    margin-bottom: 5px;
    border-radius: 5px;
    text-decoration: none;
    color: #FFF;
    text-align: center;
    font-weight: 700;
    font-size: 12px;
  }
  .floating__btn--orange {
  	padding: 12px 10px;
  }
}




/* Donate styles */



.grid__container {
  display: flex;
}

/*
.grid {
  display: grid;
  width: 1140px;
  grid-gap: 60px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: start;
}
@media (max-width: 600px) {
  .grid {
    grid-gap: 30px;
  }
}

.grid a {
  text-decoration: none;
}
*/

.grid__item {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: 0.2s;
  position: relative;
}
.grid__item:hover {
  transform: translateY(-0.5%);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
}

.card__img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.card__content {
  padding: 24px 24px;
  background-color: #FEFFF1;
}
.card__price {
  position: absolute;
  top: 209px;
  left: 0;
  background: #FF6600;
  padding: 6px 10px;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}
.card__header {
  font-size: 24px;
  font-weight: 600;
  color: #FF6600;
  margin-bottom: 10px;
  text-align: center;
}
.card__text {
  font-size: 15px;
  letter-spacing: 1px;
  line-height: 1.7;
  color: #3d3d3d;
  margin-bottom: 25px;
  text-align: left;
}
.card__btn {
  display: block;
  width: 100%;
  padding: 15px;
  font-size: 20px;
  text-align: center;
  color: #FFF;
  background-color: #19B100;
  border: none;
  border-radius: 4px;
  transition: 0.2s;
  cursor: pointer;
}
.card__btn span {
  margin-left: 10px;
  transition: 0.2s;
  color: #FFF;
  position: relative;
  padding-left: 24px;
  font-weight: bold;
}
.card__btn span::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
  margin-top: -5px;
}





/* Children styles */

.highlight__container__donate-img {
  width: 100%;
  height: 470px;
  background: url(/children/item_img/index_img_donate_01.jpg) no-repeat;
  background-size: cover;
  padding-top: 200px;
}

.highlight__container__donate-img p {
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  color: #FFF;
}

@media screen and (max-width: 768px) {
  .highlight__container__donate-img {
    height: 380px;
    padding-top: 120px;
  }
  .highlight__container__donate-img p {
    padding: 0 20px 0;
    font-size: 24px;
  }
}




/* Re:Children styles */

.main-visual {
  width: 100%;
  height: 450px;
}

.main-visual--wash_01 {
  background: url(/children/item_img/wash_01_mv_01.jpg) no-repeat;
  background-size: cover;
  padding-top: 140px;
}

.main-visual-wrapper {
  width: 980px;
  margin: 0 auto;
}

.main-visual__heading-01 {
  color: #FFF;
  font-size: 36px;
  width: 50%;
  position: relative;
  line-height: 1.2;
}

.main-visual__heading-01--right {
  left: 50%;
}

.main-visual__text {
  color: #FFF;
  font-size: 18px;
  position: relative;
  width: 50%;
  margin-bottom: 20px;
}

.main-visual__text--right {
  left: 50%;
}

@media screen and (max-width: 768px) {
  .main-visual-wrapper {
    width: 100%;
    bottom: -60%;
    position: relative;
  }
  .main-visual--wash_01 {
    background: url(/children/item_img/wash_01_mv_sp01.jpg) no-repeat;
    background-size: cover;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 0;
  }
  .main-visual__heading-01 {
    font-size: 26px;
    width: 100% !important;
  }
  .main-visual__heading-01--right {
    left: 0;
  }
  .main-visual__text {
    font-size: 18px;
    width: 100%;
  }
  .main-visual__text--right {
    left: 0;
  }
}

.content {
  width: 100%;
  padding-top: 75px;
  padding-bottom: 50px;
}

.content--gray {
  background-color: #FAFAFA;
}

.content--black {
  background-color: #393939;
}

.content--green {
  background-color: #F5FFEE;
}

.content--orange {
  background-color: #FF6600;
}


.content-wrapper {
  width: 980px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .content {
    width: 100%;
  }
  .content-wrapper {
    width: 100%;
    padding: 0 5% 0;
  }
}

.content__heading-02 {
  font-size: 34px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .content__heading-02 {
    font-size: 26px;
  }
  .br--sp {
    display: none;
  }
}

.content__heading-02--orange {
  color: #FF6600;
}

.content__text {
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.8;
  text-align: justify;
}

.content__text--center {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .content__text {
    font-size: 18px;
    line-height: 1.6;
  }
}

.content__flex-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.content__flex-item {
  margin-right: 5%;
  margin-bottom: 40px;
}
/*
.content__flex-item:last-child {
  margin-right: 0;
}
*/

.content__flex-item--three {
  width: 30%;
}

.content__flex-item--three:nth-child(3n) {
  margin-right: 0;
}

.content__flex-item--two {
  width: 47%;
}

.content__flex-item--two:nth-child(2n) {
  margin-right: 0;
}

@media screen and (max-width: 768px) {
  .content__flex-container {
    flex-direction: column;
  }
  .content__flex-item--three {
    width: 100%;
    margin-bottom: 30px;
  }
  .content__flex-item--two {
    width: 100%;
    margin-bottom: 30px;
  }
}

.catch-info__heading-03 {
  color: #000;
  font-size: 24px;
  text-align: center;
  margin-bottom: 20px;
}

.catch-info__heading-03--orange {
  color: #FF6600;
}

.catch-info__heading-03 strong {
  font-size: 50px;
}

.catch-info__text {
  font-size: 18px;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  .catch-info__heading-03 {
    font-size: 20px;
  }
  .catch-info__text {
    font-size: 18px;
    line-height: 1.6;
  }
}

.catch-info__img {
  width: 100%;
  margin-bottom: 20px;
}

.content__movie {
  width:100%;
  height:0;
  padding-bottom:56.25%;
  position:relative;
  margin-bottom: 40px;
}
.content__movie iframe{
  width:100%;
  height:100%;
  position:absolute;
  top:0;
  left:0;
}


/* Re:Donate styles */

.main-visual--christmas-fy21 {
  background: url(/donate/item_img/christmas-fy21_mv_01.jpg) no-repeat;
  background-size: cover;
  padding-top: 140px;
}

.main-visual__btn {
  width: 300px;
  display: block;
  padding: 17px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  text-decoration: none;
  color: #FFF;
  text-align: center;
  font-weight: 700;
  font-size: 19px;
}

.main-visual__btn--right {
  left: 50%;
  position: relative;
}

.main-visual__btn--orange {
  background-color: #FF6600;
  border-bottom: 4px solid #D6471A;
}

.main-visual__btn--green {
  background-color: #19B100;
  border-bottom: 4px solid #128100;
}

.main-visual__btn--blue {
  background-color: #00ACCB;
  border-bottom: 4px solid #017B90;
}

.main-visual__btn--text {
  color: #FFF;
  position: relative;
  padding-left: 24px;
}

.main-visual__btn--text::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 7px;
  height: 7px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
  margin-top: -5px;
}


@media screen and (max-width: 768px) {
  .main-visual--christmas-fy21 {
    background: url(/donate/item_img/christmas-fy21_mv_sp01.jpg) no-repeat;
    background-size: cover;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 0;
  }
  .main-visual__btn {
    display: none;
  }
  .main-visual__btn--right {
    left: 0;
  }
}



.donate-list {
  -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 linear 0s;
}

.donate-list:hover {
  -webkit-box-shadow: 0px 1px 35px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 1px 35px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 1px 35px 0px rgba(0, 0, 0, 0.3);
}

.donate-list__img {
  width: 100%;
}

.donate-detail__container {
  background-color: #FFF;
  padding: 30px 20px 20px 20px;
} 

.donate-list__price {
  font-size: 20px;
  color: #000;
  text-align: center;
  margin-bottom: 20px;
}

.donate-list__price--orange {
  color: #FF6600;
}

.donate-list__price strong {
  font-size: 34px;
}

.donate-list__text {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.donate-list__btn {
  width: 100%;
  display: block;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  color: #FFF;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
}

.donate-list__btn--green {
  background-color: #19B100;
}

.donate-list__btn--orange {
  background-color: #ff6600;
}

.donate-list__btn--text {
  color: #FFF;
  position: relative;
  padding-left: 24px;
}

.donate-list__btn--text::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 7px;
  height: 7px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
  margin-top: -5px;
}

.donate-method {
  -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 linear 0s;
}

.donate-method:hover {
  -webkit-box-shadow: 0px 1px 35px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 1px 35px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 1px 35px 0px rgba(0, 0, 0, 0.3);
}

.donate-method__heading-03 {
  width: 100%;
  background-color: #FF6600;
  color: #FFF;
  text-align: center;
  font-size: 20px;
  padding: 15px 0;
}

.donate-method__container {
  background-color: #FFF;
  padding: 30px 20px 20px 20px;
}

.donate-method__text {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.donate-method__text small {
  font-size: 14px;
}

.donate-method__text--center {
  text-align: center;
}

.donate-method__img {
  width: 100%;
  margin-bottom: 20px;
}

.donate-method__btn {
  width: 70%;
  display: block;
  padding: 15px 20px;
  border-radius: 50px;
  text-decoration: none;
  color: #FFF;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  margin: 0 auto;
}

.donate-method__btn--green {
  background-color: #19B100;
}

.donate-method__btn--text {
  color: #FFF;
  position: relative;
  padding-left: 24px;
}

.donate-method__btn--text::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 7px;
  height: 7px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
  margin-top: -5px;
}

.donate-bank__container {
  font-size: 18px;
  margin-bottom: 20px;
}

.donate-bank__container dt {
  float: left;
  clear: left;
  width: 30%;
  border-bottom: 1px solid #DFDFDF;
  padding-bottom: 1em;
}

.donate-bank__container dd {
  float: left;
  width: 70%;
  border-bottom: 1px solid #DFDFDF;
  padding-bottom: 1em;
  margin-bottom: 1em;
}

.content-sticky {
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  color: #000;
  padding: 15px 0;
  font-size: 16px;
  font-weight: 900;
  z-index: 1000;
}

.donate-sticky:after {
  content: "";
  display: block;
  clear: both;
}
 
.donate-sticky:before {
　content: "";
  display: block;
  clear: both;
}
 
.donate-sticky {
  justify-content: center;
  align-items: center;
}

.donate-stycky__text {
  /*display: table-cell;
  vertical-align: middle;*/
  font-size: 18px;
  color: #FFF;
}

.donate-stycky__btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  color: #FFF;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
}

.donate-stycky__btn--green {
  background-color: #19B100;
  border-bottom: 4px solid #128100;
}

.donate-stycky__btn--orange {
  background-color: #FF6600;
  border-bottom: 4px solid #D6471A;
}

.donate-stycky__btn--text {
  color: #FFF;
  position: relative;
  padding-left: 24px;
  font-size: 16px;
}

.donate-stycky__btn--text::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 7px;
  height: 7px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
  margin-top: -5px;
}

@media screen and (min-width: 769px) {
  .donate-sticky--single {
    display: flex;
  }
  .donate-stycky__text--single {
    float: left;
  }
  .donate-stycky__btn--single {
    width: 240px;
    float: right;
  }
  .donate-stycky__btn--cs {
    width: 360px;
    padding: 10px 15px;
  }
  .donate-stycky__text--multiple {
    text-align: center;
    margin-bottom: 10px;
  }
  .donate-sticky__flex-item:first-child {
    margin-right: 20px;
  }
  .donate-sticky__flex-item {
    width: 49%;
  }
  .donate-stycky__btn--multiple {
    width: 100%;
  }
  .donate-sticky__flex-container {
    display: flex;
    width: 70%;
    margin: 0 auto;
  }
  .donate-stycky__btn--text-sp {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .donate-stycky__text--single {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .donate-stycky__btn--single {
    width: 100%;
  }
  .donate-stycky__btn--cs {
    padding: 10px 3px;
  }
  .donate-stycky__text--multiple {
    font-size: 16px;
    text-align: center;
    margin-bottom: 10px;
  }
  .donate-sticky__flex-container {
    display: flex;
    width: 100%;
    margin: 0 auto;
  }
  .donate-sticky__flex-item {
    width: 48%;
  }
  .donate-sticky__flex-item:first-child {
    margin-right: 4%;
  }
  .donate-stycky__btn--text-pc {
    display: none;
  }
  .donate-stycky__btn--multiple {
    width: 100%;
  }
}



.text--underline {
  background: linear-gradient(transparent 52%, #FFFF00 0%);
  font-weight: bold;
}



/* Children-education styles */

.main-visual--education {
  background: url(/children/item_img/education_mv_01.jpg) no-repeat;
  background-size: cover;
  /*padding-top: 158px;*/
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature__img {
  width: 100%;
  height: 485px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.feature__img--left {
  border-radius: 0 10px 10px 0;
}

.feature__img--right {
  border-radius: 10px 0 0 10px;
}

.content__heading-02--left {
  text-align: left;
}

.feature__wrapper--right {
  padding-right: 20%;
}

.feature__wrapper--left {
  padding-left: 20%;
  padding-right: 10%;
}

.content-orange--80 {
  background: -moz-linear-gradient(0deg,#fff 0%,#fff 25%, #ff6600 25%, #ff6600 100%);
  background: -webkit-linear-gradient(0deg,#fff 0%,#fff 25%, #ff6600 25%, #ff6600 100%);
  background: linear-gradient(0deg,#fff 0%,#fff 25%, #ff6600 25%, #ff6600 100%);
}

.content__heading-02--white {
  color: #fff;
}

.content__text--white {
  color: #fff;
}

.content__flex-item--feature {
  width: 50%;
  margin-right: 0;
}

.article-seo__img {
  width: 100%;
  /*border-radius: 10px 10px 0 0;*/
}

.content__heading-03 {
  font-weight: bold;
}

.content__heading-03--center {
  text-align: center;
}

.content__heading-03--article-seo {
  font-size: 18px;
  color: #000;
  line-height: 1.5;
}

:root {
  --swiper-navigation-color: #ff6600;
  --swiper-pagination-color: #ff6600;
}

/*
.swiper-button-prev {
  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");
}
.swiper-button-next {
  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");
}
*/
.swiper-button-prev {
  background-color: #ff6600;
  padding: 10px 20px;
  background-size: 40%;
  background-repeat: no-repeat;
  background-position: center;
  left: 0;
  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'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next {
  background-color: #ff6600;
  padding: 10px 20px;
  background-size: 40%;
  background-repeat: no-repeat;
  background-position: center;
  right: 0;
  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'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}



.content-gray--30 {
  background: -moz-linear-gradient(0deg,#FAFAFA 0%,#FAFAFA 70%, #fff 70%, #fff 100%);
  background: -webkit-linear-gradient(0deg,#FAFAFA 0%,#FAFAFA 70%, #fff 70%, #fff 100%);
  background: linear-gradient(0deg,#FAFAFA 0%,#FAFAFA 70%, #fff 70%, #fff 100%);
}

.swiper-slide--article-seo {
  -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 linear 0s;
  /*border-radius: 10px;*/
}

.swiper-slide--article-seo:hover {
  -webkit-box-shadow: 0px 1px 35px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 1px 35px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 1px 35px 0px rgba(0, 0, 0, 0.3);
}

.swiper-wrapper--article-seo {
  padding: 50px 0 50px 30px;
}

.article-seo-detail__container {
  padding: 20px 20px 20px 20px;
  background-color: #fff;
}

.content__text--article-seo {
  font-size: 16px;
  line-height: 1.5;
}

.content-children__img-wrapper {
  overflow: hidden;
}

.content-children__img {
  width: 100%;
  margin-bottom: 15px;
}

.content-children__img:hover{
}

.content__heading-03--content-children {
  font-size: 18px;
  color: #000;
  line-height: 1.5;
}

.content__text--content-children {
  font-size: 16px;
  line-height: 1.5;
}

.content__flex-item--content-children {
}

.link-content-children {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.swiper-story {
  margin-bottom: 100px;
}

.swiper-wrapper--story {
  margin-bottom: 60px;
}

.highlight__container--donate-img {
  width: 100%;
  height: 470px;
  background: url(/children/item_img/index_img_donate_01.jpg) no-repeat;
  background-size: cover;
  /*padding-top: 144px;*/
  display: flex;
  justify-content: center;
  align-items: center;
}

.highlight__container--donate-img p {
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  color: #FFF;
}

@media screen and (max-width: 768px) {
  .highlight__container--donate-img {
    height: 380px;
    padding-top: 50px;
  }
  .highlight__container--donate-img p {
    padding: 0 20px 0;
    font-size: 24px;
  }
}

@media screen and (max-width: 768px) {
  .main-visual--education {
    background: url(/children/item_img/education_mv_sp01.jpg) no-repeat;
    background-size: cover;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 0;
  }
  .main-visual-wrapper--education {
    bottom: -30%;
  }
  .content-orange--80 {
    background: #ff6600;
  }
  .feature__wrapper--right {
    padding-right: 5%;
    padding-left: 5%;
  }
  .content__heading-02--left {
    text-align: center;
  }
  .feature__img {
    width: 90%;
    height: 220px;
    display: block;
    margin: 0 auto;
  }
  .feature__img--left {
    border-radius: 10px;
    margin-bottom: 15px;
  }
  .content__flex-item--feature {
    width: 100%;
  }
  .feature__wrapper--left {
    padding-left: 5%;
    padding-right: 5%;
  }
  .feature__img--right {
    border-radius: 10px;
  }
  .content__flex-item--content-children {
  }
  .swiper-wrapper--article-seo {
    padding: 0 0 0 6%;
  }
}



/* Children-poverty styles */

.main-visual--poverty {
  background: url(/children/item_img/poverty_mv_01.jpg) no-repeat;
  background-size: cover;
  /*padding-top: 158px;*/
  display: flex;
  justify-content: center;
  align-items: center;
}


@media screen and (max-width: 768px) {
  .main-visual--poverty {
    background: url(/children/item_img/poverty_mv_sp01.jpg) no-repeat;
    background-size: cover;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 0;
  }
  .main-visual-wrapper--poverty {
    bottom: -30%;
  }
}

.content__heading-03--approach {
  font-size: 22px;
  color: #000;
  line-height: 1.5;
  text-align: center;
}

.content-approach__img {
  width: 100%;
  margin-bottom: 20px;
}

.content__flex-item--two-feature {
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}




/* tv-schedule styles */

.main-visual--tv-schedule {
  background: url(/donate/item_img/tv-schedule_mv_01.jpg) no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-visual__heading-01--tv-schedule {
  width: 70%;
}


@media screen and (max-width: 768px) {
  .main-visual--tv-schedule {
    background: url(/donate/item_img/tv-schedule_mv_sp01.jpg) no-repeat center;
    background-size: cover;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 0;
  }
  .main-visual-wrapper--tv-schedule {
    bottom: -30%;
  }
}


.table--tv-schedule {
  margin: 0 0 40px 0;
  width: 100%;
  /*box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);*/
  display: table;
}
@media screen and (max-width: 580px) {
  .table--tv-schedule  {
    display: block;
  }
}

.row--tv-schedule  {
  display: table-row;
  background: #f6f6f6;
}
.row--tv-schedule:nth-of-type(odd) {
  background: #e9e9e9;
}
.row--tv-schedule.header--tv-schedule {
  font-weight: 900;
  color: #ffffff;
  background: #ea6153;
}
.row--tv-schedule.green {
  background: #27ae60;
}
.row--tv-schedule.blue {
  background: #2980b9;
}
@media screen and (max-width: 580px) {
  .row--tv-schedule {
    padding: 14px 0 7px;
    display: block;
  }
  .row--tv-schedule.header--tv-schedule {
    padding: 0;
    height: 6px;
  }
  .row--tv-schedule.header--tv-schedule .cell--tv-schedule {
    display: none;
  }
  .row--tv-schedule .cell--tv-schedule {
    margin-bottom: 10px;
  }
  .row--tv-schedule .cell--tv-schedule:before {
    margin-bottom: 3px;
    content: attr(data-title);
    min-width: 98px;
    font-size: 10px;
    line-height: 10px;
    font-weight: bold;
    text-transform: uppercase;
    color: #969696;
    display: block;
  }
}

.cell--tv-schedule {
  padding: 15px 15px;
  display: table-cell;
}
@media screen and (max-width: 580px) {
  .cell--tv-schedule {
    padding: 2px 16px;
    display: block;
  }
}

.donate-stycky__btn--tv-schedule {
  padding: 10px 4px;
}

@media screen and (min-width: 769px) {
  .donate-stycky__btn--tv-schedule {
    width: 360px;
  }
}



/* tv-schedule styles */

.main-visual--cristmas-campaign-fy21 {
  background: url(/news/item_img/20201101_mv_01.jpg) no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-visual__heading-01--cristmas-campaign-fy21 {
  width: 65%;
}

.highlight__flex-item--cristmas-campaign-fy21 {
  width: 50%;
}

@media screen and (max-width: 768px) {
  .main-visual--cristmas-campaign-fy21 {
    background: url(/news/item_img/20201101_mv_sp01.jpg) no-repeat center;
    background-size: cover;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 0;
  }
  .main-visual-wrapper--cristmas-campaign-fy21 {
    bottom: -28%;
  }
  .highlight__flex-item--cristmas-campaign-fy21 {
    width: 100%;
  }
}



/* Children-wash styles */

.main-visual--wash {
  background: url(/children/item_img/wash_mv_01.jpg) no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.highlight__container--donate-wash-img {
  background-image: url(/children/item_img/wash_img_donate_01.jpg);
}


@media screen and (max-width: 768px) {
  .main-visual--wash {
    background: url(/children/item_img/wash_mv_sp01.jpg) no-repeat;
    background-size: cover;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 0;
  }
  .main-visual-wrapper--wash {
    bottom: -30%;
  }
  .highlight__container--donate-wash-img {
    background-position-x: -205px; 
  }
}


/* Children-crisis styles */

.main-visual--crisis {
  background: url(/children/item_img/crisis_mv_01.jpg) no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content__flex-item--description:nth-child(1) {
  width: 60%;
}

.content__flex-item--description:nth-child(2) {
  width: 35%;
  margin-right: 0;
}

.description__img {
  width: 100%;
}

.content__flex-item--fig-crisis:nth-child(1) {
  width: 48%;
  margin-right: 4%;
}

.content__flex-item--fig-crisis:nth-child(2) {
  width: 48%;
  margin-right: 0;
}

.content__flex-item--fig-crisis:nth-child(3) {
  width: 100%;
  margin-right: 0;
}

.content__flex-item--fig-crisis:nth-child(4) {
  width: 100%;
  margin-right: 0;
}

.fig-crisis__img {
    width: 100%;
}

.content__flex-item--world-crisis {
  background-color: #FFF;
  -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 linear 0s;
}

.content__flex-item--world-crisis:hover {
  -webkit-box-shadow: 0px 1px 35px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 1px 35px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 1px 35px 0px rgba(0, 0, 0, 0.3);
}

.world-crisis__img {
  width: 100%;
}

.content__heading-03--world-crisis {
  font-size: 24px;
  text-align: center;
  color: #000;
}

.world-crisis__wrapper {
  margin: 20px 30px 20px;
}

.highlight__container--donate-crisis-img {
  background-image: url(/children/item_img/crisis_img_donate_01.jpg);
}

.main-visual--crisis-tbf {
  background: url(/children/item_img/crisis_mv_02.jpg) no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.news__list {
  border-bottom: 1px solid #e3e3e3;
}

.news__item {
  border-top: 1px solid #e3e3e3;
  padding: 17px 21px;
}

.news__item a {
  color: #ff6600;
  text-decoration: none;
  display: block;
  margin: -17px -21px;
  padding: 17px 21px;
  overflow: hidden;
}

.news__item a:hover {
  text-decoration: underline;
}

.news__date {
  float: left;
  width: 6em;
  margin-right: 28px;
  font-size: 18px;
  line-height: 1.73;
}

.news__body {
  overflow: hidden;
  word-break: break-all;
  line-height: 1.86;
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  .main-visual--crisis {
    background: url(/children/item_img/crisis_mv_sp01.jpg) no-repeat;
    background-size: cover;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 0;
  }
  .main-visual--crisis-tbf {
    background: url(/children/item_img/crisis_mv_sp02.jpg) no-repeat;
    background-size: cover;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 0;
  }
  .main-visual-wrapper--crisis-tbf {
    bottom: 33%;
  }
  .content__flex-container--description {
    flex-direction: column-reverse;
  }
  .content__flex-item--description:nth-child(1) {
    width: 100%;
  }

  .content__flex-item--description:nth-child(2) {
    width: 100%;
    margin-right: 0;
  }
  .content__flex-item--fig-crisis:nth-child(1) {
    width: 100%;
  }

  .content__flex-item--fig-crisis:nth-child(2) {
    width: 100%;
  }
  .fig-crisis__img--pc {
    display: none;
  }
  .highlight__container--donate-crisis-img {
    background-image: url(/children/item_img/crisis_img_donate_sp01.jpg);
    background-size: cover;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 0;
  }
  .news__item {
    padding: 20px 0;
  }
  .news__item a {
    margin: -20px 0;
    padding: 20px 0;
  }
  .news__body {
    margin-top: 26px;
    clear: left;
    line-height: 1.71;
  }
}

@media screen and (min-width: 768px) {
  .fig-crisis__img--sp {
    display: none;
  }
}


/* Children-crisis styles */

.main-visual--health-nutrition {
  background: url(/children/item_img/health-nutrition_mv_01.jpg) no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .main-visual--health-nutrition {
    background: url(/children/item_img/health-nutrition_mv_sp01.jpg) no-repeat;
    background-size: cover;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 0;
  }
  .main-visual-wrapper--health-nutrition {
    bottom: -30%;
  }
}


/* Children-trafficking styles */

.main-visual--trafficking {
  background: url(/children/item_img/trafficking_mv_01.jpg) no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-round {
  display: inline-block;
  padding: 10px 50px;
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
  font-weight: 700;
  border: 0;
  margin-bottom: 15px;
}

.btn-round--white {
  background-color: #fff;
  border: 1px solid #ff6600;
  color: #ff6600;
  font-size: 16px;
}

.btn-round--orange {
  background-color: #ff6600;
  color: #fff;
  font-size: 16px;
}

.btn-round img {
  display: inline-block;
  vertical-align: middle;
  fill: #fff;
  margin-right: 0.25rem;
}

@media screen and (max-width: 768px) {
  .main-visual--trafficking {
    background: url(/children/item_img/trafficking_mv_sp01.jpg) no-repeat;
    background-size: cover;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 0;
  }
  .main-visual-wrapper--trafficking {
    bottom: -28%;
  }
  .btn-round {
    width: 100%;
  }
}

/* 3-minutes styles */

.content-gray--news {
  background: -moz-linear-gradient(0deg,#FFF 0%,#FFF 40%, #FAFAFA 40%, #FAFAFA 100%);
  background: -webkit-linear-gradient(0deg,#FFF 0%,#FFF 40%, #FAFAFA 40%, #FAFAFA 100%);
  background: linear-gradient(0deg,#FFF 0%,#FFF 40%, #FAFAFA 40%, #FAFAFA 100%);
}

.date__news {
  display: block;
  text-align: center;
  margin-bottom: 40px;
  margin-top: -20px;
}

.header-news__img {
  width: 980px;
  height: 627px;
  position: relative;
}

.header-news__comment {
  position: absolute;
  bottom: 0;
  width: 100%;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.75);
  padding: 10px;
  text-align: center;
  font-size: 16px;
}

.country-detail__map-image {
  width: 100%;
}

.country-detail__text {
  margin-bottom: 20px;
}

.country-detail__text dt {
  float: left;
  width: 3em;
  margin-right: 5px;
  font-size: 18px;
  line-height: 1.73;
  font-weight: bold;
}

.country-detail__text dd {
  overflow: hidden;
  word-break: break-all;
  line-height: 1.86;
  font-size: 18px;
}

.country-problem__list {
  position: relative;
  list-style: none;
  padding-left: 70px;
}

.country-problem__item {
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 3.3em;
}

.country-problem__ico {
  background-size: 60px 60px;
  display: inline-block;
  width: 60px;
  height: 60px;
  content: "";
  position: absolute;
  left: 0;
}

.country-problem__ico--crisis {
  background-image: url(/news/item_img/ico_country-problem_crisis.png);
}

.country-problem__ico--poverty {
  background-image: url(/news/item_img/ico_country-problem_poverty.png);
}

.country-problem__ico--education {
  background-image: url(/news/item_img/ico_country-problem_education.png);
}

.country-problem__ico--sdgs {
  background-image: url(/news/item_img/ico_country-problem_sdgs.png);
}

.country-problem__ico--child-labour {
  background-image: url(/news/item_img/ico_country-problem_child-labour.png);
}

.country-problem__ico--trafficking {
  background-image: url(/news/item_img/ico_country-problem_trafficking.png);
}

.country-problem__ico--wash {
  background-image: url(/news/item_img/ico_country-problem_wash.png);
}

.country-problem__ico--health-nutrition {
  background-image: url(/news/item_img/ico_country-problem_health-nutrition.png);
}

.country-problem__ico--disaster {
  background-image: url(/news/item_img/ico_country-problem_disaster.png);
}

.wvj-work__list {
  list-style-type: square;
  padding-left: 25px;
}

.wvj-work__list li {
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.6;
}




.content__grid-container {
  display: grid;
}

.content__grid-container--country-problem {
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
}

.content__grid-item--country-problem-01 {
  grid-row: 1 / 3;
  grid-column: 1 / 2;
}

.content__grid-item--country-problem-02 {
  grid-row: 1 / 2;
  grid-column: 2 / 3;
}

.content__grid-item--country-problem-03 {
  grid-row: 2 / 3;
  grid-column: 2 / 3;
}

.content__grid-container--country-problem img {
  width: 100%;
}


@media screen and (max-width: 768px) {
  .header-news__img {
    width: 100%;
    height: 300px;
    background-size: cover;
  }
  .content__grid-container--country-problem {
    grid-template-rows: auto;
    grid-template-columns: auto;
  }
  .content__grid-item--country-problem-01 {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
  }
  .content__grid-item--country-problem-02 {
    grid-row: 2 / 3;
    grid-column: 1 / 2;
  }
  .content__grid-item--country-problem-03 {
    grid-row: 3 / 4;
    grid-column: 1 / 2;
  }
  .country-problem__item {
    line-height: 1.5em;
  }
}


/* About styles */

.main-visual--about {
  background: url(/about/item_img/index_mv_01.jpg) no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content__flex-item--bob-pierce-text {
  width: 55%;
}

.content__flex-item--bob-pierce-image {
  width: 40%;
  margin-right: 0;
}

.content__flex-item--bob-pierce-image figure {
  position: relative;
  display: inline-block;
  width: 100%;
}

.content__flex-item--bob-pierce-image img {
  width: 100%;  
}

.content__flex-item--bob-pierce-image figure figcaption {
  position: absolute;
  width: 100%;
  bottom: 0;
  padding: 10px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.50);
  text-align: center;
  font-size: 16px;
}

.content__flex-item--two-50 {
  width: 50%;
  margin-right: 0;
}

.content__flex-item--vision-statement {
  background: url(/about/item_img/index_img_statement_01.jpg) no-repeat;
  background-size: cover;
  height: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content__flex-item--mission-statement {
  background: url(/about/item_img/index_img_statement_02.jpg) no-repeat;
  background-size: cover;
  height: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content__wrapper--statement-detail {
  padding-left: 10%;
  padding-right: 10%;
}

.content__wrapper--statement-detail .content__heading-02 {
  color: #fff;
  line-height: 0.8;
}

.content__wrapper--statement-detail .content__heading-02 small {
  font-size: 14px;
}

.content__wrapper--statement-detail .content__text {
  color: #fff;
  text-align: center;
}

.content__flex-item--card {
  -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 linear 0s;
  /*border-radius: 10px;*/
  background-color: #fff;
}

.content__flex-item--card:hover {
  -webkit-box-shadow: 0px 1px 35px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 1px 35px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 1px 35px 0px rgba(0, 0, 0, 0.3);
}

.activities-detail__img {
  width: 100%;
}

.content__wrapper--activities-detail {
  padding: 30px 30px;
}

.content__wrapper--activities-detail h3 {
  background-color: #fff;
  color: #ff6600;
  font-size: 24px;
  text-align: center;
  background-image: none;
}

.content__grid-container--about-impact {
  grid-template-rows: 100px 100px 100px 100px 100px;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 10px;
  margin-bottom: 40px;
}

.content__grid-item--about-impact-01 {
  grid-row: 1 / 6;
  grid-column: 1 / 2;
  background: url(/about/item_img/index_img_impact_01.jpg) no-repeat;
  background-size: cover;
  position: relative;
}

.content__grid-item--about-impact-02 {
  grid-row: 1 / 4;
  grid-column: 2 / 3;
  background: url(/about/item_img/index_img_impact_02.jpg) no-repeat;
  background-size: cover;
  position: relative;
}

.content__grid-item--about-impact-03 {
  grid-row: 1 / 3;
  grid-column: 3 / 4;
  background: url(/about/item_img/index_img_impact_03.jpg) no-repeat;
  background-size: cover;
  position: relative;
}

.content__grid-item--about-impact-04 {
  grid-row: 4 / 6;
  grid-column: 2 / 3;
  background: url(/about/item_img/index_img_impact_04.jpg) no-repeat;
  background-size: cover;
  position: relative;
}

.content__grid-item--about-impact-05 {
  grid-row: 3 / 6;
  grid-column: 3 / 4;
  background: url(/about/item_img/index_img_impact_05.jpg) no-repeat;
  background-size: cover;
  position: relative;
}

.content__grid-container--about-impact img {
  width: 100%;
}

.content__text--about-impact {
  color: #fff;
  font-size: 16px;
  position: absolute;
  bottom: 0;
  text-align: center;
  display: inline-block;
  padding: 10px 15px;
  font-weight: bold;
  margin-bottom: 0;
  line-height: 1.4;
}

.activities-map__img {
  width: 100%;
}

.content__grid-container--about-important {
  grid-template-rows: 260px 260px;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
}

.content__grid-item--about-important-01 {
  grid-row: 1 / 3;
  grid-column: 1 / 2;
  background: url(/about/item_img/index_img_important_01.jpg) no-repeat;
  background-size: cover;
  position: relative;
}

.content__grid-item--about-important-02 {
  grid-row: 1 / 2;
  grid-column: 2 / 3;
  background: url(/about/item_img/index_img_important_02.jpg) no-repeat;
  background-size: cover;
  position: relative;
}

.content__grid-item--about-important-03 {
  grid-row: 2 / 3;
  grid-column: 2 / 3;
  background: url(/about/item_img/index_img_important_03.jpg) no-repeat;
  background-size: cover;
  position: relative;
}

.content__wrapper--important-detail {
  padding: 10px 30px;
  position: absolute;
  bottom: 0;
}

.content__wrapper--important-detail h3 {
  background-color: transparent;
  color: #fff;
  font-size: 24px;
  background-image: none;
  padding: 0;
  margin-bottom: 10px;
}

.content__wrapper--important-detail .content__text {
  color: #fff;
  font-size: 16px;
  line-height: 1.4;
  font-weight: bold;
}

.btn-round__text {
  color: #FFF;
  position: relative;
  padding-left: 24px;
  font-size: 16px;
}

.btn-round__text::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 7px;
  height: 7px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
  margin-top: -5px;
}

.btn-round--100 {
  width: 100%;
}

.btn-cta__wrapper {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .display-sp {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .main-visual--about {
    background: url(/about/item_img/index_mv_sp01.jpg) no-repeat;
    background-size: cover;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 0;
  }
  .main-visual-wrapper--about {
    bottom: -33%;
  }
  .content__flex-item--bob-pierce-text {
    width: 100%;
    margin-right: 0;
  }

  .content__flex-item--bob-pierce-image {
    width: 100%;
  }
  .content__flex-item--two-50 {
    width: 100%;
    margin-bottom: 0;
  }
  .content__wrapper--statement-detail {
    padding-left: 4%;
    padding-right: 4%;
  }
  .content__grid-container--about-impact {
    grid-template-rows: 500px 350px 239px 239px 350px;
    grid-template-columns: auto;
  }

  .content__grid-item--about-impact-01 {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
  }
  .content__grid-item--about-impact-02 {
    grid-row: 2 / 3;
    grid-column: 1 / 2;
  }
  .content__grid-item--about-impact-03 {
    grid-row: 3 / 4;
    grid-column: 1 / 2;
  }
  .content__grid-item--about-impact-04 {
    grid-row: 4 / 5;
    grid-column: 1 / 2;
  }
  .content__grid-item--about-impact-05 {
    grid-row: 5 / 6;
    grid-column: 1 / 2;
  }
  .content__grid-container--about-important {
    grid-template-rows: 389px 300px 300px;
    grid-template-columns: auto;
  }

  .content__grid-item--about-important-01 {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
  }
  .content__grid-item--about-important-02 {
    grid-row: 2 / 3;
    grid-column: 1 / 2;
  }
  .content__grid-item--about-important-03 {
    grid-row: 3 / 4;
    grid-column: 1 / 2;
  }
  .display-pc {
    display: none;
  }
}


/* tv-schedule styles */

.main-visual--shien-20201215 {
  background: url(/news/item_img/shien-20201215_mv_01.jpg) no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-visual__heading-01--shien-20201215 {
  width: 65%;
}

.main-visual__btn--cs {
  width: 50%;
}

@media screen and (max-width: 768px) {
  .main-visual--shien-20201215 {
    background: url(/news/item_img/shien-20201215_mv_sp01.jpg) no-repeat center;
    background-size: cover;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 0;
  }
  .main-visual-wrapper--shien-20201215 {
    bottom: -28%;
  }
}
