@charset "UTF-8";
/**
 * ラパーク岸和田ラパーク岸和田トップページCSS
 * Created on: 2023.06.13
 */
/*==========================================================================
Break Point
============================================================================*/
/*==========================================================================
Font
============================================================================*/
/*==========================================================================
Color
カラーコード変換 https://tech-unlimited.com/color.html
============================================================================*/
/*==========================================================================
box shadow
box-shadowジェネレータ https://www.bad-company.jp/box-shadow
==========================================================================*/
/*==========================================================================
Line Height
==========================================================================*/
/*==========================================================================
Font size
==========================================================================*/
/*==========================================================================
Font size
==========================================================================*/
/*==========================================================================
Easing
Easingの動きが一覧でわかるチートシート https://easings.net/ja
Easingジェネレーター https://easings.co/
==========================================================================*/
/*--------------------------------------------------------
トップページ
--------------------------------------------------------*/
#qc_navi {
  padding: 50px 0;
}
@media screen and (max-width: 768px) {
  #qc_navi {
    padding: 20px 0 0px;
  }
}
#qc_navi .qc_link {
  width: 89%;
  max-width: 800px;
  margin: 0 auto 15px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  #qc_navi .qc_link {
    width: 92%;
  }
  #qc_navi .qc_link:after {
    content: "";
    width: 33.3%;
  }
}
#qc_navi .qc_link .qc_link_item {
  width: 25%;
  text-align: center;
  align-self: baseline;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #qc_navi .qc_link .qc_link_item {
    width: 33.3%;
    margin-bottom: 15px;
  }
}
#qc_navi .qc_link .qc_link_item:nth-child(1) {
  border-left: 1px solid #00A9AC;
}
@media screen and (max-width: 768px) {
  #qc_navi .qc_link .qc_link_item:nth-child(3) {
    border-right: 1px solid #00A9AC;
  }
}
#qc_navi .qc_link .qc_link_item:nth-child(4) {
  border-right: 1px solid #00A9AC;
}
@media screen and (max-width: 768px) {
  #qc_navi .qc_link .qc_link_item:nth-child(4) {
    border-right: none;
  }
}
@media screen and (max-width: 768px) {
  #qc_navi .qc_link .qc_link_item:nth-child(6) {
    border-right: 1px solid #00A9AC;
  }
}
#qc_navi .qc_link .qc_link_item:nth-child(8) {
  border-right: 1px solid #00A9AC;
}
#qc_navi .qc_link .qc_link_item:nth-child(n+2) {
  border-left: 1px solid #00A9AC;
}
#qc_navi .qc_link .qc_link_item a {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}
#qc_navi .qc_link .qc_link_item a:hover {
  opacity: 0.8;
}
#qc_navi .qc_link .qc_link_item a img {
  width: 52.7%;
  display: block;
  margin: 0 auto 2px;
}
#qc_navi .qc_link .qc_link_item a svg {
  width: 52.7%;
  display: block;
  margin: 0 auto 2px;
}
#qc_navi .qc_link .qc_link_item a p {
  font-weight: 500;
  color: #00A9AC;
}
@media screen and (max-width: 768px) {
  #qc_navi .qc_link .qc_link_item a p {
    font-size: 13px;
  }
}

#t_news {
  padding: 25px 0 60px;
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(51, 51, 51, 0.5);
}
@media screen and (max-width: 768px) {
  #t_news {
    padding: 30px 0 40px;
  }
}
#t_news .title {
  font-family: "Noto Serif JP", sans-serif;
  color: #00A9AC;
  font-size: 3.4rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  #t_news .title {
    font-size: 2.8rem;
  }
}
#t_news .title.have_sub {
  margin-bottom: 15px;
}
#t_news .sub_title {
  color: #666666;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 70px;
}
#t_news .module_article {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #t_news .module_article {
    flex-wrap: wrap;
  }
}
#t_news .module_article:after {
  content: "";
  width: 22.5%;
  display: block;
}
#t_news .module_article::before {
  content: "";
  width: 22.5%;
  display: block;
  order: 1;
}
#t_news .module_article .module_article_item {
  width: 22.5%;
}
@media screen and (max-width: 768px) {
  #t_news .module_article .module_article_item {
    width: 100%;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  #t_news .module_article .module_article_item:first-child {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #t_news .module_article .module_article_item:first-child a {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
  }
}
#t_news .module_article .module_article_item:first-child a .news_img {
  width: 100%;
  max-width: 540px;
  /* 1:1のボックスを作るための最大幅 */
  padding-top: 99.5%;
  /* 1:1のアスペクト比を維持するためのトリック */
  position: relative;
  /* 絶対配置の基準 */
}
#t_news .module_article .module_article_item:first-child a .news_img figure {
  margin: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
#t_news .module_article .module_article_item:first-child a .news_img figure img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  /* 画像をボックス全体にフィットさせる */
  max-width: 100%;
  /* ボックスの幅に合わせる */
  max-height: 100%;
  /* ボックスの高さに合わせる */
}
@media screen and (max-width: 768px) {
  #t_news .module_article .module_article_item:first-child a .sp_left {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #t_news .module_article .module_article_item:first-child a .sp_right {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #t_news .module_article .module_article_item a {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
}
@media screen and (max-width: 768px) {
  #t_news .module_article .module_article_item a .sp_left {
    width: 46.3%;
  }
}
@media screen and (max-width: 768px) {
  #t_news .module_article .module_article_item a .sp_right {
    width: 50%;
  }
}
#t_news .module_article .module_article_item .news_img {
  width: 100%;
  max-width: 540px;
  /* 1:1のボックスを作るための最大幅 */
  padding-top: 99.5%;
  /* 1:1のアスペクト比を維持するためのトリック */
  position: relative;
  /* 絶対配置の基準 */
}
#t_news .module_article .module_article_item .news_img figure {
  margin: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
#t_news .module_article .module_article_item .news_img figure img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  /* 画像をボックス全体にフィットさせる */
  max-width: 100%;
  /* ボックスの幅に合わせる */
  max-height: 100%;
  /* ボックスの高さに合わせる */
}
#t_news .module_article .module_article_item .news_date {
  display: block;
  font-size: 1.2rem;
  font-weight: 500;
  color: #666666;
  text-align: right;
  line-height: 1;
  margin-top: 8px;
}
#t_news .module_article .module_article_item .event_date {
  color: #00A9AC;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: left;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  #t_news .module_article .module_article_item .event_date {
    margin-top: 0;
  }
}
#t_news .module_article .module_article_item h3 {
  display: -webkit-box;
  /* 必須 */
  -webkit-box-orient: vertical;
  /* 必須 */
  -webkit-line-clamp: 2;
  /* 行数を制限 */
  overflow: hidden;
  /* はみ出た部分を非表示 */
  color: #00A9AC;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: left;
  padding-bottom: 6px;
  margin-top: 5px;
}
#t_news .module_article .module_article_item .data {
  border-top: 1px solid rgba(51, 51, 51, 0.5);
  padding-top: 6px;
}
#t_news .module_article .module_article_item .data .data_hour {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
  align-items: center;
  padding-left: 2em;
  text-indent: -2em;
}
#t_news .module_article .module_article_item .data .data_hour:before {
  content: "";
  width: 18px;
  height: 18px;
  margin-right: 8px;
  background: url(../img/common/icon09.svg) no-repeat center center/cover;
  display: inline-block;
  top: 3px;
  position: relative;
}
#t_news .module_article .module_article_item .data .data_place {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
  align-items: center;
  padding-left: 1.8em;
  text-indent: -1.8em;
}
#t_news .module_article .module_article_item .data .data_place:before {
  content: "";
  width: 18px;
  height: 18px;
  margin-right: 8px;
  background: url(../img/common/icon10.svg) no-repeat center center/cover;
  display: inline-block;
  top: 3px;
  position: relative;
}
#t_news .link {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  align-items: center;
  text-decoration: none;
  background: #00A9AC;
  display: block;
  width: 190px;
  text-align: center;
  padding: 12px 0;
  margin: 85px auto 0;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  #t_news .link {
    margin: 15px auto 0;
  }
}

#s_news {
  padding: 75px 0 0px;
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #s_news {
    padding: 50px 0 0;
  }
}
#s_news .title {
  font-family: "Noto Serif JP", sans-serif;
  color: #00A9AC;
  font-size: 3.4rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  #s_news .title {
    font-size: 2.8rem;
  }
}
#s_news .title.have_sub {
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  #s_news .title.have_sub {
    margin-bottom: 10px;
  }
}
#s_news .sub_title {
  color: #666666;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  #s_news .sub_title {
    font-size: 1.4rem;
    margin-bottom: 35px;
  }
}
#s_news .news_hanrei {
  width: 92%;
  max-width: 943px;
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  #s_news .news_hanrei {
    display: none;
  }
}
#s_news .news_hanrei_sp {
  width: 92%;
  max-width: 943px;
  margin-bottom: 35px;
  display: none;
}
@media screen and (max-width: 768px) {
  #s_news .news_hanrei_sp {
    display: block;
    margin: 0 auto 60px 0;
    width: 92%;
    max-width: 320px;
  }
}
#s_news .module_article {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 45px;
}
@media screen and (max-width: 768px) {
  #s_news .module_article {
    flex-wrap: wrap;
    margin: 0;
  }
}
#s_news .module_article:after {
  content: "";
  width: 22.5%;
  display: block;
}
#s_news .module_article::before {
  content: "";
  width: 22.5%;
  display: block;
  order: 1;
}
#s_news .module_article .module_article_item {
  width: 22.5%;
}
@media screen and (max-width: 768px) {
  #s_news .module_article .module_article_item {
    width: 46.3%;
    margin-bottom: 30px;
  }
}
#s_news .module_article .module_article_item .news_img {
  width: 100%;
  max-width: 540px;
  /* 1:1のボックスを作るための最大幅 */
  padding-top: 99.5%;
  /* 1:1のアスペクト比を維持するためのトリック */
  position: relative;
  /* 絶対配置の基準 */
}
#s_news .module_article .module_article_item .news_img figure {
  margin: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
#s_news .module_article .module_article_item .news_img figure img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  /* 画像をボックス全体にフィットさせる */
  max-width: 100%;
  /* ボックスの幅に合わせる */
  max-height: 100%;
  /* ボックスの高さに合わせる */
}
#s_news .module_article .module_article_item .news_date {
  display: block;
  font-size: 1.2rem;
  font-weight: 500;
  color: #666666;
  text-align: right;
  line-height: 1;
  margin-top: 8px;
}
#s_news .module_article .module_article_item .event_date {
  color: #00A9AC;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: left;
  margin-top: 10px;
}
#s_news .module_article .module_article_item .shop_category {
  width: 110px;
  padding: 4px 0;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 500;
  text-align: center;
  color: #fff;
  margin: 5px auto 5px 0;
}
@media screen and (max-width: 768px) {
  #s_news .module_article .module_article_item .shop_category {
    margin: 5px auto 3px 0;
  }
}
#s_news .module_article .module_article_item h3 {
  display: -webkit-box;
  /* 必須 */
  -webkit-box-orient: vertical;
  /* 必須 */
  -webkit-line-clamp: 2;
  /* 行数を制限 */
  overflow: hidden;
  /* はみ出た部分を非表示 */
  color: #666666;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: left;
  padding-bottom: 3px;
  margin-bottom: 3px;
  border-bottom: 1px solid rgba(51, 51, 51, 0.5);
}
#s_news .module_article .module_article_item .shop_info {
  color: #666666;
  font-size: 1.4rem;
  font-weight: 500;
}
#s_news .link {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  align-items: center;
  text-decoration: none;
  background: #00A9AC;
  display: block;
  width: 190px;
  text-align: center;
  padding: 12px 0;
  margin: 0px auto 0;
  border-radius: 5px;
}

#t_banner ul {
  width: 92%;
  max-width: 933px;
  margin: 0 auto;
  padding: 0px 0 65px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #t_banner ul {
    flex-wrap: wrap;
    padding: 0px 0 35px;
  }
}
#t_banner ul li {
  width: 31.9%;
}
@media screen and (max-width: 768px) {
  #t_banner ul li:first-child {
    width: 100%;
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 768px) {
  #t_banner ul li:nth-child(n+2) {
    width: 48.4%;
  }
}

/* ポップアップ用のスタイル */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-content-ad {
  position: relative;
  padding: 0;
  max-width: 1000px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 80%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .popup-content-ad {
    margin: 0 5.45%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}

#popupLink {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.popup-image {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  cursor: pointer;
}

.close-button {
  position: absolute;
  top: -38px;
  right: 0;
  background-color: unset;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 22px;
  font-weight: 700;
  font-family: "Noto Sans JP";
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .close-button {
    top: -35px;
  }
}
/*# sourceMappingURL=top.css.map */