@charset "UTF-8";

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 10px; }
body { color: #111; font-family: sans-serif, "M PLUS Rounded 1c";
  font-weight: 400;
  font-style: normal; font-size: 1.8rem; line-height: 1.6; -webkit-text-size-adjust: 100%;  }
img { border: 0; vertical-align: top; transition: all .3s ease; -ms-interpolation-mode: bicubic; max-width: 100%; }
button { background: transparent; border: none; appearance: none; cursor: pointer; outline: none; }
a { transition: all .3s ease; }
a:link { text-decoration: none; }
a:visited { text-decoration: none; }
a:hover { text-decoration: underline; }
a:hover img { opacity: 0.8; }
li{ list-style: none;}
:root{
  --primary-color:  #edecec;
  --secondary-color: #028d89;
  --border-color: #c7c7c7;
  --category-color: #fdd23e;
  --primary-font: "M PLUS Rounded 1c";
}
h1{
  font-family: var(--primary-font);
}
/* --------------------------------------------------
  汎用クラス
-------------------------------------------------- */

.d-block { display: block; }
.d-flex { display: flex; }
.d-none { display: none; }
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.clearfix::after { content: ''; display: block; clear: both; }

/* --------------------------------------------------
  共通部分
-------------------------------------------------- */
.title h1{
  font-size: 4rem;
  color: #fff;
  background: var(--secondary-color);
  text-align: center;
  margin-bottom: 20px;
  padding: 10px 0;
}

.title h2 {
  font-size: 3.5rem;
  font-family: var(--primary-font);
  margin: 60px 0;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
}
time{
  white-space: nowrap;
}

@media screen and (max-width: 1024px) {
.title h1{
  font-size: 3rem;
  margin-bottom: 30px;
  padding-top: 100px;
}
.title h2{
  font-size: 1.8rem;
  margin: 35px 0;
}
time{
  font-size: 1.6rem;
}
}
/* --------------------------------------------------
  ヘッダー
-------------------------------------------------- */
#header{
  background-color: #fff;
  border-top: solid var(--secondary-color) 10px;
}
#header .page-title{
  color: var(--secondary-color);
  font-size: 3rem;
  font-family: var(--primary-font);
  font-weight: bold;
  display: flex;
  align-items: center;
}
#header .page-title img{
  width: 110px;
  height: auto;
}
#header h2{
  font-size: 3rem;
}
#header .inner .menu{
  padding: 0 30px;
  margin-bottom: 10px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#header .inner a{
  text-decoration: none;
}
#header .inner #navi{
  display: flex;
  flex-direction: column;
  align-items: end;
}
#header .inner #navi ul{
  display: flex;
  gap: 30px;
}
#header .inner #navi ul li a{
  font-size: 1.6rem;
  font-weight: bold;
  color: #111;
}
#header .inner #navi ul li a::after{
  content: "";
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: .5s;
}
#header .inner #navi ul li a:hover:after{
  width: 100%;
  transition: .5s;
}
#header .inner .access{
  font-weight: bold;
  margin-bottom: 10px;
  border: solid var(--secondary-color) 1px;
  border-radius: 5px;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  justify-content: right;
  gap: 10px;
}
#header .inner .access p:nth-child(1){
  display: flex;
  align-items: center;
  gap: 5px;
}
#header .inner .access p:nth-child(2){
  color: var(--secondary-color);
  font-size: 1.5rem;
}
#header .inner .access a{
  color: var(--secondary-color);
  font-size: 2.4rem;
  pointer-events: none;
}
@media screen and (max-width: 1024px) {
  #header{
    width: 100%;
    position: fixed;
    z-index: 999;
    top: 0;
  }
  #header .page-title{
    font-size: 2rem;
  }
  #header .inner{
    padding: 0 20px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }
  #header .inner .menu{
    padding: 0;
    height: auto;
  }
  #header .inner .menu img{
    width: 80px;
    height: 80px;
  }
  #header .inner h1{
    font-size: 2rem;
  }
  #header .inner #navi{
    display: none;
  }
  #header .inner #navi ul{
    gap: 0px;
  }
  #header .inner #navi ul li a{
    padding: 15px;
    display: block;
  }
  #navi{
    width: 100%;
    height: calc(100vh - 90px);
    overflow: auto;
    display: none;
    background: #fff;
    position: fixed;
    top: 90px;
    left: 0;
    z-index: 999;
  }
  #navi ul{
    padding: 20px;
    flex-direction: column;
  }
  #navi li{
    border-bottom: solid #c7c7c7 1px;
  }
  #navi li:nth-child(1){
    border-top: solid #c7c7c7 1px;
  }
  #navi a{
    color: white;
  }
  body.on #header .inner #navi{
    display: block;
  }
  .menu-button{
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .menu-button .line01{
    width: 30px;
    height: 2px;
    background: #111;
    border-radius: 5px;
    transition: .5s;
    position: absolute;
    top: 35%;
  }
  .menu-button .line02{
    width: 30px;
    height: 2px;
    background: #111;
  }
  .menu-button .line03{
    width: 30px;
    height: 2px;
    background: #111;
    border-radius: 5px;
    transition: .5s;
    position: absolute;
    bottom: 35%;
  }
  body.on .menu-button .line01{
    width: 30px;
    height: 2px;
    transform: rotate(45deg);
    transition: .5s;
    position: absolute;
    top: auto;
  }
  body.on .menu-button .line02{
    display: none;
  }
  body.on .menu-button .line03{
    width: 30px;
    height: 2px;
    transform: rotate(-45deg);
    transition: .5s;
    position: absolute;
    bottom:auto;
  }
  #header .inner .access{
    align-items: center;
    flex-direction: column;
    margin: 15px;
    gap: 5px;
  }
  #header .inner .access a{
    font-size: 2.2rem;
    pointer-events: unset;
  }
}

/* --------------------------------------------------
  フッターナビ
-------------------------------------------------- */
#footer #footer-navi .inner{
  /*background: var(--secondary-color);
  padding: 15px 0;*/
  padding: 0;
}
#footer-navi .inner ul{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
#footer-navi .inner ul li a{
  color: #111;
  font-size: 1.6rem;
  font-weight: bold;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
#footer-navi .inner ul li a::after{
  content: "";
  width: 0;
  height: 2px;
  background: #111;
  transition: .5s;
}
#footer-navi .inner ul li a:hover:after{
  width: 100%;
  transition: .5s;
}
@media screen and (max-width: 1024px) {
  #footer-navi{
    display: none;
  }
  #footer-navi .inner ul li{
    width: 45%;
  }
  #footer-navi .inner ul{
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 15px;
  }
  #footer-navi .inner ul li a{
    align-items: center;
    border-bottom: solid #fff 1px;
  }
  #footer-navi .inner ul li a::after{
    display: none;
  }
}
/* --------------------------------------------------
  フッター
-------------------------------------------------- */
#footer{
  background: #fff;
  border-top: solid var(--secondary-color) 10px;
  position: relative;
  z-index: 2;
}
#footer .inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
}
#footer .inner .title{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#footer .inner .title a{
  text-decoration: none;
}
#footer .inner .title a{
  color: #111;
  font-size: 2.4rem;
  font-weight: bold;
  font-family: var(--primary-font);
  display: flex;
}
#footer .inner .footer-txt{
  color: #111;
  font-size: 1.6rem;
  margin-top: 15px;
}
#footer .inner .footer-txt p{
  margin-bottom: 5px;
}
#footer .inner .footer-txt a{
  color: #111;
  pointer-events: none;
}
#footer .inner .sns{
  /*display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;*/
}
/*#footer .inner .sns a{
  color: #111;
  border: solid var(--secondary-color) 1px;
  border-radius: 5px;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}*/
#footer .inner .right{
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: space-between;
}
#footer .inner .copyright{
  font-size: 1.2rem;
  color: #111;
}
#footer .inner .copyright br{
  display: none;
}
@media screen and (max-width: 1024px) {
  #footer .inner{
    background: var(--secondary-color);
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 30px 0;
  }
  #footer .inner .title{
    gap: 15px;
  }
  #footer .inner .title h3{
    font-size: 2rem;
  }
  #footer .inner .title a{
    color: #fff;
  }
  #footer .inner .title .sns{
    padding: 15px;
    background: #fff;
    border-radius: 100%;
  }
  #footer .inner .footer-txt{
    font-size: 1.6rem;
    margin-top: 15px;
  }
  #footer .inner .footer-txt p{
    margin-bottom: 10px;
    color: #fff;
  }
  #footer .inner .footer-txt a{
    pointer-events: unset;
    color: #fff;
  }
  /*#footer .inner .sns{
    text-align: center;
  }*/
  /*#footer .inner .sns a{
    font-size: 1.5rem;
    background: #fff;
    border: solid #fff 1px;
  }*/
  #footer .inner .copyright{
    color: #fff;
    text-align: center;
  }
  #footer .inner .copyright br{
  display: block;
}
}

/* --------------------------------------------------
  パンくず
-------------------------------------------------- */
.bs-crumbs ul{
  width: 1200px;
  margin: 0 auto 20px;
  padding: 0 15px;
  font-size: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.bs-crumbs ul li{
  display: flex;
  align-items: center;
  gap: 10px;
}
.bs-crumbs ul li:nth-child(1), .bs-crumbs ul li:nth-child(2){
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .bs-crumbs ul{
    width: 100%;
    font-size: 1.3rem;
    padding-left: 15px;
    padding-right: 22px;
    gap: 10px;
  }
  /*.bs-crumbs ul li:nth-child(3){
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;  
  }*/
}


/* --------------------------------------------------
  ページネーション
-------------------------------------------------- */
.bs-pagination{
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.bs-pagination span:nth-child(2){
  display: flex;
  gap: 20px;
}
.bs-pagination a, .bs-top-post-to-list a, .bs-widget-local-navi h2{
  background-color: #fff !important;
}
@media screen and (max-width: 1024px) {
}

@media screen and (max-width: 1024px) {
}