@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Poppins:wght@400;500;600;700&display=swap');

#contents-wrap *,
#contents-wrap *:before,
#contents-wrap *:after {
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box; 
  -o-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
#contens-inner {
  width: 100%;
}
#contents {
  width: 100%;
  font-size: 18px;
  line-height: 2;
}
img{
  vertical-align: bottom;
}
strong{
  font-weight: bold;
}
.sp-only{
  display: none;
}

@media screen and (max-width: 768px) {
  #kittenWrap{
    background: #fff;
  }
  #contents {
    font-size: 16px;
    line-height: 1.6;
  }
  img{
    height: auto;
  }
  .pc-only{
    display: none;
  }
  .sp-only{
    display: block;
  }
}

/* パンくず */
.bread-crumb{
  width: 962px;
  margin: 0 auto;
}

/* 見出し */
h2{
  width: auto;
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
}
.heading{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  margin: 0 0 50px;
  background: #0a746a;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  /* 見出し */
  section h2{
    padding: 0;
    background: no-repeat;
  }
  section h2 > span{
    margin: 0;
  }
  section h3{
    border: none;
    background: transparent;
  }
  .heading{
    min-height: 80px;
    margin-bottom: 32px;
    font-size: 24px;
  }

}

/* テキスト */
.intro-txt{
  margin: 0 0 40px;
}

@media screen and (max-width: 768px) {
  .intro-txt{
    margin-bottom: 26px;
  }
}


/* ボタン */
.btnGroup{
  display: flex;
  justify-content: center;
}
.btnGroup .btn{
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 250px;
  height: 60px;
  border-radius: 100vh;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
}
.btnGroup .btn:hover{
  opacity: .7;
}
.btnGroup .btn span{
  position: relative;
  padding-left: 26px;
}
.btnGroup .btn span::before{
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-family: fontawesome;
  font-weight: normal;
}

/* お問い合わせボタン */
.btnGroup .btn--contact{
  background: #fa7418;
}
.btnGroup .btn--contact span::before{
  content: "\f0e0";
}

@media screen and (max-width: 768px) {
  .btnGroup .btn{
    height: 60px;
    font-size: 16px;
  }
}


/* 本文共通 */
.conts{
  padding: 0 0 80px;
}
.conts-bg--gy{
  background: #f9fafa;
}
.mv-inner,
.conts-inner{
  max-width: 990px;
  margin: 0 auto;
  padding: 0 15px;
}

@media screen and (max-width: 768px) {
  .conts{
    padding-bottom: 54px;
  }
}



/* MV */
.mv{
  height: 406px;
  margin: 0 0 20px;
  background: #fff7e9 url(/home/partner/images/benefits/mv_bg-pc.png) no-repeat center right / contain;
}
.mv-inner{
  display: flex;
  align-items: center;
  height: 100%;
}
.mv-detail{
  padding: 25px;
  max-width: 600px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .35);
}
.mv-heading{
  margin: 0 0 25px;
  font-size: 42px;
  font-weight: bold;
  line-height: 1.45;
}
.mv-heading .point{
  color: #fa7418;
  font-size: 46px;
}
.mv-heading .border{
  background: linear-gradient(transparent 75%, #ffdebe 75%);
}
.mv-txt{
  margin: 0 0 35px;
  font-size: 16px;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  .mv{
    height: auto;
    background: #fff7e9;
  }
  .mv-inner{
    padding: 20px 15px;
  }
  .mv-detail{
    padding: 0;
    background: none;
  }
  .mv-heading{
    margin-bottom: 18px;
    color: #333;
    font-size: 28px;
  }
  .mv-heading .point{
    font-size: 30px;
  }
  .mv-txt{
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.7;
  }
}


/* プロモーション・タイアップ例 アンカー */
.anchorList{
  display: flex;
  justify-content: space-between;
  margin: 0 0 65px;
}
.anchorList-item{
  position: relative;
  width: calc((100% - 60px) / 4);
  border-radius: 10px;
  box-shadow: 4px 4px 15px rgb(85, 85, 85, .25);
  background: #fff;
  text-align: center;
}
.anchorList-link{
  display: block;
  padding: 25px 0 35px;
  text-decoration: none;
}
.anchorList-link::after{
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 10px;
  left: 50%;
  border-top: 14px solid #7ec7d6;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  transform: translateX(-50%);
}
.anchorList-img{
  margin: 0 auto 15px;
  max-width: 118px;
}
.anchorList-txt{
  color: #0d746e;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .anchorList{
    display: block;
    margin-bottom: 42px;
  }
  .anchorList-item{
    width: 100%;
    margin-bottom: 15px;
    box-shadow: 2px 2px 8px rgb(85, 85, 85, .25);
  }
  .anchorList-item:last-of-type{
    margin-bottom: 0;
  }
  .anchorList-link{
    display: flex;
    align-items: center;
    padding: 15px 40px 15px 10px;
  }
  .anchorList-link::after{
    right: 10px;
    bottom: calc(50% - 10px);
    left: auto;
    transform: translateY(-50%);
    border-top: 10px solid #7ec7d6;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
  }
  .anchorList-img{
    width: 80px;
    margin: 0;
  }
  .anchorList-txt{
    width: calc(100% - 90px);
    margin-left: 10px;
  }
  
}



/* プロモーション・タイアップ例 本文 */
.case-heading{
  position: relative;
  margin: 0 0 30px;
  padding: 0 0 5px 92px;
  border-bottom: 4px solid #318785;
  color: #0d746e;
  font-size: 32px;
  font-weight: bold;
}
.case-heading::before{
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 68px;
  height: 55px;
}
.case--mail .case-heading::before{
  background: url(/home/partner/images/benefits/anchor_img01.png) no-repeat center / contain;
}
.case--tieup .case-heading::before{
  background: url(/home/partner/images/benefits/anchor_img02.png) no-repeat center / contain;
}
.case--campaign .case-heading::before{
  background: url(/home/partner/images/benefits/anchor_img03.png) no-repeat center / contain;
}
.case--contest .case-heading::before{
  background: url(/home/partner/images/benefits/anchor_img04.png) no-repeat center / contain;
}

.case .intro-txt{
  margin: 0 30px 40px;
}

.case{
  margin: 0 0 60px;
}
.case:last-of-type{
  margin: 0;
}
.case-detail{
  background: #fff;
  margin: 0 30px;
  border: 1px solid #8fb9b5;
  border-radius: 10px;
  overflow: hidden;
}
.case-title{
  display: flex;
  align-items: center;
  padding: 14px 25px;
  background: #1d7685;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
}
.descBlock{
  padding: 20px 30px;
}
.descBlock-item{
  display: flex;
  align-items: center;
  margin: 0 0 30px;
  padding: 0 0 30px;
  border-bottom: 1px solid #ccc;
}
.descBlock-item:last-of-type{
  margin: 0;
  padding: 0;
  border-bottom: none;
}
.descBlock-img{
  margin-right: 30px;
}
.descBlock-detail{
  width: 100%;
}
.descBlock-ttl{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 15px;
  padding: 0 8px 10px;
  border-bottom: 3px solid #adbdba;
  font-size: 24px;
  font-weight: bold;
}
.descBlock-ttl::after{
  position: absolute;
  left: 0;
  bottom: -3px;
  content: "";
  display: inline-block;
  width: 100px;
  height: 3px;
  background: #23889f;
}
.descBlock-ttl span{
  font-size: 16px;
}
.descBlock-txt{
  margin: 0 10px;
}

.case--mail .descBlock{
  display: flex;
}
.case--mail .descBlock-item{
  width: 50%;
  margin: 0 30px 0 0;
  padding: 15px 30px 15px 0;
  border-right: 2px solid #ccc;
  border-bottom: none;
}
.case--mail .descBlock-item:nth-child(even){
  margin: 0;
  padding: 0;
  border: none;
  width: calc(50% - 32px);
}
.case--mail .descBlock-img{
  display: block;
}
.case--mail .descBlock-txt{
  font-size: 22px;
  font-weight: bold;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .case{
    margin-bottom: 40px;
  }

  .case-heading{
    margin-bottom: 20px;
    padding: 5px 0 5px 60px;
    font-size: 20px;
  }
  .case-heading::before{
    left: 7px;
    width: 46px;
    height: 37px;
  }

  .case .intro-txt{
    margin: 0 10px 26px;
  }

  .case-detail{
    margin: 0 10px;
  }
  .case-title{
    padding: 15px;
    font-size: 20px;
  }
  .descBlock{
    padding: 20px 15px;
  }
  .descBlock-item{
    display: block;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .descBlock-img{
    width: 160px;
    margin: 0 auto 20px;
  }
  .descBlock-detail{
    margin: 0 10px;
    width: calc(100% - 20px);
  }
  .descBlock-ttl{
    flex-wrap: wrap;
    padding: 0 5px 5px;
    font-size: 18px;
    line-height: 1.5;
  }
  .descBlock-ttl span{
    width: 100%;
    margin-top: 5px;
    font-size: 14px;
    text-align: right;
  }
  .descBlock-txt{
    margin: 0 5px;
  }

  .case--mail .descBlock{
    display: block;
  }
  .case--mail .descBlock-item{
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0 0 20px;
    padding: 0 0 20px;
    border-right: none;
    border-bottom: 1px solid #ccc;
  }
  .case--mail .descBlock-img{
    width: 60px;
    margin: 0 10px 0 0;
  }
  .case--mail .descBlock-txt{
    width: calc(100% - 70px);
    font-size: 18px;
    text-align: center;
  }
  .case--mail .descBlock-item:nth-child(even){
    width: 100%;
  }
}




/* ご支援金額とロゴ掲載について */
.plan-img{
  max-width: 600px;
  margin: 0 auto 30px;
}
.plan-img img{
  margin: 0 0 8px;
  border: 1px solid #ccc;
}
figcaption{
  color: #555;
  font-size: 14px;
  text-align: right;
}
.point-heading{
  position: relative;
  margin: 0 0 10px;
  padding-left: 21px;
  color: #0d746e;
  font-size: 20px;
  font-weight: bold;
}
.point-heading::before{
  position: absolute;
  top: calc(.5em - 6px);
  left: 0;
  content: "";
  display: inline-block;
  width: 6px;
  height: 30px;
  border-radius: 100vh;
  background: #0d746e;
}
.point-txt{
  margin: 0 0 28px 10px;
}

.noteBlock{
  padding: 30px;
  border-radius: 10px;
  background: #f9fafa;
}
.noteBlock-item{
  margin-left: 1em;
  font-size: 16px;
  line-height: 1.5;
  text-indent: -1em;
}
@media screen and (max-width: 768px) {
  .point-heading{
    font-size: 18px;
  }
  .point-heading::before{
    top: calc(.5em - 4px);
    height: 28px;
  }

  .noteBlock{
    padding: 15px;
  }
  .noteBlock-item{
    font-size: 14px;
  }
}



/* お問い合わせ・ご相談 */
.conts--contact{
  box-shadow: 4px 4px 15px rgb(85 85 85 / 25%);
}
.contact{
  display: flex;
  align-items: center;
}
.contact-img{
  margin-right: 30px;
}
.contact-detail{
  width: calc(100% - 430px);
}
.conts--contact .intro-txt{
  margin: 0 0 40px;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .contact{
    display: block;
  }
  .contact-img{
    margin: 0 0 20px;
  }
  .contact-detail{
    width: 100%;
  }
  .conts--contact .intro-txt{
    margin-bottom: 30px;
  }
}



