@charset "utf-8";

/*-----------------------------------------------
 * Common
 * Index
 * Detail
-------------------------------------------------*/
/*-----------------------------------------------
 * Common
-------------------------------------------------*/
/* #fullWrap */
#fullWrap.is-subpage {
  display: flex;
  min-width: 1200px;
  flex-direction: column;
  min-height: 100vh;
}

@media screen and (max-width:1024px) {
  #fullWrap.is-subpage {
    min-width: 100%;
  }
}

/* .subContWrap */
.subContWrap {
  display: flex;
  padding-top: 20px;
  padding-bottom: 100px;
}

@media screen and (max-width:767px) {
  .subContWrap {
    display: block;
    padding-top: 0;
    padding-bottom: 60px;
  }
}

/* .subSection */
.subSection {
  width: 86vw;
  padding-top: 50px;
}

@media screen and (max-width:768px) {
  .subSection {
    width: 100%;
    padding-top: 100px;
  }
}

/* .sub */
.sub.is-subpage {
  position: sticky;
  top: 24px;
  z-index: 10;
}

@media screen and (max-width:767px) {
  .sub.is-subpage {
    position: absolute;
    top: auto;
  }
}

/* footer */
.footer {
  margin-top: auto;
}

/**
 * page title
 */
.subSection__title {
  font-family: "Josefin Sans", sans-serif;
  font-size: 6.8rem;
  line-height: 1;
  color: #fc77a3;;
  font-weight: 400;
  letter-spacing: .5rem;
  margin-bottom: 3rem;
  padding-left: 70px;
}

@media screen and (max-width:767px) {
  .subSection__title {
    font-size: 4rem;
    padding-left: 24px;
    margin-bottom: 0px;
  }
}

/**
 * back top
 */
.backLinkWrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
}

.backLink {
  border: 1px dashed #fc77a3;;
  border-radius: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fc77a3;;
  font-size: 14px;
  font-weight: 600;
  height: 42px;
  padding: 0 30px;
  text-decoration: none;
  transition: all .3s ease;
}

.backLink:hover {
  background-color: #fc77a3;;
  color: #fff;
}

@media screen and (max-width:767px) {
  .backLinkWrap {
    margin-top: 40px;
  }

  .backLink {
    font-size: 12px;
    font-size: 1.2rem;
    height: 30px;
  }
}


/*-----------------------------------------------
 * Index
-------------------------------------------------*/
/**
 * newsLists
 */
/* item */
.newsLists__item {
  padding-left: 70px;
  position: relative;
}

.newsLists__item:before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: url(../../assets/img/index/news_line.svg) repeat-x;
  position: absolute;
  left: 0;
  bottom: 0;
}

@media screen and (max-width:767px) {
  .newsLists__item {
    padding-left: 24px;
  }
}

/* a */
.newsLists__link {
  color: #000;
  display: flex;
  align-items: center;
  padding: 20px 90px 20px 0;
  position: relative;
  text-decoration: none;
  transition: color .3s ease;
}

.newsLists__link:hover {
  color: #fc77a3;;
}

.newsLists__link:before {
  content: '';
  background-color: #fc77a3;;
  display: block;
  width: 24px;
  height: 24px;
  -webkit-mask-image: url(../../assets/img/common/icon_arrow.svg);
  mask-image: url(../../assets/img/common/icon_arrow.svg);
  margin: auto;
  position: absolute;
  top: 0;
  right: 40px;
  bottom: 0;
  transition: transform .3s ease;
}

.newsLists__link:hover:before {
  transform: translateX(10px);
}

@media screen and (max-width:767px) {
  .newsLists__link {
    align-items: baseline;
    padding: 20px 48px 24px 0;
  }

  .newsLists__link:before {
    width: 18px;
    height: 18px;
    right: 24px;
  }
}

/* date */
.newsLists--date {
  background-color: #fc77a3;;
  border-radius: 30px;
  color: #fff;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  height: 30px;
  margin-right: 20px;
  padding: 6px 16px;
  white-space: nowrap;
}

@media screen and (max-width:767px) {
  .newsLists--date {
    font-size: 10px;
    font-size: 1rem;
    height: 20px;
    margin-right: 8px;
    padding: 4px 10px;
  }
}

/* title */
.newsLists--title {
  font-size: 16px;
  font-weight: 600;
}

@media screen and (max-width:767px) {
  .newsLists--title {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

/**
 * pager
 */
.pagingListsWrap {
  margin-top: 48px;
}

/* lists */
.pagingLists {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* item */
.pagingLists__item {
  width: 40px;
  height: 40px;
  margin: 0 5px;
}

@media screen and (max-width:767px) {
  .pagingLists__item {
    width: 30px;
    height: 30px;
  }
}

/* a, active */
.pagingLists__link {
  border: 1px dashed #fc77a3;;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  transition: all .3s ease;
}

.pagingLists__link:hover {
  background-color: #fc77a3;;
  color: #fff;
}

.pagingLists__active {
  background-color: #fc77a3;;
  border: 1px dotted #fc77a3;;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}


/*-----------------------------------------------
 * Detail
-------------------------------------------------*/
/**
 * title
 */
.newsDetail__title {
  color: #000;
  display: flex;
  align-items: center;
  padding: 20px 90px 20px 70px;
  position: relative;
}

.newsDetail__title:before {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: url(../../assets/img/index/news_line.svg) repeat-x;
  position: absolute;
  left: 0;
  bottom: 0;
}

@media screen and (max-width:768px) {
  .newsDetail__title {
    align-items: baseline;
    padding: 16px 10px;
  }
}

/* date */
.newsDetail__title--date {
  background-color: #fc77a3;;
  border-radius: 30px;
  color: #fff;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  height: 30px;
  margin-right: 20px;
  padding: 6px 16px;
  white-space: nowrap;
}

@media screen and (max-width:767px) {
  .newsDetail__title--date {
    font-size: 10px;
    font-size: 1rem;
    height: 20px;
    margin-right: 8px;
    padding: 4px 10px;
  }
}

/* text */
.newsDetail__title--text {
  font-size: 16px;
  font-weight: 600;
}

@media screen and (max-width:767px) {
  .newsDetail__title--text {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

/**
 * textWrap
 */
/* text */
.newsDetail__text {
  font-size: 16px;
  line-height: 2;
  padding: 50px 70px;
}

.newsDetail__text a {
  color: #fc77a3;;
}

@media screen and (max-width:767px) {
  .newsDetail__text {
    font-size: 12px;
    font-size: 1.2rem;
    padding: 30px 24px;
  }
}

/* img */
.newsDetail__textWrap img {
  max-width: 100%;
  height: auto !important;
}

/* youtube */
.ytWrap {
  display: block;
  width: 100%;
  padding-top: 56.25%;
  position: relative;
}

.ytWrap iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}