/*
* fontawesomeセット
* content:'\○○○';
* font: var(--fa-font-solid);
*/

@charset "utf-8";

@media screen and (max-width:1300px){
  .w126{
	 padding: 0 2%;
  }
}
/*=====================================
*
*header
*
=======================================*/
header{
    position:fixed;
	z-index:9999;
	top:0;
	left:0;
	width:100%;
	height:100px;
	background-color:#fff;
	transition:0.3s ease;
}

header.shadow {
    box-shadow: 0px 1px 20px rgba(68, 68, 68, 0.12);
}


header #header{
    display: flex;
    justify-content: space-between;
	height: 100%;
}

header #header .logo-area{
    padding: 5px 0;
}

header #header .shop-logo{
    width: 215px;
    margin-bottom: 6px;
}

header h1 {
  font-size:14px;
}

.menu-global-container {
    display: flex;
    align-items: end;
}

header #header ul{
  display:flex;
  gap:25px;
  margin-bottom: 10px;
}

header #header ul li a{
  position:relative;
  font-size:17px;
  font-weight:600;
  color:#333;
  letter-spacing:0.05em;
}

header #header ul li a::after{
  content:"";
  position:absolute;
  transform: translateX(-50%) scale(0,1);
  left:50%;
  bottom:-4px;
  width:65%;
  height:3px;
  background-color:#333;
  border-radius:5px;
  transition:0.3s ease-in-out;
}

@media (any-hover:hover){
  header #header ul li a:hover::after{
	transform: translateX(-50%) scale(1,1);
  }
}

@media screen and (min-width:901px) and (max-width:1024px){
	header {
      height: 85px;
   }
	
   header #header .shop-logo {
      width: 175px;
      margin-bottom: 4px;
   }
	
   header h1 {
     font-size: 12px;
   }
	
	header #header ul li a {
     font-size: 13px;
   }
}

@media screen and (min-width:901px){
	:is(.ham-bg,.ham-btn){
		display:none;
		pointer-events:none;
	}
}

@media screen and (max-width:900px){
  header {
    height: 90px;
  }
	
  header #header {
    align-items: center;
    height: 100%;
  }
	
   header #header .shop-logo {
      width: 145px;
      margin-bottom: 13px;
   }
	
   header h1 {
      font-size: 10px;
   }
	
  .menu-global-container {
	display: block;
    position: fixed;
    z-index: 9998;
	top:0;
    right: -45vw;
    background: #fff;
    width: 45vw;
    height: 100vh;
	padding: 35px 10px 35px 20px;
	transition:0.3s ease-in-out;
  }
	
  .menu-global-container.active {
	right: 0;	
  }
	
   header #header ul{
	  display: block;
	   margin:0;
   }
	
	header #header ul li + li{
		margin-top:30px;
	}
	
	header #header ul li a{
	  display:inline-block;
	  width:100%;
	}
	

  header #header ul li a::after{
    transform: initial;
    left:0;
    bottom:-9px;
	width:20%;
	max-width:40px;
  }
	
   .ham-btn{
	 position:fixed;
	 z-index:9996;
	 display:flex;
	 width:50px;
	 height:50px;
	 border-radius:50%;
	 background-color:#000;
  }
	
.ham-btn {
    position: fixed;
	top: 11px;
    right: 2%;
    z-index: 9996;
	display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
	flex-direction: column;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #000;
}
	
  .ham-btn span {
    display: inline-block;
    width: 24px;
    height: 3px;
    border-radius: 2px;
    background-color: #fff;
  }
	
    .ham-bg{
	  position:fixed;
	  z-index:9997;
	  top:0;
	  left:0;
	  width:100vw;
	  height:100vh;
	  background-color:#555;
	  opacity:0;
	  pointer-events:none;
	  transition:0.3s ease;
	}
	
	.ham-bg.active{
		opacity:0.75;
		pointer-events:auto;
	}
}

@media screen and (max-width:600px){
  .menu-global-container {
      width: 75vw;
	  right: -75vw;
    }
	
   header #header ul li a::after{
      width:10%;
   }
}

/*=====================================
*
*common
*
=======================================*/
.contents-area{
	padding-top:100px;
}

@media screen and (min-width:901px) and (max-width:1024px){
  .contents-area{
	  padding-top:85px;
  }
}

/*見出し*/
.hd01 :is(h1, h2, h3, h4) {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: calc(32 / 20);
    margin-bottom: 18px;
}

@media screen and (max-width:767px) {
    .hd01 :is(h1, h2, h3, h4) {
        font-size: 18px;
        letter-spacing: 0.02em;
        line-height: calc(32 / 18);
        margin-bottom: 15px;
    }
}

/*カテゴリー名*/
ul.cate_name {
  display: flex;
  gap: 10px 5px;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-top: 10px;
}

.cate_name li {
  width: fit-content;
  padding: 1.75px 18px 2.75px;
  background: #333;
}

.cate_name li a {
  font-size: 12px;
  letter-spacing: 0.02em;
  font-weight: 400;
  color: #fff;
}

/*日付*/
time {
  font-size: 12px;
  font-weight: 300;
  color: #777;
}

/*sp*/
@media screen and (max-width:767px) {

  .cate_name li {
    padding: 0 20px 2px;
  }

  .cate_name li a {
    font-size: 10px;
  }
}

.bg-gray {
    background: #f4f4f4;
}
/*=====================================
*
*記事一覧
*
=======================================*/
.cont-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 25px;
}

/*人気記事*/
.popular-list {
    margin-top: 40px;
    padding-bottom: 60px;
}

.popular-list .inner ul:not(.cate_name) {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.popular-list .list-area>ul>li {
    position: relative;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 5;
    transition: 0.3s ease;
}

@media (any-hover:hover){
  .popular-list .list-area>ul>li:hover{
	  opacity:0.75;
  }	
}

.popular-list ul li a {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 5;
    gap: 10px;
}

.popular-list .num {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    padding-bottom: 4px;
    background-color: #CDCDCD;
}

.popular-list ul li .img-area img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.popular-list ul.cate_name {
    padding-top: 12px;
    margin-top: -10px;
}

.popular-list ul li a h3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    letter-spacing: 0.04em;
    line-height: calc(24 /16);
    margin-top: 2px;
}

.popular-list ul li a .text{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.popular-list ul li a p {
    font-size: 14px;
    font-weight: 300;
    color: #333;
    letter-spacing: 0.02em;
    line-height: calc(19 / 14);
}

/*新着記事*/
article.new_article{
   width: 65%;
   padding:50px 0 75px;
}

article.new_article>ul li + li{
    margin-top:50px;
    padding-top: 50px;
    border-top: #eee solid 1px;
}

article.new_article>ul li {
    transition: 0.3s ease;
}

@media (any-hover:hover){
  article.new_article>ul li:hover{
	  opacity:0.75;
  }	
}

article.new_article>ul>li>a {
    display: flex;
    gap: calc((24 / 570) * 100%);
}

article.new_article>ul>li .image {
    width: calc(((224 / 570) * 100%) - calc((24 / 570) * 100%));
}

article.new_article>ul>li .image img {
    aspect-ratio: 5 / 4;
    object-fit: cover;
}

article.new_article>ul>li .text_area {
    width: calc((100% - (((224 / 570) * 100%) - calc((24 / 570) * 100%))) - calc((24 / 570) * 100%));
}

article.new_article>ul>li .text_area ul.cate_name{
	margin-top:0;
}

article.new_article>ul>li .text_area h3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    letter-spacing: 0.04em;
    line-height: calc(24 /16);
    margin-top: 8px;
    margin-bottom: 7px;
}

article.new_article>ul>li .text_area .text{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;align-content
}

article.new_article>ul>li .text_area .text p {
    font-size: 14px;
    font-weight: 300;
    color: #333;
    letter-spacing: 0.02em;
    line-height: calc(19 / 12);
    margin-bottom: 6px;
}

/*記事一覧のサイドバ－*/
.cont-wrapper .sidenav .side-column .image img {
    aspect-ratio: 2/1;
    object-fit: cover;
}

@media screen and (max-width:767px){
/*人気記事*/
  .popular-list {
    margin-top: 20px;
    padding-bottom: 60px;
  }
	
  .popular-list .inner ul:not(.cate_name) {
    grid-template-columns: repeat(1, 1fr);
  }
	
   .popular-list ul li:nth-of-type(n + 4){
	  display:none;	
   }
	
  .popular-list ul li .img-area img {
    aspect-ratio: 6 / 3;
  }
	
  article.new_article {
    width: 100%;
    padding: 30px 0 0;
  }
	
  :is(#top,#archive)  .sidenav  {
    width: 100%!important;
  }
}
/*=====================================
*
*single
*
=======================================*/
/*記事ヘッダー*/
#single .single-info {
    margin: 15px auto;
    background: #f4f4f4;
}

#single .single-info .inner{
    display: flex;
    gap: 50px;
    padding-top: 50px;	
	padding-bottom: 50px;	
}

#single .single-info .inner .img_area{
    width:45%;
}

#single .single-info .inner .text_area{
    width:calc(55% - 50px);
}

#single .single-info .text_area .cate_name{
	margin-bottom:15px;
}

#single .single-info .text_area .cate_name ul {
  display: flex;
  gap: 10px 5px;
}

#single .single-info .text_area .cate_name li {
  width: fit-content;
  padding: 1.75px 18px 2.75px;
  background: #333;
}

#single .single-info .text_area .cate_name a {
  font-size: 12px;
  letter-spacing: 0.02em;
  font-weight: 400;
  color: #fff;
}

#single .single-info .text_area .text p{
    font-size:14px;
	letter-spacing:0.05em;
    line-height:2.0;
	margin-bottom:15px;
}

#single .single-info .text_area time{
	font-size:12px;
	letter-spacing:0.05em;
}

@media screen and (max-width:1024px){
  #single .single-info .inner{
	  flex-wrap:wrap;
	  gap:30px;
  }
	
  #single .single-info .inner .img_area{
		width:100%;
  }
	
  #single .single-info .inner .img_area img{
		width:100%;
  }

  #single .single-info .inner .text_area{
		width:100%;
  }
}

/*目次*/
#single .toc {
    max-width: 800px;
	width:100%;
    padding: 20px 15px;
    margin: 50px auto;
    background: #f9f9f9;
    border: solid 1px #bdbdbd;
}

#single .toc>p {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-align: center;
}

#single .toc>p span{
	font-size: 0.8em;
	color:inherit;
}

#single .toc>p span a{
	color:inherit;
}

#single .toc ul {
  margin-top: 23px;
}

#single .toc ul li {
  display: flex;
  gap: 12px;
}

#single .toc ul li+li {
  margin-top: 17px;
}

#single .toc ul li span {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #666;
}

#single .toc ul li a {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: #222;
  line-height: calc(24 / 18);
  text-decoration: underline;
  transition: 0.3s ease-in;
}

@media (any-hover:hover) {
  #single .toc ul li a:hover {
    opacity: 0.75;
  }
}

/*コンテンツ*/
#single .contents .wrapper .inner{
	display:flex;
	justify-content:space-between;
    flex-wrap: wrap;
	margin-top:100px;
}

#single .contents .wrapper .inner .single-cont{
  width:65%;
}

#single .contents .wrapper .inner #toc_content h2 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    margin-top: 50px;
    padding: 0 10px;
    border-left: 5px solid #333;
}

#single .contents .wrapper .inner #toc_content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    letter-spacing: 0.05em;
    margin-top: 30px;
    margin-bottom: 20px;
    padding: 0 5px 10px;
    border-bottom: 1px solid #333;
}

#single .contents .wrapper .inner #toc_content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    letter-spacing: 0.05em;
    margin-top: 30px;
    margin-bottom: 20px;
    padding: 0 5px 10px;
    border-bottom: 3px dotted #333;
}

#single .contents .wrapper .inner #toc_content p {
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 2.0;
}

#single .contents .wrapper .inner #toc_content :is(ul, ol) {
    margin: 30px auto;
    padding: 15px;
    padding-left: calc(1.0em + 16px);
    list-style: initial;
    background: #f9f9f9;
}

#single .contents .wrapper .inner #toc_content :is(ul, ol) li {
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 30px;
    list-style: initial;
}

#single .contents .wrapper .inner #toc_content ol li {
    list-style: decimal;
}

#single .contents .wrapper .inner #toc_content figure {
    margin: 30px auto;
}

#single .contents .wrapper .inner #toc_content .wp-block-button__link {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    padding: 13px 35px;
    margin-top: 30px;
    background: #333;
	border-radius:0;
	transition:0.3s ease;
}

@media (any-hover:hover){
  #single .contents .wrapper .inner #toc_content .wp-block-button__link:hover{
	opacity:0.75;
  }
}

/*関連記事*/
#single article.article-list {
  margin-top:75px;
  padding-top: 80px;
  padding-bottom:80px;
  background-color:#F4F4F4;
}

#single article.article-list ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

#single article.article-list ul li{
	transition:0.3s ease;
}

@media (any-hover:hover){
	#single article.article-list ul li:hover{
		opacity:0.7;
	}
}

#single article.article-list ul li a h3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 16px;
  font-weight: 600;
  color: #222;
  letter-spacing: 0.04em;
  line-height: calc(24 /16);
  margin-top: 2px;
}

#single article.article-list ul li .image img {
  aspect-ratio: 4/3;
  object-fit: cover;
}

/*sidenav single*/
@media screen and (min-width:768px){
  #single .sidenav .wrapper {
      position: sticky;
	  top: 110px;
  }
}

/*tb*/
@media screen and (max-width:1024px){
  /*コンテンツ*/
  #single .contents .wrapper .inner{
	margin-top: 60px;
  }
	
   #single .contents .wrapper .inner .single-cont {
      width:65%;
   }
}

/*sp*/
@media screen and (max-width:767px){
  /*コンテンツ*/
  #single .contents .wrapper .inner{
	margin-top: 50px;
  }
	
   #single .contents .wrapper .inner > *{
	width:100%!important;
   }
	
  /*関連記事*/
  #single article.article-list ul {
    grid-template-columns: repeat(1, 1fr);
  }
	
  #single article.article-list ul li:nth-of-type(n + 4){
	  display:none;
  }
	
 #single article.article-list ul li .image img {
     aspect-ratio: 6/3;
  }
}
/*=====================================
*
*pagenation
*
=======================================*/
article.new_article .pagination ul {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 25px;
    width: fit-content;
    margin: 60px auto 0;
}

article.new_article .pagination ul li {
    font-family: "Noto Sans JP";
    font-weight: bold;
    max-height: 36px;
}

article.new_article .pagination ul li:not(.next, .prev) span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    border-radius: 5px;
    background-color: #333;
}

article.new_article .pagination ul li:not(.next, .prev) a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-size: 14px;
    font-weight: 600;
    color: #777;
    border-radius: 5px;
    background-color: #f4f4f4;
}

article.new_article .pagination ul li:is(.prev, .next) span {
    position: relative;
    display: inline-block;
    width: 36px;
    height: 36px;
}

article.new_article .pagination ul li:is(.prev, .next) span a:before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-left: 2px solid #333;
    border-bottom: 2px solid #333;
}

article.new_article .pagination ul li.next {
    right: -53px;
}

article.new_article .pagination ul li.next span a:before {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-135deg);
}

article.new_article .pagination ul li.prev {
    left: -53px;
}

article.new_article .pagination ul li.prev span a:before {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}
/*=====================================
*
*archive
*
=======================================*/

/*=====================================
*
*breadcrumb
*
=======================================*/
.breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 28px;
  padding-top: 20px;
}

.breadcrumb ul:last-of-type{
  padding-top: 8px;
}

.breadcrumb ul li {
  position: relative;
  font-size: 12px;
  font-weight: 300;
}

.breadcrumb ul li a {
  color: #777777;
}

.breadcrumb ul li:last-of-type a {
  color: #534741;
}

.breadcrumb ul li:not(:last-of-type) a:before {
  content: "";
  position: absolute;
  top: 50%;
  right: -22px;
  width: 6px;
  height: 6px;
  border-style: solid;
  border-color: transparent #DEDEDE #DEDEDE transparent;
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 2;
}

@media screen and (max-width:767px) {
  .breadcrumb-area {
    border-bottom: 1px solid #EDEDED;
  }

  .breadcrumb ul {
    gap: 8px 28px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .breadcrumb ul li {
    font-size: 10px;
  }
}
/*=====================================
*
*toc
*
=======================================*/

/*=====================================
*
*footer
*
=======================================*/
footer{
	background: #333;
    color: #777;
    font-size: 13px;
    position: relative;
	padding: 30px 0 10px;
}

footer .flex-wrapper {
    display: flex;
    justify-content: space-between;
}

footer .flex-wrapper .footer-text p:nth-of-type(1){
	font-size:1.2em;
	font-weight:bold;
	margin-bottom:5px;
}

footer .flex-wrapper .footer-text a{
   color:inherit;
}

footer .flex-wrapper .menu-area ul{
	display:flex;
	gap:20px;
}

footer .flex-wrapper .menu-area ul li a{
	color:inherit;
}

footer .copyright{
	font-size:10px;
	color:#fff;
	text-align:center;
	margin-top:25px;
	padding-top:10px;
	border-top:1px solid #777;
}

@media screen and (max-width:900px){
  footer .flex-wrapper {
    flex-wrap:wrap;
  }	
	
	footer .flex-wrapper .menu-area{
		width:100%;
		margin-top:20px;
	}
}

@media screen and (max-width:767px){
  footer .flex-wrapper .menu-area ul{
	display:block;
  }
	
  footer .flex-wrapper .menu-area ul li + li{
	margin-top:15px;
  }	
}
/*=====================================
*
*sidenav
*
=======================================*/
.sidenav{
  width:25%;
  margin-top: 50px;
}

.sidenav .side-column>ul {
  padding-bottom: 80px;
}

.sidenav .side-column li+li {
  margin-top: 20px;
  padding-top: 20px;
  border-top:#eee solid 1px;
}

.sidenav .side-column li a {
  transition: 0.3s ease-in;
}

@media (any-hover:hover) {
  .sidenav .side-column li a:hover {
    opacity: 0.75;
  }
}

.sidenav .side-column .image img {
  aspect-ratio: 4/3;
  object-fit: cover;
}

.sidenav .side-column h3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: calc(24 / 16);
  color: #222;
  margin-top: 5px;
  margin-bottom: 5px;
}

.sidenav .side-column ul.cate_name li + li{
   margin:0;
}

/*tb*/
@media screen and (max-width:1024px){
   .sidenav {
      width: 30%;
   }
}

/*sp*/
@media screen and (max-width:767px){
  .sidenav .side-column .image img {
    aspect-ratio: 5/3;
  }
}

/*=====================================
*
*404
*
=======================================*/
#page-404{
  position:relative;
  padding:calc(30vh + 100px) 0 30vh;
  text-align:center;
}

#page-404 .wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-weight: bold;
  font-size: 100px;
  opacity: 0.1;
  pointer-events: none;
}

#page-404 .wrapper p:first-of-type{
	font-size:2.0em;
    line-height:1.0;
}

#page-404  > p{
	font-size:25px;
    font-weight:500;
	letter-spacing:0.05em;
	line-height:2.0;
}

.btn01 {
    margin-top: 50px;
}

.btn01 a {
    background-color: #333;
    color: #fff;
    padding: 15px 30px;
	transition:0.3s ease-in-out;
}

@media (any-hover:hover){
	.btn01 a:hover{
		opacity:0.75;
	}
}

@media screen and (max-width:1024px){
  #page-404{
    padding:calc(30vh + 90px) 0 30vh;
  }	
	
  #page-404 .wrapper {
    font-size: 75px;
   }
}

@media screen and (max-width:767px){
	#page-404 {
      padding: calc(20vh + 90px) 0 20vh;
   }
	
	#page-404 .wrapper {
      font-size: 40px;
   }
	
  #page-404  > p {
    font-size: 18px;
   }
}
/*=====================================
*
*pc&tablet&spのnone処理
*
=======================================*/
/*=====================================
*pcのみ
=======================================*/
@media screen and (min-width: 1025px){
  .pcnone{
    display: none;
  }
}
/*=====================================
*tablet用
=======================================*/
@media screen and (max-width: 1024px) and (min-width: 415px){
  .tabnone{
    display: none;
  }
}
/*=====================================
*sp用
=======================================*/
@media screen and (max-width:414px){
  .spnone{
    display: none;
  }
}
