@charset "utf-8";
/* CSS Document */
@import "print.css" print;

.width540{
  max-width: 540px;
  margin-left: auto !important;
  margin-right: auto !important;
}

.brown{
  color: #b69d7f;
}

.wrap{
  background-color:#F5F1EC;
  line-height: 1.6;
}

.header{
  display: none;
}
.header .inner{
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.header .inner .logo{
  width: 46%;
}
.header .inner .logo img{
  width: 100%;
}
  
.header .inner .logo_page{
  max-width: 140px;
  padding: 10px;
}
.header .inner .logo_page img{
  width: 100%;
}
.header .inner .logo_page.logo_top{
  max-width: 240px;
  padding: 0;
}
  
.header_menu{
  display: flex;
  gap: 20px;
  margin-top: 10px;
  padding: 10px 30px 10px 0;
}

.hamburger {
  display : block;
  width : 30px;
  height: 24px;
  cursor: pointer;
  text-align: center;
  position: relative;
  border-radius: 4px;
  z-index: 999;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 2px;
  left    : 0;
  background : #000;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 0px;
}
.hamburger span:nth-child(2) {
  top: 12px;
}
.hamburger span:nth-child(3) {
  top: 24px;
}
.hamburger.active span:nth-child(1) {
  top : 10px;
  left: 6px;
  background :#fff;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 10px;
  background :#fff;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

nav.global_menu {
  position: fixed;
  z-index : 1000;
  top  : 0;
  left : 0;
  background: #F5F1EC;
  width: 100%;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  transition: opacity .6s ease, visibility .6s ease;
  padding: 40px 0;
  overflow-y: auto;  /* 縦スクロールを許可 */
  -webkit-overflow-scrolling: touch;
}
.global_menu_header{
  display: flex;
  justify-content:center;
  position: fixed;
  right: 30px;
  top: 15px;
}
.global_menu_header .close_btn{
  width: 30px;
  height: 30px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.global_menu_header .close_btn::before,
.global_menu_header .close_btn::after { /* 共通設定 */
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 28px; 
  background: #232323;
}
 
.global_menu_header .close_btn::before {
  transform: translate(-50%,-50%) rotate(45deg);
}
 
.global_menu_header .close_btn::after {
  transform: translate(-50%,-50%) rotate(-45deg);
}
.global_menu .inner{
  padding: 40px 30px;
  margin: 0 auto;
  max-width: 1200px;
}
.global_menu .inner .flex{
  display: flex;
  justify-content: center;
  gap:50px;
}
.global_menu .inner .flex .left{
  width: calc(50% - 25px);
  max-width: 400px;
}
.global_menu .inner .flex .left .search_form{
  padding: 0;
}
.global_menu .inner .flex .left .search_container{
  border-radius: 50vh;
}
.global_menu .inner .flex .left .category_list{
  padding: 0 30px;
  margin-top: 40px;
}
.global_menu .inner .flex .left .popular_tags{
  margin-top: 40px;
}

.global_menu .inner .flex .right{
  width: calc(50% - 25px);
  display: flex;
  gap:50px;
}


.whimsical{
  padding: 40px;
  box-shadow: 0 0 3px #aaa;
  border-radius: 20px;
  width: 70%;
  background-color: #fff;
}
.whimsical .caption{
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}
.whimsical .caption_ttl{
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin: 10px auto 0;
  position: relative;
  width: fit-content;
  line-height: 1;
}
.whimsical .caption_ttl::before {
  content: "";
  width: 1px;
  height: 20px;
  background-color: #232323;
  position: absolute;
  top: 0;
  left: -16px;
  transform: rotate(-30deg);
}
.whimsical .caption_ttl::after {
  content: "";
  width: 1px;
  height: 20px;
  background-color: #232323;
  position: absolute;
  top: 0;
  right: -16px;
  transform: rotate(30deg);
}
.whimsical .img{
  width: 100%;
  margin: 20px auto 0;
}
.whimsical .img img{
  width: 100%;
}
.whimsical .ttl{
  font-size: 14px;
  font-weight: 700;
  margin-top: 20px;
  line-height: 1.4;
}

.whimsical .link{
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto 0;
  background-color: #b69d7f;
  border-radius: 50vh;
  color: #fff;
  width: 180px;
  height: 37px;
  font-size: 16px;
}
.main_area .whimsical{
  width: 100%;
  box-shadow: none;
  background-color: #F5F1EC;
  border-radius: 0;
}

.global_menu .inner .flex .right .whimsical{
  padding: 40px 0;
}
.global_menu .inner .flex .right .whimsical .ttl{
  padding: 0 40px;
}

.menu_bnr{
  width: calc(30% - 50px);
  display: flex;
  flex-direction: column;
  gap:20px;
}
.menu_bnr li a{
  display: inline-block;
}
.menu_bnr li a img{
  width: 100%;
}

.global_menu .keyword{
  padding: 30px;
  margin-top: 40px;
  background-color: #fff;
  border-radius: 20px;
}
.global_menu .keyword .caption{
  font-size: 16px;
  font-weight: 700;
  text-align: left;
}
.global_menu .keyword  ul{
  display: flex;
  flex-wrap: wrap;
  gap:6px;
  margin-top: 20px;
}
.global_menu .keyword  ul li a{
  display: inline-block;
  padding: 4px 8px;
  color: #232323;
  border-radius: 50vh;
  border: solid 1px #707070;
  font-size: 11px;
}
.global_menu .nav_submenu{
  padding: 0 30px;
  margin: 40px auto 0;
}
.global_menu .nav_submenu ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap:10px 20px;
}
.global_menu .nav_submenu ul li a{
  font-size: 12px;
  color: #232323;
}

/* クリックでjQueryで追加・削除 */
nav.global_menu.active {
  opacity: 1;
  visibility: visible;
}

.search_form{
  padding: 0 30px;
  margin: 0;
}
.search_container{
  width: 100%;
  border-radius: 0;
  height: auto;
  background-color: #fff;
  border-radius: 50vh;
  border: solid 1px #777;
}
.search_container input[type="text"]{
  font-size: 16px;
  width: 100%;
  height: auto;
  padding:14px 40px 14px 10px;
}
.search_container input[type="submit"]{
  top:50%;
  transform: translateY(-50%);
}
.pc_footer,
.sp_footer{
  margin-top: 0;
}
.column + .pc_footer,
.column + .sp_footer{
  margin-top: 0;
}
.footer{
  margin: 0;
  border-top: none;
}
.footer_sitemap{
  margin-top: 40px;
  padding: 0 30px;
}

.footer_sitemap li a{
  padding: 20px 0;
  border-top:solid 1px #ccc;
  color: #232323;
  font-size: 14px;
  letter-spacing: 0.05em;
  display: block;
  position: relative;
}
.footer_sitemap li a::before {
  content: '';
  width: 6px;
  height: 6px;
  border-top: solid 1px #232323;
  border-right: solid 1px #232323;
  position: absolute;
  right: 10px;
  top: calc(50% - 3px);
  transform: translateY(-50%);
  transform: rotate(45deg);
}
.footer_sitemap li:last-child a{
  border-bottom: solid 1px #ccc;
}

.footer_sitemap_s{
  margin-top: 40px;
  padding: 0 30px;
}
.footer_sitemap_s .ttl{
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}
.footer_sitemap_s ul{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap:10px 20px;
  width: 100%;
}
.footer_sitemap_s ul li a{
  color: #232323;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-align: center;
}

.footer .footer_bnr{
  padding: 0 30px;
  margin: 40px auto;
  display: flex;
  gap:8px;
}
.footer .footer_bnr li{
  width: calc(50% - 4px);
  border: solid 1px #ccc;
  border-radius: 10px;
}
.footer .footer_bnr li a{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px 2px;
  color: #232323;
  font-size: 14px;
  letter-spacing: -0.02em;
}
.footer .copyright{
  padding: 0 30px;
  margin-top: 50px;
  text-align: center;
  line-height: 1.4;
  font-size: 10px;
}

.main_wrap{
  display: flex;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto ;
  gap:20px;
  
}
.left_area{
  width: 300px;
  position: sticky;
  bottom: 0;
  align-self: flex-end;
  min-height: 100vh;
  margin-right: 26px;
}
.left_area .inner{
  padding: 70px 0;
  display: flex;
  flex-wrap: wrap;
  gap:20px;
}
.left_area .pc_logo{
  width: 100%;
  padding:50px 30px;
  background-color: #fff;
  border-radius: 20px;
}
.left_area .pc_logo img{
  width: 100%;
}
.left_area .date{
  font-family: "Akshar", sans-serif;
  font-weight: 500;
  padding:18px 16px 12px;
  background-color: #b69d7f;
  color: #fff;
  display: flex;
  justify-content:center;
  gap:6px;
  align-items: flex-end;
  line-height: 1;
  border-radius: 20px;
  width: 100%;
}
.left_area .date p:nth-child(1){
  font-size: 25px;
  padding-bottom: 5px;
}
.left_area .date p:nth-child(2){
  font-size: 50px;
  letter-spacing: 0.05em;
}
.left_area .date p:nth-child(3){
  font-size: 25px;
  padding-bottom: 5px;
}
.left_area .category_list{
  margin-top: 10px;
}
.category_list{
  border-radius: 20px;
}
.category_list .ttl{
  font-size: 17px;
  font-weight: 700;
}
.category_list ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap:20px 20px;
}
.category_list ul li{
  width: calc(50% - 10px);
}
.category_list ul li a{
  padding-left: 40px;
  position: relative;
  color: #121212;
  line-height: 1;
  font-weight: bold;
}
.category_list ul li a::before{
  content:'';
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top:50%;
  transform: translateY(-50%);
}
.category_list ul li:nth-child(1) a::before{
  background-image: url(../images/renewal/icon_newarrival.svg);
}
.category_list ul li:nth-child(2) a::before{
  background-image: url(../images/renewal/icon_serial.svg);
}
.category_list ul li:nth-child(3) a::before{
  background-image: url(../images/renewal/icon_eat.svg);
}
.category_list ul li:nth-child(4) a::before{
  background-image: url(../images/renewal/icon_cafe.svg);
}
.category_list ul li:nth-child(5) a::before{
  background-image: url(../images/renewal/icon_shopping.svg);
}
.category_list ul li:nth-child(6) a::before{
  background-image: url(../images/renewal/icon_play.svg);
}
.category_list ul li:nth-child(7) a::before{
  background-image: url(../images/renewal/icon_culture.svg);
}
.category_list ul li:nth-child(8) a::before{
  background-image: url(../images/renewal/icon_made.svg);
}
.category_list ul li:nth-child(9) a::before{
  background-image: url(../images/renewal/icon_other.svg);
}
.category_list ul li:nth-child(10) a::before{
  background-image: url(../images/renewal/icon_recommend.svg);
}
.left_area .popular_tags{
  margin-top: 10px;
}
.popular_tags .ttl{
  font-size: 16px;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 20px;
  line-height: 1;
}
.popular_tags ul + .ttl{
  margin-top: 30px;
}
.popular_tags ul{
  display: flex;
  flex-wrap: wrap;
  gap:10px;
}
.popular_tags ul li a{
  display: inline-block;
  padding: 4px 8px;
  color: #232323;
  border-radius: 50vh;
  border: solid 1px #707070;
  font-size: 11px;
  background-color: #fff;
}
.left_area .pure_ad_area{
  display: none;
}

.main_area .popular_tags{
  padding:30px;
}
.main_area .popular_tags .ttl{
  margin-top: 0;
}
.main_area .popular_tags ul + .ttl{
  margin-top: 30px;
}

.left_area .search_form{
  padding: 0;
  width: 100%;
}

.left_area .search_container input[type="text"]{
  font-size: 16px;
  width: 100%;
  height: auto;
  padding:6px 40px 6px 10px;
}

.right_area{
  width: 428px;
  position: sticky;
  bottom: 0;
  align-self: flex-end;
  min-height: 100vh;
}
.right_area .inner{
  padding: 70px 0;
  display: flex;
  flex-wrap: wrap;
  gap:20px;
}
.right_area .magazine{
  position: relative;
  padding: 20px 28px;
  background-color: #fff;
  border-radius: 20px;
  width: calc(50% - 10px);
}
.right_area .magazine .txt .ttl{
  font-size: 14px;
  line-height: 1;
}
.right_area .magazine .txt p{
  font-size: 12px;
  line-height: 1;
}
.right_area .magazine .img{
  position: absolute;
  top:-10px;
  right: 12px;
}

.right_area .pc_menu{
  padding: 20px 30px;
  background-color: #fff;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  gap:20px;
}
.sns_icon{
  display: inline-block;
  max-width: 27px;
}
.sns_icon img{
  width: 100%;
}

.right_area .site_caption{
  padding: 20px 30px;
  border-radius: 20px;
  background-color: #b69d7f;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.8;
}
.pure_ad_area{
  width: 300px;
  padding:20px 0 55px;
  border-radius: 20px;
  background-color: #fff;
}
.pure_ad_area .ttl{
  font-size: 12px;
  color: #aaa;
  text-align: right;
  margin-bottom: 14px;
  margin-right: 10px;
}
.pure_ad_area .ad_inner{
  width: fit-content;
  margin: 0 auto;
}

.right_area .recommend{
  padding: 40px 0;
  background-color: #fff;
  border-radius: 20px;
  width: 100%;
}
.recommend .ttl{
  font-size: 17px;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  color: #b69d7f;
  line-height: 1;
}
.recommend .ttl::before{
  content: "";
  width: 1px;
  height: 18px;
  background-color: #b69d7f;
  position: absolute;
  top: 2px;
  left: -16px;
  transform: rotate(-30deg);
}
.recommend .ttl::after{
  content: "";
  width: 1px;
  height: 18px;
  background-color: #b69d7f;
  position: absolute;
  top: 2px;
  right: -16px;
  transform: rotate(30deg);
}
.recommend .img{
  width: 100%;
  margin-top: 16px;
}
.recommend .img img{
  width: 100%;
}
.recommend .txt{
  margin: 20px 30px 0;
}
.recommend h3{
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
}
.recommend a.link{
  width: 180px;
  height: 37px;
  border: solid 1px #777;
  border-radius: 50vh;
  margin: 20px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #232323;
}
.recommend_wrap .more_link{
  width: 180px;
  height: 37px;
  border: solid 1px #b69d7f;
  border-radius: 50vh;
  background-color: #b69d7f;
  margin: 20px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
}

.recommend_all .main_ttl{
  width: 200px;
  max-width: 100%;
  margin: 40px auto 0;
  position: relative;
  color: #b69d7f;
  line-height: 1;
}
.recommend_all .main_ttl img{
  width: 100%;
}
.recommend_all .main_ttl::before{
  content: "";
  width: 1px;
  height: 20px;
  background-color: #b69d7f;
  position: absolute;
  top: 2px;
  left: -18px;
  transform: rotate(-30deg);
}
.recommend_all .main_ttl::after{
  content: "";
  width: 1px;
  height: 20px;
  background-color: #b69d7f;
  position: absolute;
  top: 2px;
  right: -18px;
  transform: rotate(30deg);
}
.recommend_all .recommend_content{
  padding: 0 30px 60px;
  margin-top: 40px;
}
.recommend_all .recommend_content .shop_name{
  color: #232323;
  font-size: 14px;
  margin-top: 10px;
}
.recommend_all .recommend_content .ttl{
  color: #232323;
}
.recommend_all .recommend_content .item{
  display: block;
}
.recommend_all .recommend_content .item img{
  max-width: 100%;
}
.recommend_all .recommend_content .item + .item{
  margin-top: 40px;
}

.recommend_single .page_ttl{
  width: 200px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  color: #b69d7f;
  line-height: 1;
  padding: 0 0 40px;
}
.recommend_single .page_ttl img{
  width: 100%;
}
.recommend_single .page_ttl::before{
  content: "";
  width: 1px;
  height: 20px;
  background-color: #b69d7f;
  position: absolute;
  top: 2px;
  left: -18px;
  transform: rotate(-30deg);
}
.recommend_single .page_ttl::after{
  content: "";
  width: 1px;
  height: 20px;
  background-color: #b69d7f;
  position: absolute;
  top: 2px;
  right: -18px;
  transform: rotate(30deg);
}
.recommend_single .img img{
  max-width: 100%;
}
.recommend_single .shop_name{
  margin-top: 20px;
  font-size: 14px;
}
.recommend_single .recommend_main_ttl{
  font-size: 18px;
  font-weight: bold;
}
.recommend_single .main_txt{
  max-width: 100%;
  padding-top: 40px;
}
.recommend_single .back_link{
  width: 180px;
  height: 37px;
  border: solid 1px #b69d7f;
  border-radius: 50vh;
  background-color: #b69d7f;
  margin: 60px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
}

.recommend_shop{
  padding:30px;
  border: solid 1px #777;
  margin-top: 40px;
}
.recommend_shop .inner{
  display: flex;
  gap:30px;
}
.recommend_shop .img{
  width: 220px;
  flex-shrink: 0;
}
.recommend_shop .txt .ttl{
  font-size: 16px;
  font-weight: bold;
}

.main_area{
  width: 510px;
  margin: 70px auto;
  position: relative;
}
.main_area_top::after{
  content:"";
  width: 314px;
  height: 65px;
  background-image: url(../images/renewal/today.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top:-30px;
  left: 50%;
  transform: translateX(-50%);
}

.main_area > .inner{
  border-radius: 20px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 0 5px #aaa;
}
.main_visual{
  margin: 0 auto;
  width: 100%;
  display: block;
}
.main_visual .img{
  width: 100%;
  position: relative;
}
.main_visual .img img{
  width: 100%;
  object-fit: cover;
  aspect-ratio: 5 / 6;
}
.main_visual .link{
  position: absolute;
  display: block;
  bottom: 40px;
  width: 100%;
  background-color: #fff;
  padding:20px 30px;
}
.main_visual .caption{
  position: absolute;
  right: 20px;
  top: 20px;
  color: #fff;
  font-size: 12px;
  text-align: right;
  line-height: 1.4;
}
.main_visual .caption span{
  font-size: 18px;
}

.main_visual .txt{
  color: #232323;
  position: relative;
}
.main_visual .txt h2{
  font-size: 17px;
  font-weight: 600;
  line-height: 1.6;
}
.main_visual .txt p{
  font-size: 12px;
  margin-top: 6px;
}
.content_menu{
  padding: 30px;
  display: flex;
  gap:20px;
  width: fit-content; 
}
.content_menu li{
  width: 70px;
  text-align: center;
}
.content_menu li a{
  display: block;
}
.content_menu li p{
  font-size: 12px;
  font-weight: bold;
  color: #232323;
  margin-top: 8px;
}
.content_menu li img{
  width: 40px;
}
.content_menu li.current{
  border-bottom: solid 3px #232323;
  padding-bottom: 10px;
}
.content_menu.noscoll{ 
  flex-wrap: wrap;
  justify-content: center;
  overflow-x: auto; 
}
.scrollbar{
  overflow-y:hidden !important;
}



.main_area .bg_outer{
  background-color: #F5F1EC;
  padding: 60px 30px;
}
.pickup_content .main_ttl{
  text-align: center;
  width: fit-content;
  position: relative;
  line-height: 1;
  margin: 0 auto;
}
.pickup_content .main_ttl::before{
  content: "";
  width: 1px;
  height: 18px;
  background-color: #b69d7f;
  position: absolute;
  top: 2px;
  left: -16px;
  transform: rotate(-30deg);
}
.pickup_content .main_ttl::after{
  content: "";
  width: 1px;
  height: 18px;
  background-color: #b69d7f;
  position: absolute;
  top: 2px;
  right: -16px;
  transform: rotate(30deg);
}
.pickup_content .flex{
  margin-top: 40px;
  flex-wrap: wrap;
  gap:20px;
  justify-content: space-between;
}
.pickup_content .item{
  display: none; 
  width: calc(50% - 10px);
}
.pickup_content .item img{
  width: 100%;
}
.pickup_content .item .ttl{
  color:#232323;
  font-size: 17px;
  margin-top: 10px;
}
.pickup_content .item p{
  color:#b29e83;
  font-size: 12px;
}
.more-btn,
.list-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px auto 0;
  width: 180px;
  height: 37px;
  background: #b69d7f;
  color: #fff;
  border: none;
  border-radius: 50vh;
  cursor: pointer;
  transition: background 0.3s ease;
  text-decoration: none;
  text-align: center;
  font-size: 16px;
  line-height: 1;
}

.list-btn {
  display: none;
}
.pickup_all .main_ttl{
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  margin: 40px auto;
  width: fit-content;
  padding-bottom: 8px;
  position: relative;
}
.pickup_all .main_ttl::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #b69d7f;
}
.pickup_all .pickup_content{
  padding: 0 30px 60px;
}
.pickup_all .pickup_content .item{
  display: block;
}

.main_area .recommend{
  margin-top: 50px;
  background-color: #fff;
  padding: 40px 0;
  border-radius: 20px;
}

.article_slider_wrap{
  padding: 50px 0 60px;
}
.article_slider_wrap .ttl{
  font-size: 19px;
  width: fit-content;
  margin: 0 auto 20px;
  position: relative;
  font-weight: 700;
  line-height: 1;
}
.article_slider_wrap .ttl::before {
    content: "";
    width: 1px;
    height: 18px;
    background-color: #232323;
    position: absolute;
    top: 2px;
    left: -16px;
    transform: rotate(-30deg);
}
.article_slider_wrap .ttl::after {
    content: "";
    width: 1px;
    height: 18px;
    background-color: #232323;
    position: absolute;
    top: 2px;
    right: -16px;
    transform: rotate(30deg);
}
.article_slider_wrap .item{
  width: 320px;
}
.article_slider_wrap .item img{
  width: 100%;
  object-fit: cover;
  aspect-ratio: 5 / 6;
}
.article_slider_wrap h2{
  font-size: 17px;
  font-weight: bold;
  line-height: 1.6;
  margin-top: 6px;
  color: #232323;
}
.article_slider_wrap p{
  font-size: 12px;
  margin-top: 8px;
  color: #232323;
}
.article_slider_wrap .link{
  display: flex;
  justify-content: center;
  align-items: center;
  color: #232323;
  width: 210px;
  height: 37px;
  font-size: 16px;
  border: solid 1px #707070;
  border-radius: 50vh;
  margin: 60px auto 0;
}
.slick-dots{
  bottom: -35px;
}
.slick-dots li button:before{
  font-size: 9px;
}

.ranking{
  padding: 60px 0;
}
.ranking h2{
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
  padding-top: 34px;
  position: relative;
  width: fit-content;
  margin: 0 auto;
}
.ranking h2::before{
  content:"";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 33px;
  height: 25px;
  background-image: url("../images/renewal/ranking_icon.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.ranking_slider{
  margin-top: 40px;
}
.ranking_slider .item{
  width: 320px;
}
.ranking_slider .item .img{
  position: relative;
}
.ranking_slider .item .img img{
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
}
.ranking_slider .ranking_icon .img::after{
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 40px;
  background-color: #fff;
  font-family: "Akshar", sans-serif;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #232323;
}
.ranking_slider .rank1 .img::after{
  content:"1";
}
.ranking_slider .rank2 .img::after{
  content:"2";
}
.ranking_slider .rank3 .img::after{
  content:"3";
}
.ranking_slider .rank4 .img::after{
  content:"4";
}
.ranking_slider .rank5 .img::after{
  content:"5";
}

.slick-slide {
  margin: 0 15px;
}
.ranking_slider h3{
  font-size: 17px;
  font-weight: bold;
  line-height: 1.6;
  margin-top: 6px;
  color: #232323;
}
.ranking_slider p{
  font-size: 12px;
  margin-top: 8px;
  color: #232323;
}
.ranking_slider_prev{
  position: absolute;
  left: 70px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-image: url("../images/renewal/arrow_prev.svg");
  background-size: contain;
  background-repeat: no-repeat;
  border: none;
  z-index: 999;
  background-color: transparent;
  cursor: pointer;
}
.ranking_slider_next{
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-image: url("../images/renewal/arrow_next.svg");
  background-size: contain;
  background-repeat: no-repeat;
  border: none;
  z-index: 999;
  background-color: transparent;
  cursor: pointer;
}

.column{
  background-color: #F5F1EC;
  padding: 60px 30px;
}

.column h2{
  font-size: 18px;
  font-weight:bold;
  line-height: 1.6;
  padding-left: 36px;
  position: relative;
  width: fit-content;
  margin: 0 auto;
}
.column h2::before{
  content:"";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 25px;
  height: 16px;
  background-image: url("../images/renewal/column_icon.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.column .flex{
  margin-top: 40px;
  flex-wrap: wrap;
  gap:20px;
  justify-content: space-between;
}
.column .item{
  display: inline-block;
  width: calc(50% - 10px);
}
.column .item img{
  width: 100%;
}
.column .item h3{
  color:#232323;
  font-size: 17px;
  margin-top: 10px;
}
.column .item p{
  color:#232323;
  font-size: 12px;
}
.column .more_link{
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px auto 0;
  width: 180px;
  height: 37px;
  background: #b69d7f;
  color: #fff;
  border: none;
  border-radius: 50vh;
  cursor: pointer;
  transition: background 0.3s ease;
  text-decoration: none;
  text-align: center;
}

.ad_area{
  background-color: #ece2da;
  padding: 20px 30px 55px;
  width: 100%;
}
.ad_area .ttl{
  color: #999;
  font-size: 12px;
  text-align: right;
  width: 300px;
  max-width: 100%;
  margin:0 auto 16px;
}
.ad_area .ad_inner{
  width: fit-content;
  margin: 0 auto;
}


/* single */
.single_top .inner{
  padding: 0 30px;
}
.single_top .img{
  width: 100%;
  padding: 0 30px;
}
.single_top .img img{
  width: 100%;
  object-fit: cover;
}
.single_top_old .img img{
  aspect-ratio:auto;
}

.single_top .main_ttl{
  font-size: 25px;
  font-weight: 700;
  line-height: 1.6;
  margin-top: 20px;
}
.single_top .cat_date{
  display: flex;
  font-size: 14px;
  margin-top: 10px;
}
.single_top .cat_date p + p{
  margin-left: 10px;
  padding-left: 10px;
  border-left: solid 1px #707070;
}
.single_top .tags{
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap:10px;
}
.single_top .tags li{
  width: fit-content;
}
.single_top .tags li a{
  display: block;
  width: fit-content;
  padding: 5px 16px;
  color: #777;
  border-radius: 50vh;
  font-size: 13px;
  border: solid 1px #777;
}
.single_top .author{
  color: #aaa;
  margin-top: 10px;
  font-size: 13px;
}

.single_top .recommend_main_ttl{
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  margin-top: 20px;
}

.opening_sentence{
  padding: 40px 30px 0;
  line-height: 1.8;
  text-align: justify;
  line-break: strict;
  word-break: break-word;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.person{
  padding: 40px 30px;
}
.person + .person{
  padding-top: 0;
  margin-top: -10px;
}
.person + .person .name{
  margin-top: 0;
}

.person .ttl{
  margin-bottom: -28px;
  text-align: center;
  z-index: 10;
  position:relative; 
}
.person .img{
  display: flex;
  justify-content: center;
  margin: 20px auto 0;
  max-width: 80%;
  position:relative;
  z-index: 1;
}
.person .img img{
  max-width: 100%;
}
.person .name{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items:center;
  gap:10px 20px;
  flex-wrap: wrap;
  margin-top: 25px;
}
.person .name p:nth-child(1){
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}
.person .name p:nth-child(2){
  font-size: 14px;
  color: #aaa;
  line-height: 1;
}
.person .txt{
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.8;
}

.scene{
  padding: 40px 30px;
  max-width: 100%;
}
.scene .scene_icon{
  max-width: 120px;
}
.scene img{
  max-width: 100%;
  margin: 0;
}
.scene p:has(img) + p > img{
  margin-top: 20px;
}
.scene .wp-caption-text{
  margin-top: 10px;
  text-align: left;
  padding: 0 50px;
  color: #232323;
  line-height: 1.8;
}

.info_st{
  padding: 0 30px;
}
.info_st .inner{
  padding: 30px;
  border: solid 1px #777;
  border-radius: 20px;
  line-height: 1.8;
}
.info_st .ttl{
  font-size: 16px;
  font-weight: 700;
}
.info_st .item{
  padding-top: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
  border-top:solid 1px #777;
}
.links{
  display: flex;
  gap:14px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.links a{
  display: inline-block;
  width: fit-content;
  padding: 5px 16px;
  color: #777;
  border-radius: 50vh;
  font-size: 13px;
  border: solid 1px #777;
}
.links a.map{
  color: #fff;
  background-color: #777;
}

.notes_heiten{
  padding: 0 30px;
  line-height: 1.8;
  margin: 40px 0;
}

.article_list{
  display: flex;
  flex-wrap: wrap;
  gap:20px;
  padding: 0 30px;
}
.article_list .item{
  max-width: calc(50% - 10px);
}
.article_list .item .item_ttl{
  font-size: 15px;
  font-weight: 700;
  color: #232323;
  margin-top: 10px;
  line-height: 1.6;
}
.article_list .item .item_category{
  font-size: 12px;
  color: #232323;
  margin-top: 10px;
}
.article_list .item img{
  width: 100%;
}

.article_list .ad_area{
  margin: 40px auto;
}

.post_list{
  padding: 60px 0;
}
.post_list.bg_color{
  background-color: #F5F1EC;
}
.post_list .main_ttl{
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}
.post_list .inner{
  display: flex;
  flex-wrap: wrap;
  gap:40px 20px;
  padding: 0 30px;
  margin-top: 40px;
}

.post_list .inner .item{
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap:20px;
}
.post_list .inner .item .txt{
  width: calc(100% - 120px);
}
.post_list .inner .item .img{
  flex-shrink: 0;
  max-width: 100px;
}
.post_list .inner .item .txt .cat{
  display: block;
  width: fit-content;
  padding: 5px 16px 4px;
  color: #fff;
  border-radius: 50vh;
  font-size: 13px;
  background-color: #b69d7f;
}
.post_list .inner .item .item_ttl{
  font-size: 18px;
  font-weight: 700;
  color: #232323;
  margin-top: 10px;
  line-height: 1.6;
}
.post_list .inner .item .item_category{
  font-size: 12px;
  color: #232323;
  margin-top: 10px;
}
.post_list .inner .item img{
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.matome{
  padding:60px 30px;
}
.matome img{
  width: 100%;
}
.matome p{
  color: #232323;
  text-align: center;
  font-weight: bold;
  margin-top: 10px;
}

.page_wrap{
  padding: 0 0 70px;
}
.page_content{
  padding: 40px 30px;
  width: 860px;
  max-width: 100%;
  background-color: #fff;
  box-shadow: 0 0 5px #aaa;
  margin:0 auto;
  border-radius: 20px;
}
.page_content > .inner{
  padding-bottom: 60px;
}
.contact .inner > .ttl{
  font-size: 26px;
  font-weight: 700;
  text-align: center;
}
.contact .inner .txt{
  margin: 40px auto 0;
  line-height: 2;
  padding: 20px;
  border: solid 1px #ccc;
  border-radius: 2px;
  background-color: #eee;
}
.contact .inner .txt .annotation{
  font-size: 14px;
}
.contact .inner .pri_btn{
  text-align: center;
  margin-top: 30px;
}
.contact .inner .pri_btn a{
  color: #232323;
  border-bottom: solid 1px #232323;
  display: inline-block;
  margin-top: 20px;
  font-size: 14px;
}
.contact .contact_form{
  margin-top: 50px;
}
.contact .contact_form dl{
  display: flex;
  flex-wrap: wrap;
  gap:20px;
}
.contact .contact_form dl dt{
  width: 240px;
  font-size: 16px;
  font-weight: 700;
  padding: 6px 0;
  border-bottom: solid 1px #232323;
}
.contact .contact_form dl dd {
  width: calc(100% - 300px);
}
.contact .contact_form dl dd .wpcf7-radio{
  display: flex;
  flex-direction: column;
  gap:5px;
}
.contact .contact_form dl dd input[type='text'],
.contact .contact_form dl dd input[type='email'],
.contact .contact_form dl dd input[type='tel']{
  padding: 6px 10px;
  width: 100%;
  background-color: #eee;
  border: none;
  font-size: 16px;
}
.contact .contact_form dl dd textarea{
  padding: 6px 10px;
  width: 100%;
  background-color: #eee;
  border: none;
  font-size: 16px;
  resize: vertical;
}
.contact .contact_form .submit{
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.contact .contact_form .submit input{
  border: none;
  border-radius: 4px;
  width: 260px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background-color: #232323;
}
.contact .contact_form .required{
  display: inline-block;
  font-size: 12px;
  padding: 2px 6px;
  margin-left: 6px;
  color: #fff;
  background-color: #ff1a1a;
  border-radius: 4px;
}
.contact .contact_form .caution{
  font-size: 14px;
  line-height: 1.6;
  margin-top: 6px;
}

.search_ttl{
  font-size: 16px;
  line-height: 1.8;
  padding: 30px;
  text-align: center;
}
.search{
  padding-top: 30px;
}

.tags_search{
  padding: 60px 30px;
}
.tags_search .ttl{
  font-size: 17px;
  font-weight: 600;
  text-align: center;
}
.tags_search ul{
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 20px;
}
.tags_search ul li a{
  display: inline-block;
  padding: 4px 8px;
  color: #232323;
  border-radius: 50vh;
  border: solid 1px #707070;
  font-size: 11px;
}

.tag_txt{
  margin: 0 30px 40px;
}

.about .ttl{
  font-size: 26px;
  font-weight: 700;
  text-align: center;
}
.about .box{
  margin-top: 40px;
}
.about .box h2{
  font-size: 18px;
  font-weight: 700;
}
.about .box h2 + p,
.about .box p + p{
  margin-top: 20px;
}
.about .corporation{
  margin-top: 40px;
}

.privacy .inner .ttl{
  font-size: 26px;
  font-weight: 700;
  text-align: center;
}
.privacy .box{
  margin-top: 40px;
}
.privacy .box h2{
  font-size: 18px;
  font-weight: 700;
}
.privacy .box h2 + p,
.privacy .box p + p{
  margin-top: 20px;
}

.cat_ttl{
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  margin: 40px auto;
  width: fit-content;
  padding-bottom: 8px;
  position: relative;
}
.cat_ttl::after{
  content:"";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #b69d7f;
}

/* まとめ一覧 */
.matome_all .main_ttl{
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  margin: 40px auto;
  width: fit-content;
  padding-bottom: 8px;
  position: relative;
}
.matome_all .matome_content{
  padding: 0 30px 60px;
  margin-top: 60px;
}

.matome_all .matome_content .ttl{
  color: #232323;
}
.matome_all .matome_content .item{
  display: block;
  position: relative;
}
.matome_all .matome_content .item .img{
  border-radius: 50vh;
  overflow: hidden;
  max-width: 100%;
  position: relative;
  z-index: 1;
}
.matome_all .matome_content .item .img img{
  width: 100%;
}
.matome_all .matome_content .item .ttl{
  position: absolute;
  left: 10%;
  top: -20px;
  width: 80%;
  margin: 0 auto;
  z-index: 3;
}
.matome_all .matome_content .item .ttl img{
  width: 100%;
}

.matome_all .matome_content .item + .item{
  margin-top: 80px;
}

/* 企画一覧 */
.plan_list_ttl{
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  gap:20px;
}
.plan_list_ttl img{
  max-width: 100%;
}
.plan_list_ttl .caption{
  font-size: 20px;
  font-weight: 700;
  text-align: left;
}
.plan_list_ttl .txt{
  font-size: 16px;
  line-height: 1.8;
}

/* 過去記事対応用 */
.scene .post_prof{
  flex-direction: column;
  gap:20px;
  align-items: center;
}
.scene .post_prof .prof_img, .ss_footer .prof_img {
  width: 80%;
}
.scene .post_prof .prof_txt, .ss_footer .prof_txt {
  width: 100%;
}
.scene .post_flex{
  flex-direction: column;
  gap:20px;
}
.scene .prof_img, .scene .ss_footer .prof_img{
  width: 100%;
}
.scene p:has(.link_btn){
  text-align: left;
}
.scene p .link_btn{
  display: inline-block;
  line-height: 1;
  margin-bottom: 10px;
}

.pagenation{
  margin: 40px auto;
}

.main_area .shop{
  max-width: 100%;
}
.main_area .shop .shop_inner{
  flex-direction: column;
  align-items: center;
}
.main_area .shop .shop_inner .txt{
  max-width: 100%;
  margin: 30px 0 0; 
}
.main_area .shop .shop_inner .txt .author{
  text-align: center;
}

.coffee_logo{
  width: 200px;
  max-width: 100%;
  margin: 30px auto 0;
}
.coffee_logo img{
  width: 100%;
}
.magazine-pickup .row{
  flex-direction: column;
  align-items: center;
  gap:20px;
}
.magazine-pickup .row .item{
  padding: 0;
  width: 80%;
}

.page_content.wrapper_lineup{
  width: 860px;
  padding: 40px 30px;
}
.page_content.wrapper_lineup .post_header{
  margin-top: 20px;
}
.page_content.wrapper_lineup .return_btn{
    width: 180px;
    height: 37px;
    border: solid 1px #b69d7f;
    border-radius: 50vh;
    background-color: #b69d7f;
    margin: 40px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFF;
}

.lesson{
  margin:30px auto 0;
  width:700px;
  max-width:100%;
  padding:40px;
  background-color:#eeeeee;
  position: relative;
}
.lesson::before{
  content:"PICK UP LESSON";
  font-size:15px;
  padding:3px 14px;
  background-color:#fff;
  color:#999;
  border:solid 1px #999;
  border-radius:50vh;
  position:absolute;
  top:-1em;
  left:50%;
  transform: translateX(-50%);
}
.lesson h3{
  margin-top: 10px;
}
.lesson dl{
  margin-top:20px;
  display:flex;
  flex-direction: column;
  gap:10px !important;
}
.lesson dl dt,.lesson dl dd{
  display:flex;
}
.lesson dl dt{
  width:100% !important;
  text-align:center;
  justify-content:center;
  align-items:center;
  border-bottom: solid 1px;
}
.lesson dl dd{
  width:100% !important;
}
.lesson .link{
  display:flex;
  margin-top:20px;
  justify-content:center;
}
.theme{
  flex-direction: column;
  gap:20px;
}
.main_txt .prof_img_s{
  width: 70%;
}
.single_in_ad{
  margin: 40px auto;
  width: 300px;
  display: flex;
  gap:30px;
  flex-direction: column;
  align-items: center;
}

@media only screen and (max-width: 1290px) {
  .header{
    display: block;
    position: absolute;
    z-index: 3;
    width: 100%;
  }
  .header .inner{
    justify-content: flex-end;
  }
  .header .logo_page{
    display: none;
  }
  .page_header{
    position: static;
  }
  
  .main_wrap{
    padding: 0 30px;
    justify-content: flex-end;
  }
  .left_area{
    width: 294px;
  }
  .left_area .inner{
    padding: 40px 0 70px;
  }
  .left_area .pc_logo{
    padding:40px 45px;
  }
  .left_area .date{
    padding: 20px 16px;
  }
  .left_area .category_list{
    padding: 0;
  }
  
  .popular_tags{
    padding: 0;
  }
  .left_area .pure_ad_area{
    display: block;
  }
  
  .main_area{
    width: calc(100% - 340px);
    max-width: 640px;
    margin-top: 40px;
  }
  
  .article_slider_wrap .item{
    width: calc(100vw - 640px);
  }
  .article_slider_wrap .item img{
    width: 100%;
  }
  .slick-slider{
    display: block !important;
  }
  
  .pickup_content .item{
    width: calc(50% - 10px);
  }
  .pickup_content .item img{
    width: 100%;
  }
  
  .column .item{
    width: calc(50% - 10px);
  }
  .column .item img{
    width: 100%;
  }
  
  .right_area{
    display: none;
  }
  
}

@media only screen and (max-width: 900px) {
  .wrap{
    background-color: transparent;
  }
  .header{
    display: block;
    position: absolute;
    z-index: 3;
    width: 100%;
  }
  .header .inner{
    justify-content: space-between;
  }
  .header .logo_page{
    display: block;
  }
  .sns_icon{
    font-size: 0;
  }
  .hamburger{
    width: 26px;
    height: 21px;
  }
  .hamburger span{
    width: 26px;
    left: 0;
  }
  .hamburger span:nth-child(2){
    top:10px;
  }
  .hamburger span:nth-child(3){
    top: 21px;
  }
  
  .global_menu .inner .flex{
    flex-direction: column;
  }
  .global_menu .inner .flex .left{
    width: 100%;
  }
  .global_menu .inner .flex .left .category_list{
    padding: 0 20px;
  }
  
  .global_menu .inner .flex .right{
    width: 100%;
    flex-direction: column;
  }
  .whimsical{
    width: 100%;
  }
  .menu_bnr{
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .menu_bnr li{
    width: calc(50% - 10px);
  }
  
  .left_area{
    display: none;
  }
  .main_wrap{
    padding: 0;
    overflow: hidden;
  }
  .main_wrap_top{
    padding: 0;
  }
  .main_area_top::after{
    display: none;
  }
  
  .main_visual .txt::after{
    content:"";
    position: absolute;
    top:-49px;
    right: -30px;
    width: 150px;
    height: 31px;
    background-image: url(../images/renewal/today_w.svg);
    background-repeat: no-repeat;
    background-size: contain;
  }
  
  .main_area{
    width: 100%;
    max-width: 100%;
    box-shadow:none;
    position: relative;
    z-index: 1;
    margin-top: 67px;
    margin-bottom: 0;
  }
  .main_area > .inner{
    border-radius: 0;
    box-shadow: none;
  }
  
  .article_slider_wrap .item{
    width: calc(100vw - 140px);
  }
  .ranking_slider .item{
    width: calc(100vw - 140px);
  }
  
  .ranking_slider_prev{
    left: 50px;
  }
  .ranking_slider_next{
    right: 50px;
  }
  
  
  .page_content{
    box-shadow: none;
  }
  
  .recommend_shop .inner{
    flex-direction: column;
  }
  .recommend_shop .img{
    width: 100%;
  }
  
  .contact .contact_form dl{
    flex-direction: column;
  }
  .contact .contact_form dl dt{
    width: 100%;
  }
  .contact .contact_form dl dd{
    width: 100%;
  }
  
  .page_content.wrapper_lineup{
    padding: 40px 0;
  }
  .page_content.wrapper_lineup .post_header{
    margin-top: 50px;
  }
  
  .page_content.wrapper_lineup{
    padding: 40px 0;
  }
  .page_content.wrapper_lineup .post_header{
    margin-top: 40px;
  }
  
  .page_content.wrapper_lineup{
    padding: 40px 0;
  }
  .page_content.wrapper_lineup .post_header{
    margin-top: 40px;
  }

}