@charset "utf-8";

/*----------------------------------------
コンテンツ内の各記述を明記します。
・トップ
----------------------------------------*/




/* --------------------- kv --------------------- */
.topKv {
  padding: 74px 0 50px;
  background: url("../img/mv_bg.jpg") no-repeat center top/cover
}
.topKv_wrap {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
}
.topKv_copyEn {
  position: absolute;
  right: 20px;
  bottom: 70px;
  transform-origin:right bottom;
  transform: rotate(90deg);
  line-height: 1;
  font-weight: 300;
}
.topKv_copyEn span {
  position: relative;
}
.topKv_copyEn span:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 140px;
  background: #F87A96;
  top: 50%;
  transform: translateY(-50%);
  animation: slideDownFade 2s infinite; /* アニメーション適用 */
}
@keyframes slideDownFade {
  0% {
    opacity: 1;
    transform: translateY(-50%) translateX(0); /* 初期位置 */
  }
  50% {
    opacity: 1;
    transform: translateY(-50%) translateX(30px); /* 回転後の"下"（X軸正方向）に20px移動 */
  }
  90% {
    opacity: 0; /* フェードアウト */
    transform: translateY(-50%) translateX(40px); /* さらに"下"に30px移動 */
  }
  100% {
    opacity: 0;
    transform: translateY(-50%) translateX(0); /* 初期位置に戻る */
  }
}
.topKv_label {
  position: absolute;
  bottom: 25px;
  right: 90px;
  width: 100%;
  max-width: 195px;
}
.topKv_copy {
  font-size: 46px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.topKv_img_wrap {
  width: 100%;
  max-width: 660px;
  margin-left: 20px;
}
.topKv_img img {
  vertical-align: bottom;
}
.topKv .c-Cta {
  margin-top: 70px;
}
@media only screen and (max-width: 960px) 
{ /* SP */
.topKv {
  padding: 60px 20px 50px;
  background: url("../img/mv_bg.jpg") no-repeat right top/cover
}
.topKv_wrap {
  max-width: 100%;
  margin: 0 auto;
  display: block;
}
.topKv_copy {
  font-size: 10vw;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.1em;
}
.topKv_copyEn span:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100px;
  background: #F87A96;
  top: 50%;
  transform: translateY(-50%);
}
.topKv_label {
  position: absolute;
  bottom: 10px;
  right: 30px;
  width: 100%;
  max-width: 40%;
}
.topKv_img_wrap {
  max-width: 100%;
  width: 100%;
  margin-left: 0;
}
.topKv .c-Cta {
  margin-top: 30px;
}
}

/* ----------------- news ----------------- */
.news{
padding: 100px 30px;
}

.news_wrap{
display:flex;
}

.news_ttl{
width:240px;
}

.news_item{
flex:1;
}

.news_item li:not(:last-child){
    margin-bottom: 25px;
    border-bottom: 2px dotted #ddd;
    padding-bottom: 25px;
}

.news_item li{
display:flex;
}

.news_item_date{
width:120px;
margin-right:20px;
font-size:16px;
font-weight:700;
}

.news_item_cat{
width: 140px;
    margin-right: 20px;
    background: #F8A8BA;
    color: #fff;
    flex-shrink: 0;
    text-align: center;
    padding: 3px 5px;
    position: relative;
    font-size: 12px;
    height: 32px;
    box-sizing: border-box;
    border-radius: 100px;
}

.news_item_txt{
flex:1;
font-size:16px;
}

@media only screen and (max-width: 960px) {
.news_item_txt{
font-size:15px;
}
.news_item_date{
    margin-right: 10px;
	width:auto;
}

.news_item_date,.news_item_cat{
display:inline-block;
}
.news_item_cat {
    width: auto;
    height: auto;
padding: 0px 13px;
}
.news_item li {
    display: block;
}
    .news {
        padding: 60px 20px;
    }
.news_ttl{
width:100%;
}
.news_wrap{
display:block;
}
}

/* ----------------- overview ----------------- */
.overview {
  padding: 100px 30px;
  background: #FFF5F8;
}
.overview_ttl {
  font-size: 38px;
  font-weight: 700;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 60px;
}
.overview_ttl span {
  border-bottom: 2px solid #6B6570;
  display: inline-block;
}
.overview_wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 25px;
  margin-bottom: 60px;
}
.overview_item {
  background: #fff;
  border-radius: 20px;
  padding: 20px 25px 35px;
}
.overview_item_img {
  max-width: 94px;
  margin: 0 auto 10px;
}
.overview_item_ttl {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.6;
  text-align: center;
}
.overview_copy {
  padding: 25px 40px;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.6;
  text-align: center;
  background: #fff;
  border-radius: 20px;
}
@media only screen and (max-width: 960px) 
{ /* SP start */
.overview {
  padding: 60px 20px;
  background: #FFF5F8;
}
.overview_ttl {
  font-size: 32px;
  margin-bottom: 40px;
}
.overview_ttl span {
  border-bottom: 2px solid #6B6570;
  display: inline-block;
}
.overview_wrap {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 20px;
  margin-bottom: 40px;
}
.overview_item {
  background: #fff;
  border-radius: 20px;
  padding: 20px 20px 25px;
}
.overview_item_img {
  max-width: 30%;
  margin: 0 auto 5px;
}
.overview_item_ttl {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
}
.overview_copy {
  padding: 20px 20px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
  background: #fff;
  border-radius: 20px;
}
}








/* ----------------- point ----------------- */
.point {
  padding: 100px 30px;
  background: #FFF5F8;
}
.point_wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px;
}
.point_item {
  background: #fff;
  border-radius: 20px;
}
.point_itemDesc {
  padding: 30px 20px;
}
.point_itemDesc_num {
  font-size: 18px;
  font-weight: 300;
  color: #F8A8BA;
  position: relative;
  line-height: 1;
  margin-bottom: 40px;
}
.point_itemDesc_num:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  background: #F8A8BA;
  width: 30px;
  height: 1px;
}
.point_itemDesc_num span {
  font-size: 30px;
}
.point_itemDesc_ttl {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 30px;
}
@media only screen and (max-width: 960px) 
{ /* SP start */
.point {
  padding: 60px 20px;
}
.point_wrap {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 20px;
}
.point_item {
  background: #fff;
  border-radius: 20px;
}
.point_itemDesc {
  padding: 25px 20px;
}
.point_itemDesc_num {
  font-size: 16px;
  font-weight: 300;
  color: #F8A8BA;
  position: relative;
  line-height: 1;
  margin-bottom: 30px;
}
.point_itemDesc_num:after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  background: #F8A8BA;
  width: 30px;
  height: 1px;
}
.point_itemDesc_num span {
  font-size: 25px;
}
.point_itemDesc_ttl {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
}
}





/* ----------------- program ----------------- */
.program {
  padding: 100px 30px;
}
.programBlock {
  border-radius: 20px;
  border: 4px solid #E9E9E9;
  padding: 50px;
  position: relative;
}
.programBlock:not(:last-child) {
  margin-bottom: 50px;
}
.programBlock_num {
  display: inline-block;
  line-height:1;
  font-size: 40px;
  font-weight: 300;
  padding: 0 12px;
  position: absolute;
  top: -20px;
  left: 38px;
  background: #fff;
}
.programBlock_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.programBlock_img {
  max-width: 200px;
  flex-shrink: 0;
  margin-left: 70px;
}
.programBlock_desc_ttl {
  font-size: 23px;
  font-weight: 700;
  color: #F87A96;
  line-height: 1;
}
.programBlock_desc_txt {
  margin: 20px 0;
}
.programBlock_list_ttl {
  position: relative;
  text-align: center;
  margin-bottom: 15px;
}
.programBlock_list_ttl:after {
  content: "";
  position: absolute;
  top: 50%;
  left:50%;
  transform: translateY(-50%) translateX(-50%);
  background: #F8A8BA;
  width: 100%;
  height: 1px;
  z-index: 1;
}
.programBlock_list_ttl span {
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
  display: inline-block;
  padding: 0 15px;
  background: #fff;
  color: #F87A96;
  position: relative;
  z-index: 2;
}
.programBlock_list_item {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  position: relative;
  padding-left:20px; 
}
.programBlock_list_item:not(:last-child) {
  margin-bottom: 15px;
}
.programBlock_list_item:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: #F8A8BA;
  border-radius: 100px;
  left: 0;
}
@media only screen and (max-width: 960px) 
{ /* SP start */
.program {
  padding: 60px 20px;
}
.programBlock {
  border-radius: 20px;
  border: 4px solid #E9E9E9;
  padding: 35px 20px 30px;
  position: relative;
}
.programBlock:not(:last-child) {
  margin-bottom: 30px;
}
.programBlock_num {
  display: inline-block;
  line-height:1;
  font-size: 30px;
  font-weight: 300;
  padding: 0 10px;
  position: absolute;
  top: -20px;
  left: 10px;
  background: #fff;
}
.programBlock_inner {
  display: block;
}
.programBlock_img {
  max-width: 50%;
  flex-shrink: 0;
  margin-left: 0;
  margin: 25px auto 0;
}
.programBlock_desc_ttl {
  font-size: 18px;
  font-weight: 700;
  color: #F87A96;
  line-height: 1;
}
.programBlock_desc_txt {
  margin: 20px 0;
  font-size: 15px;
}
.programBlock_list_ttl {
  position: relative;
  text-align: center;
  margin-bottom: 15px;
}
.programBlock_list_ttl:after {
  content: "";
  position: absolute;
  top: 50%;
  left:50%;
  transform: translateY(-50%) translateX(-50%);
  background: #F8A8BA;
  width: 100%;
  height: 1px;
  z-index: 1;
}
.programBlock_list_ttl span {
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  display: inline-block;
  padding: 0 15px;
  background: #fff;
  color: #F87A96;
  position: relative;
  z-index: 2;
}
.programBlock_list_item {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  position: relative;
  padding-left:20px; 
  font-size: 15px;
}
.programBlock_list_item:not(:last-child) {
  margin-bottom: 15px;
}
.programBlock_list_item:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: #F8A8BA;
  border-radius: 100px;
  left: 0;
}
}



/* ----------------- faq ----------------- */
.faq {
  padding: 100px 30px;
}
/*アコーディオン全体*/
.accordion-area{
  list-style: none;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.accordion-area li{
  background-color: #FFF5F8;
  margin-bottom: 20px;
  border-radius: 12px;
}
/*アコーディオンタイトル*/
.accordion-area .faq_title {
  position: relative;/*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-weight: normal;
  padding:26px 20px;
  transition: all .5s ease;
  color: #6B6570;
  font-weight: 700;
  display: flex;
  align-items: flex-start;
  background: #FFF5F8;
  font-size: 18px;
  line-height: 1.5;
  border-radius: 12px;
}
.accordion-area .faq_title span.icon {
  margin-right: 20px;
  flex-shrink: 0;
  font-size:30px;
  font-weight: 400;
  line-height: 100%;
  color: #F8A8BA;
}
/*アイコンの＋×*/
.accordion-area .faq_title::after{    
  content: " ";
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  right: 20px;
  top: 30px;
  background: url(../img/icon_open.png) no-repeat left top;
  background-size: contain;
  transition: .3s;
}
/*　closeというクラスがついたら形状変化　*/
.accordion-area .faq_title.close::after{
  content: " ";
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  right: 20px;
  top: 30px;
  background: url(../img/icon_close.png) no-repeat left top;
  background-size: contain;
}
/*アコーディオンで現れるエリア*/
.accordion-area .faq_box {
  display: none;/*はじめは非表示*/
  padding:20px 40px 20px 20px;
}
.accordion-area .faq_answer {
  display: flex;
  align-items: flex-start;
}
.accordion-area .faq_answer span.icon {
  margin-right: 20px;
  flex-shrink: 0;
  font-size:30px;
  font-weight: 400;
  color:#F8A8BA;
  line-height: 100%;
}
.faq_answer_txt {
  display: inline-block;
  line-height: 1.8;
  font-size: 15px;
}

@media only screen and (max-width: 960px) 
{ /* SP start */
.faq {
  padding: 60px 20px;
}
.accordion-area{
  margin:50px auto 0;
}
.faq_question {
  font-size: 16px;
}
.accordion-area li{
  border-radius: 20px;
  margin-bottom: 15px;
}
.accordion-area .faq_title span.icon {
  margin-right: 18px;
  font-size:25px;
}
/*アイコンの＋×*/
.accordion-area .faq_title::after{    
  content: " ";
  position: absolute;
  display: block;
  width: 18px;
  height: 18px;
  right: 10px;
  top: 40%;
  background: url(../img/icon_open.png) no-repeat left top;
  background-size: contain;
}
/*　closeというクラスがついたら形状変化　*/
.accordion-area .faq_title.close::after{
  content: " ";
  position: absolute;
  display: block;
  width: 18px;
  height: 18px;
  right: 10px;
  top: 40%;
  background: url(../img/icon_close.png) no-repeat left top;
  background-size: contain;
}
/*アコーディオンタイトル*/
.accordion-area .faq_title {
  position: relative;/*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-size:15px;
  font-weight: normal;
  padding:20px 40px 20px 20px; 
  transition: all .5s ease;
  font-weight: 700;
  display: flex;
}
/*アコーディオンで現れるエリア*/
.accordion-area .faq_box {
  display: none;/*はじめは非表示*/
  padding:20px;
}
.accordion-area .faq_answer span.icon {
  font-size:25px;
  margin-right: 18px;
}
}










/* ----------------- xxxxxxxxxxxxx ----------------- */


@media only screen and (max-width: 960px) 
{ /* SP start */

}





/* ----------------- xxxxxxxxxxxxx ----------------- */


@media only screen and (max-width: 960px) 
{ /* SP start */

}





/* ----------------- xxxxxxxxxxxxx ----------------- */


@media only screen and (max-width: 960px) 
{ /* SP start */

}