@charset "utf-8";

/* スタイルシート
作成者：Hatomi Inc.
作成日：R8.4.09
-------------------------------------------------------------------------------------*/

/* =========================================================
  POST CONTENT
========================================================= */

.post-content{
  padding: 0 0 5rem;
}
@media (max-width: 900px){
  .post-content{
    padding: 0 0 4rem;
  }
}
@media (max-width: 480px){
  .post-content{
    padding: 0 0 3rem;
  }
}


/* =========================================================
  POST LAYOUT
========================================================= */

.postLayout{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 20rem;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 1100px){
  .postLayout{
    grid-template-columns: minmax(0, 1fr) 18rem;
    gap: 2.5rem;
  }
}
@media (max-width: 900px){
  .postLayout{
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.postLayout{
  padding: 1rem 0 3rem;
}
@media (max-width: 900px){
  .postLayout{
    padding: 1rem 0 2rem;
  }
}
@media (max-width: 480px){
  .postLayout{
    padding: 1rem 0 2rem;
  }
}

.postMain{
  min-width: 0;
}

.sidebar{
  min-width: 0;
  width: 100%;
  align-self: start;
}
@media (min-width: 901px){
  .sidebar{
    position: sticky;
    top: 7.5rem;
  }
}

/* =========================================================
  ARCHIVE CONTENT
========================================================= */

.archiveContent{
  padding: 1rem 0 3rem;
}
@media (max-width: 900px){
  .archiveContent{
    padding: 1rem 0 2rem;
  }
}
@media (max-width: 480px){
  .archiveContent{
    padding: 1rem 0 2rem;
  }
}


/* =========================================================
  ARCHIVE LAYOUT
========================================================= */

.archiveLayout{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 20rem;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 1100px){
  .archiveLayout{
    grid-template-columns: minmax(0, 1fr) 18rem;
    gap: 2.5rem;
  }
}
@media (max-width: 900px){
  .archiveLayout{
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.archiveMain{
  min-width: 0;
}

.archiveContent .sidebar{
  min-width: 0;
  width: 100%;
  align-self: start;
}
@media (min-width: 901px){
  .archiveContent .sidebar{
    position: sticky;
    top: 7.5rem;
  }
}


/* =========================================================
  POST TITLE
========================================================= */

.post-ttl{
  margin: 0;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  color: #78c544;
}
@media (max-width: 900px){
  .post-ttl{
    font-size: 1.75rem;
  }
}
@media (max-width: 480px){
  .post-ttl{
    font-size: 1.5rem;
    line-height: 1.45;
  }
}


/* =========================================================
  POST META
========================================================= */

.post-meta{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.875rem;
  margin-top: 0.875rem;
  padding-top: 0.875rem;
  border-top: 1px solid #e5e5e5;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #666;
}
@media (max-width: 480px){
  .post-meta{
    gap: 0.625rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    font-size: 0.8125rem;
  }
}

.post-meta span{
  display: inline-flex;
  align-items: center;
}

.post-date::before{
  content: "\f145";
  font-family: "dashicons";
  margin-right: 0.25rem;
  font-size: 1rem;
  line-height: 1;
  color: #7ac943;
}

.post-author::before{
  content: "\f110";
  font-family: "dashicons";
  margin-right: 0.25rem;
  font-size: 1rem;
  line-height: 1;
  color: #7ac943;
}

.post-meta span:not(:last-child)::after{
  content: "|";
  margin-left: 0.875rem;
  color: #b5b5b5;
}
@media (max-width: 480px){
  .post-meta span:not(:last-child)::after{
    margin-left: 0.625rem;
  }
}


/* =========================================================
  POST ENTRY
========================================================= */

.post-entry{
  margin-top: 2rem;
  color: #333;
  line-height: 1.9;
}
@media (max-width: 480px){
  .post-entry{
    margin-top: 1.5rem;
  }
}

.post-entry > *:first-child{
  margin-top: 0;
}

.post-entry p{
  margin: 0 0 1.5rem;
}

.post-entry h2,
.post-entry h3,
.post-entry h4{
  margin: 2.5rem 0 1rem;
  line-height: 1.5;
  color: #222;
}
@media (max-width: 480px){
  .post-entry h2,
  .post-entry h3,
  .post-entry h4{
    margin-top: 2rem;
  }
}

.post-entry img{
  max-width: 100%;
  height: auto;
}

.post-entry a{
  color: #2f7d32;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}


/* =========================================================
  SIDEBAR
========================================================= */

.sidebar{
  display: grid;
  gap: 1.5rem;
}
@media (max-width: 900px){
  .sidebar{
    gap: 1.25rem;
  }
}


/* =========================================================
  SIDEBAR BLOCK
========================================================= */

.sidebarBlock{
  padding: 1.5rem 1.25rem;
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 1rem;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.05);
}
@media (max-width: 480px){
  .sidebarBlock{
    padding: 1.25rem 1rem;
    border-radius: 0.875rem;
  }
}

.sidebarTitle{
  margin: 0 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #7ac943;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  color: #222;
}
@media (max-width: 480px){
  .sidebarTitle{
    margin-bottom: 0.875rem;
    padding-bottom: 0.625rem;
    font-size: 1rem;
  }
}


/* =========================================================
  SIDEBAR LIST COMMON
========================================================= */

.sidebarNewsList,
.sidebarCategoryList,
.sidebarInfoList,
.sidebarCategoryList .children{
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebarNewsList li,
.sidebarCategoryList li,
.sidebarInfoList li{
  margin: 0;
  border-bottom: 1px solid #eeeeee;
}

.sidebarNewsList li:last-child,
.sidebarCategoryList li:last-child,
.sidebarInfoList li:last-child{
  border-bottom: none;
}


/* =========================================================
  SIDEBAR LINK COMMON
========================================================= */

.sidebarNewsList a,
.sidebarCategoryList a,
.sidebarInfoList a{
  display: block;
  position: relative;
  padding: 0.875rem 1.25rem 0.875rem 0;
  color: #333;
  text-decoration: none;
  line-height: 1.6;
  transition: color 0.25s ease;
}
@media (max-width: 480px){
  .sidebarNewsList a,
  .sidebarCategoryList a,
  .sidebarInfoList a{
    padding-top: 0.75rem;
    padding-right: 1rem;
    padding-bottom: 0.75rem;
  }
}

.sidebarNewsList a::after,
.sidebarCategoryList a::after,
.sidebarInfoList a::after{
  content: "";
  position: absolute;
  top: 50%;
  right: 0.125rem;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 2px solid #7ac943;
  border-right: 2px solid #7ac943;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.25s ease;
}

.sidebarNewsList a:hover,
.sidebarCategoryList a:hover,
.sidebarInfoList a:hover{
  color: #7ac943;
}

.sidebarNewsList a:hover::after,
.sidebarCategoryList a:hover::after,
.sidebarInfoList a:hover::after{
  transform: translateY(-50%) rotate(45deg) translateX(0.125rem);
}


/* =========================================================
  SIDEBAR NEWS
========================================================= */

.sidebarNewsList a{
  font-size: 0.9375rem;
}


/* =========================================================
  SIDEBAR CATEGORY
========================================================= */

.sidebarCategoryList > li > a{
  font-weight: 700;
}

.sidebarCategoryList .children{
  padding: 0 0 0.5rem 0.875rem;
}
@media (max-width: 480px){
  .sidebarCategoryList .children{
    padding-left: 0.75rem;
  }
}

.sidebarCategoryList .children li{
  border-bottom: none;
}

.sidebarCategoryList .children a{
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 0.9375rem;
  color: #555;
}
@media (max-width: 480px){
  .sidebarCategoryList .children a{
    padding-top: 0.4375rem;
    padding-bottom: 0.4375rem;
  }
}

.sidebarCategoryList .children a::after{
  width: 0.375rem;
  height: 0.375rem;
  border-top-width: 1px;
  border-right-width: 1px;
}

.sidebarCategoryList .count{
  display: inline-block;
  margin-left: 0.375rem;
  color: #888;
  font-size: 0.875em;
}

.sidebarCategoryList,
.sidebarCategoryList .children{
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebarCategoryList .cat-item{
  margin: 0;
  border-bottom: 1px solid #eeeeee;
}

.sidebarCategoryList .cat-item:last-child{
  border-bottom: none;
}

.sidebarCategoryList .cat-item__link{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.875rem 0;
  color: #333;
  text-decoration: none;
  line-height: 1.6;
}

.sidebarCategoryList .cat-item__name{
  flex: 1 1 auto;
  min-width: 0;
}

.sidebarCategoryList .cat-item__count{
  flex: 0 0 auto;
  white-space: nowrap;
  color: #888;
  font-size: 0.875em;
}

/*count*/
.sidebarCategoryList,
.sidebarCategoryList .children{
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebarCategoryList .cat-item{
  margin: 0;
  border-bottom: 1px solid #eeeeee;
}

.sidebarCategoryList .cat-item:last-child{
  border-bottom: none;
}

.sidebarCategoryList .cat-item__link{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.875rem 0;
  color: #333;
  text-decoration: none;
  line-height: 1.6;
}

.sidebarCategoryList .cat-item__name{
  flex: 1 1 auto;
  min-width: 0;
}

.sidebarCategoryList .cat-item__count{
  flex: 0 0 auto;
  white-space: nowrap;
  color: #888;
  font-size: 0.875em;
	 font-weight: normal;
}

.sidebarCategoryList .cat-item__count {
  padding-right: 1rem;
}


/* =========================================================
  SIDEBAR INFORMATION
========================================================= */

.sidebarInfoList a{
  font-size: 0.9375rem;
  font-weight: 500;
}

/* =========================================================
  SIDEBAR ARCHIVE
========================================================= */

.sidebarArchive{
  margin-top: 0rem;
}

.sidebarArchive__title{
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.sidebarArchive__icon{
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background: #7ac943;
  position: relative;
}

.sidebarArchive__icon::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.4rem;
  height: 0.4rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}

.sidebarArchive__selectWrap{
  position: relative;
}

.sidebarArchive__select{
  width: 100%;
  padding: 0.6rem 2.5rem 0.6rem 1rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  font-size: 1rem;
  appearance: none;
  background: #fff;
  cursor: pointer;
}

.sidebarArchive__selectWrap::after{
  content: "\f347"; /* dashicons arrow-down */
  font-family: "dashicons";
  position: absolute;
  right: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}


/* =========================================================
  Sidebar Search
========================================================= */

.sidebarSearch{
  margin-top: .5rem;
}
.sidebarSearch__form{
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (max-width: 700px){
  .sidebarSearch__form{
    gap: 1.25rem;
  }
}
@media (max-width: 480px){
  .sidebarSearch__form{
    gap: 1rem;
  }
}

.sidebarSearch__input{
  display: block;
  width: 100%;
  min-width: 0;
  height: 2.8rem;
  padding: 0 1rem;
  border: 1px solid #CCC;
  border-radius: 0.25rem;
  background: #fff;
  color: #111;
  font-size: 1rem;
  box-sizing: border-box;
  appearance: none;
}
@media (max-width: 700px){
  .sidebarSearch__input{
    height: 3.25rem;
  }
}
@media (max-width: 480px){
  .sidebarSearch__input{
    height: 3rem;
    padding: 0 0.875rem;
    font-size: 0.95rem;
  }
}

input[type="search"] {
  box-sizing: border-box !important;
}

.sidebarSearch__input:focus{
  outline: none;
  border-color: #7AC943;
}

.sidebarSearch__button{
  width: 100%;
  min-width: 0;
  min-height: 2.8rem;
  padding: 0.3rem 3.5rem 0.3rem 1.5rem;
  border: 0;
  border-radius: 999px;
  background: #7AC943;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-decoration: none;
  box-sizing: border-box;
  cursor: pointer;
  appearance: none;
  transition: transform .2s ease, opacity .2s ease;
}
@media (max-width: 700px){
  .sidebarSearch__button{
    min-height: 2.8rem;
    padding: 0.3rem 3.25rem 0.3rem 1.25rem;
  }
}
@media (max-width: 480px){
  .sidebarSearch__button{
    min-height: 2.8rem;
    padding: 0.3rem 3rem 0.3rem 1rem;
  }
}

.sidebarSearch__button:hover{
  opacity: 1;
  transform: translateY(-1px);
}

.sidebarSearch__buttonLabel{
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: #fff;
  line-height: 1.4;
}
@media (max-width: 480px){
  .sidebarSearch__buttonLabel{
    font-size: 0.95rem;
  }
}

.sidebarSearch__buttonArrow{
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 1.75rem;
  height: 1.75rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform .22s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 28'%3E%3Cg%3E%3Cg%3E%3Cline x1='7' y1='14' x2='20' y2='14' fill='none' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cline x1='21' y1='14' x2='16.1' y2='18.9' fill='none' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cline x1='16.1' y1='9.1' x2='21' y2='14' fill='none' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Ccircle cx='14' cy='14' r='13.5' fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3C/svg%3E");
}
@media (max-width: 480px){
  .sidebarSearch__buttonArrow{
    right: 16px;
    width: 1.5rem;
    height: 1.5rem;
  }
}

.sidebarSearch__button:hover .sidebarSearch__buttonArrow{
  transform: translateY(-50%) translateX(.35rem);
}

/* =========================================================
  Sidebar Access
========================================================= */

.sidebarAccess{
  margin-top: 0;
}

.sidebarAccess__title{
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.5;
  color: #111;
}
@media (max-width: 700px){
  .sidebarAccess__title{
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
  }
}
@media (max-width: 480px){
  .sidebarAccess__title{
    gap: 0.625rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
  }
}

.sidebarAccess__icon{
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background: #7ac943;
  position: relative;

}
@media (max-width: 480px){
  .sidebarAccess__icon{
    width: 1.5rem;
    height: 1.5rem;
  }
}

.sidebarAccess__icon::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.4rem;
  height: 0.4rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}

.sidebarAccess__map{
  width: 100%;
}

.sidebarAccess__map a{
  display: block;
  transition: opacity .2s ease, transform .2s ease;
}

.sidebarAccess__map a:hover{
  opacity: 0.9;
  /*transform: translateY(-1px);*/
}

.sidebarAccess__map img{
  display: block;
  width: 100%;
  height: auto;
}

.sidebarAccess__note{
  margin: 1rem 0 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #666;
}
@media (max-width: 480px){
  .sidebarAccess__note{
    margin-top: 0.75rem;
    font-size: 0.9rem;
  }
}

.sidebarAccess__body{
  margin-top: 1rem;
}
@media (max-width: 480px){
  .sidebarAccess__body{
    margin-top: 0.875rem;
  }
}

.sidebarAccess__body p{
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}
@media (max-width: 480px){
  .sidebarAccess__body p{
    font-size: 0.95rem;
    line-height: 1.55;
  }
}


