@charset "utf-8";
/* news css */
/*news 一覧*/

/*====================
一時的に非表示
====================*/
/* #news .cat_list, */
/* .category .cat_btn, */
/* .yaer_archives,
#news_post .category_post_list,
.pager {
  display: none!important;
} */

#news_top .wrap,
#news_post .wrap {
  padding-bottom: 160px;
}
#news .cat_list {
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  margin: 0;
}
#news .cat_list.top {
  margin: 0 0 100px;
}
#news .cat_list .cat_btn {
  width: calc((100% - 15px*5)/5);
  background: none;
}
.cat_btn a {
  display: flex;
  width: 100%;
  height: 40px;
  border-radius: 40px;
  background: #edede4;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  color: var(--mainColor);
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 500;
  position: relative;
  padding: 5px 20px 5px 12px;
}
.cat_btn a:after {
  content: '';
  width: 6px;
  height: 6px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translate(0,-50%) rotate(45deg);
}
.cat_btn span:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 12px;
  margin: 0 3px 0 0;
  background: #000;
  display: inline-block;
}
.cat_btn.cat-rooms span:before {
  background: #CC4D27;
}
.category .cat_btn.cat-rooms {
  background: #CC4D27;
  color: #fff;
}
.cat_btn.cat-breakfast span:before {
  background: #6C8937;
}
.category .cat_btn.cat-breakfast {
  background: #6c8937;
  color: #fff;
}
.cat_btn.cat-dinner span:before {
  background: #FBC00A;
}
.category .cat_btn.cat-dinner {
  background: #FBC00A;
  color: #fff;
}
.cat_btn.cat-lunch span:before {
  background: #B21003;
}
.category .cat_btn.cat-lunch {
  background: #B21003;
  color: #fff;
}
.cat_btn.cat-afternoon span:before {
  background: #86848A;
}
.category .cat_btn.cat-afternoon {
  background: #86848A;
  color: #fff;
}
.cat_btn.cat-sweets span:before {
  background: #9F2F6A;
}
.category .cat_btn.cat-sweets {
  background: #9F2F6A;
  color: #fff;
}
.cat_btn.cat-anniversary span:before {
  background: #277AA3;
}
.category .cat_btn.cat-anniversary {
  background: #277AA3;
  color: #fff;
}
.cat_btn.cat-cake span:before {
  background: #A7CC0A;
}
.category .cat_btn.cat-cake {
  background: #A7CC0A;
  color: #fff;
}
.cat_btn.cat-spa span:before {
  background: #996F2C;
}
.category .cat_btn.cat-spa {
  background: #996F2C;
  color: #fff;
}
.cat_btn.cat-banquet span:before {
  background: #007072;
}
.category .cat_btn.cat-banquet {
  background: #007072;
  color: #fff;
}
.cat_btn.cat-other span:before {
  background: #414551;
}
.category .cat_btn.cat-other {
  background: #414551;
  color: #fff;
}

.news_list_wrap .news_list {
  justify-content: flex-start;
  gap: 50px 60px;
}
.news_list_wrap .news_list .news_set {
  width: calc((100% - 60px*2)/3);
}
.news_list_wrap .news_list .news_set a {
  text-decoration: none;
  display: block;
}
.news_list_wrap .news_list .news_set .eyecatch {
  width: 100%;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #fff;
}
.news_list_wrap .news_list .news_set .eyecatch:has(img[src="/maihama/assets_c/ready.jpg"]),
.news_list_wrap .news_list .news_set .eyecatch.img_none {
  border: 1px solid var(--mainColor);
}
.news_list_wrap .news_list .news_set .eyecatch img[src="/maihama/assets_c/ready.jpg"],
.news_list_wrap .news_list .news_set .eyecatch.img_none img {
  height: auto!important;
}
.news_list_wrap .news_list .news_set .eyecatch:before {
  content: '';
  padding-top: 0;
  aspect-ratio: 4 / 3;
  display: block;
}
.news_list_wrap .news_list .news_set .eyecatch img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.news_list_wrap .news_list .news_set .detail {
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin: 25px 0 20px;
}
.category .cat_btn {
  display: flex;
  width: fit-content;
  height: 25px;
  border-radius: 25px;
  background: #edede4;
  color: var(--mainColor);
  font-size: 14px;
  line-height: 1.5em;
  font-weight: 500;
  position: relative;
  padding: 2px 10px;
}
.category .cat_btn span:before {
  content: none;
}
.news_list_wrap .news_list .news_set .detail .date {
  color: var(--mainColor);
  font-size: 14px;
  line-height: 1.5em;
  font-weight: 500;
}
.news_list_wrap .news_list .news_set h2 {
  color: var(--mainColor);
  font-size: 18px;
  line-height: 1.5em;
  font-weight: 500;
}
.news_list_wrap .news_list .news_set p {
  color: var(--mainColor);
  font-size: 16px;
  line-height: 1.8em;
  font-weight: 500;
  margin: 10px 0 0 0;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  max-height: 58px;
}
.news_list_wrap .news_list .news_set .date {
  width: auto!important;
}

/*投稿ページ*/
#news_post .category_post_list {
  width: 100%;
  margin: 0 0 80px;
}
#news_post .post_title {
  width: 100%;
  display: inline-block;
  font-size: 28px;
  line-height: 1.4em;
  font-weight: 500;
  color: var(--mainColor);
  margin: 20px 0 10px;
  padding: 0;
}
#news_post .date {
  width: 100%;
  display: inline-block;
  font-size: 14px;
  line-height: 1.4em;
  font-weight: 500;
  color: var(--mainColor);
  margin: 0;
  padding: 0;
}
#news_post #post_body {
  width: 100%;
  display: inline-block;
  margin: 60px 0 80px;
}
#news_post #post_body .main_img {
  width: 100%;
  display: inline-block;
  text-align: center;
  margin: 0 0 50px;
}
#news_post #post_body .main_img img {
  border-radius: 10px;
  width: 100%;
  max-width: 890px;
}
#news_post #post_body p {
  font-size: 16px;
  line-height: 1.8em;
  color: var(--mainColor);
  /* font-family: "Zen Kaku Gothic New", sans-serif; */ 
  font-weight: 500;
  margin: 1.5em 0 0 0;
}
#news_post #post_body p:first-of-type {
  margin: 0;
}


/* ========================================================================================================
   1349px以下
   ========================================================================================================*/
@media screen and (max-width: 1349px) {
}

/* ========================================================================================================
   1199px以下
   ========================================================================================================*/
@media screen and (max-width: 1199px) {
  #news .cat_list .cat_btn {
    width: calc((100% - 15px*4) / 5);
  }
}


/* ========================================================================================================
   999px以下
   ========================================================================================================*/
@media screen and (max-width: 999px) {
  #news .cat_list .cat_btn {
    width: calc((100% - 15px*3) / 4);
    font-size: 14px;
  }
  #news .cat_list .cat_btn a {
    font-size: 14px;
  }
  .news_list_wrap .news_list {
    gap: 50px 30px;
  }
  .news_list_wrap .news_list .news_set {
    width: calc((100% - 30px* 2) / 3);
  }
  
}

/* ========================================================================================================
   767px以下
   ========================================================================================================*/
@media screen and (max-width: 767px) {
  #news_top .wrap,
  #news_post .wrap {
    padding-bottom: 120px;
  }
  #news .cat_list .cat_btn {
    width: calc((100% - 10px*2) / 3);
  }
  #news .cat_list .cat_btn a {
    font-size: 12px;
    line-height: 1.2em;
    padding: 5px 12px 5px 8px;
    letter-spacing: -.08em;
  }
  #news .cat_list {
    gap: 10px;
  }
  .cat_btn span {
    padding: 0 0 0 1.2em;
    position: relative;
  }
  .category .cat_btn span {
    padding: 0 5px;
  }
  .cat_btn span:before {
    display: inline-block;
    margin: 0;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0,-50%);
  }
  .cat_btn a:after {
    width: 4px;
    height: 4px;
    right: 8px;
  }
  #news .cat_list.top {
    margin: 0 0 60px;
  }
  .news_list_wrap .news_list {
    gap: 20px 15px;
  }
  .news_list_wrap .news_list .news_set {
    width: calc((100% - 15px) / 2);
  }
  .news_list_wrap .news_list .news_set .eyecatch {
    border-radius: 5px;
  }
  .news_list_wrap .news_list .news_set .detail {
    gap: 5px;
    margin: 10px 0;
  }
  .category .cat_btn {
    height: 20px;
    border-radius: 20px;
    font-size: 10px;
    line-height: 1.6em;
    letter-spacing: -.05em;
    padding: 2px 5px;
  }
  .news_list_wrap .news_list .news_set .detail .date {
    font-size: 10px;
    line-height: 1.6em;
  }
  .news_list_wrap .news_list .news_set h2 {
    font-size: 14px;
  }
  .news_list_wrap .news_list .news_set p {
    font-size: 12px;
    line-height: 1.6em;
    margin: 5px 0 0 0;
    max-height: 40px;
  }
  #news_post .post_title {
    font-size: 21px;
    margin: 10px 0 5px;
  }
  #news_post .date {
    font-size: 12px;
  }
  #news_post #post_body .main_img {
    width: calc(100% + 40px);
    margin: 0 -20px 30px;
  }
  #news_post #post_body .main_img img {
    border-radius: 0;
  }
  #news_post #post_body p {
    font-size: 14px;
  }
  #news_post #post_body {
    margin: 40px 0 50px;
  }
    
}
/* ========================================================================================================
   499px以下
   ========================================================================================================*/
@media screen and (max-width: 499px) {

}