@charset "UTF-8";
/* CSS Document */
/* -------------------------------------------------
-------------------------------------------------
*01. common
*02. header
*03. footer
*04. 共通CSS (第2階層)
*05. 各ページ

-------------------------------------------------
------------------------------------------------- */
/* ---------------------------

01. pc common

---------------------------*/
/* ------------------

フォントサイズ 

------------------ */
/* ------------------

common 

------------------ */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playwrite+IE:wght@100..400&display=swap");
body {
  background-color: #FFF;
  color: #333;
  font-size: 1rem;
  font-family: "Montserrat", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.75rem;
  letter-spacing: 0.05em;
  margin: 0;
  overflow-x: hidden;
  position: relative;
  width: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  word-wrap: break-word;
}

.container {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  max-width: 1060px;
  padding: 0 20px;
  position: relative;
  width: 100%;
}
.container.container_second {
  padding-top: 48px;
}

/**
* bg
*/
.bg_gray {
  background-color: #eee;
}

.bg_white {
  background-color: #FFF;
}

.border_gray {
  border: 1px solid #DDD;
}

/**
* title
*/
/**
* text
*/
.line_height_120 {
  line-height: 120%;
}

.text_white {
  color: #FFF;
}

.text_gray {
  color: #888;
}

.text_red {
  color: #a70000;
}

p {
  margin-bottom: 1.5em;
}

.gothic {
  font-family: "Montserrat", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", Meiryo, sans-serif;
}

.gothic_en {
  font-family: "Playwrite IE", cursive;
}

.mincho, .single-entry-content .single_tit {
  font-family: "Amiri", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.float-right {
  float: right;
}

/* list */
.list-style-disc {
  margin-left: 3em;
}
.list-style-disc li {
  list-style: disc;
}

.list_center {
  text-align: center;
}
.list_center li {
  display: inline-block;
  margin: 0 13px;
}

.list_disc, .is-style-list_disc {
  list-style: none;
  margin: 0 0 0 -3px;
  padding: 0;
}
.list_disc > li, .is-style-list_disc > li {
  padding-left: 12px;
  position: relative;
}
.list_disc > li:before, .is-style-list_disc > li:before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

.img_w_100 {
  width: 100%;
  height: auto;
}

.w_100 {
  width: 100%;
}

.img_border {
  border: 1px solid #DDD;
}

.link_border {
  text-decoration: underline !important;
}

.link_border_none {
  text-decoration: none !important;
}

/* button */
a.btn:link, a.btn:visited, a.btn:hover, a.btn:active,
button.btn, input[type=submit].btn {
  border-radius: 0;
  text-decoration: none;
}
a.btn:link:hover, a.btn:visited:hover, a.btn:hover:hover, a.btn:active:hover,
button.btn:hover, input[type=submit].btn:hover {
  opacity: 0.7;
  text-decoration: none !important;
}

/* link */
a {
  cursor: pointer;
}

a:link, a:visited {
  cursor: pointer;
  color: #868686;
  text-decoration: none;
  outline: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

a:hover, a:active {
  color: #868686;
  cursor: pointer;
  outline: none;
  opacity: 0.5;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.anchorlink {
  padding-top: 80px;
  margin-top: -80px;
}

/* セレクトボックス */
.select-wrap {
  position: relative;
  margin: 0 auto 30px;
  max-width: 280px;
}

.select-wrap {
  position: relative;
  margin: 0 0 30px;
  max-width: 280px;
}
.select-wrap:before {
  border-right: 2px solid #333;
  border-top: 2px solid #333;
  content: "";
  display: block;
  height: 5px;
  right: 15px;
  position: absolute;
  top: 16px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  width: 5px;
  z-index: 1;
}
.select-wrap select {
  outline: none;
  -moz-appearance: none;
  text-indent: 0.01px;
  text-overflow: "";
  background: none transparent;
  vertical-align: middle;
  font-size: inherit;
  color: inherit;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 40px;
  padding: 8px 12px;
  border: 1px solid #d6d6d6;
  color: #828c9a;
  width: 100%;
  border-radius: 3px;
}
.select-wrap select option {
  background-color: #fff;
  color: #333;
}
.select-wrap select option::-ms-expand {
  display: none;
}
.select-wrap select option:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #828c9a;
}

.select-wrap.select-primary:before {
  color: #fff;
}
.select-wrap.select-primary:before > select {
  background: #0084B4;
  color: #fff;
  border-color: #0084B4;
}
.select-wrap.select-primary:before :-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #fff;
}

.select-wrap.select-inverse:before {
  color: #fff;
}
.select-wrap.select-inverse > select {
  color: #fff;
  border-color: #fff;
}

/* -------------------------------

02. header

------------------------------- */
/* ---------------------------

03. footer

---------------------------*/
#footer {
  background-color: #78baba;
  color: #FFF;
  padding: 40px 0 0;
}
#footer a {
  color: #FFF;
}

#btn_pagetop {
  background-color: #FFF;
  border: 2px solid #78baba;
  border-radius: 50%;
  color: #333;
  font-size: 0.625rem;
  text-align: center;
  width: 100px;
  height: 100px;
  position: fixed;
  right: 40px;
  bottom: 40px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  visibility: hidden;
  z-index: 1000;
}
#btn_pagetop .btn_pagetop_img {
  margin: 10px auto -8px;
  width: 60%;
  height: auto;
}
#btn_pagetop span {
  display: block;
}

body.is-animation #btn_pagetop {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  visibility: visible;
}

.copyrights {
  font-size: 0.6875rem;
  margin: 0;
  padding: 0 0 30px;
}
.copyrights p {
  margin: 0;
}

@media screen and (max-width: 425px) {
  #btn_pagetop {
    font-size: 0.5rem;
    width: 80px;
    height: 80px;
    right: 20px;
    bottom: 40px;
  }
  #btn_pagetop .btn_pagetop_img {
    margin: 10px auto -8px;
    width: 60%;
    height: auto;
  }
  #btn_pagetop span {
    display: block;
  }
  .footer_text p {
    margin-bottom: 0;
  }
  .copyrights {
    padding-bottom: 120px;
  }
  .copyrights p {
    font-size: 0.5625rem;
  }
}
/* ---------------------------

04. 共通CSS (第2階層)

---------------------------*/
body.is-slide-in, .is-slide-in {
  height: 100vh;
  overflow: hidden;
}

#loading ::before {
  content: "";
  position: fixed;
  bottom: auto;
  top: 100%;
  width: 100%;
  height: 100%;
  background-color: #78baba;
  z-index: 399;
  pointer-events: none;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}

#loading::after {
  content: "";
  position: fixed;
  bottom: 100%;
  top: auto;
  width: 100%;
  height: 100%;
  background-color: #78baba;
  z-index: 399;
  pointer-events: none;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}

#loading.is-slide-in::before {
  top: 0;
}

#loading.is-slide::after {
  bottom: 0;
}

#loading_logo {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  content: "";
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: auto;
  opacity: 0;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 346px;
  height: 346px;
  z-index: 499;
  pointer-events: none;
  -webkit-transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
#loading_logo img {
  margin: 0 auto;
}

#loading_logo.is-slide-in {
  opacity: 1;
}

#loading_logo.is-slide {
  opacity: 1;
}

@-webkit-keyframes wide-scale {
  0% {
    height: 118px;
  }
  100% {
    height: 0;
  }
}

@keyframes wide-scale {
  0% {
    height: 118px;
  }
  100% {
    height: 0;
  }
}
@media screen and (max-width: 425px) {
  #loading_logo {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    content: "";
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: auto;
    opacity: 0;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 146px;
    height: 146px;
    z-index: 499;
    pointer-events: none;
    -webkit-transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }
  #loading_logo img {
    margin: 0 auto;
  }
  #loading_logo.is-slide-in {
    opacity: 1;
  }
  #loading_logo.is-slide {
    opacity: 1;
  }
}
/* pankuzu */
.breadcrumb {
  margin: 0 50px 30px;
}
.breadcrumb ul {
  margin: 0;
  padding: 0;
}
.breadcrumb ul li {
  float: left;
  list-style: none;
  margin: 0;
  padding: 0 3px;
  color: #FFF;
}
.breadcrumb ul li:after {
  content: ">";
  margin-left: 10px;
}
.breadcrumb ul li:last-child:after {
  content: "";
}
.breadcrumb a {
  color: #FFF;
}
.breadcrumb a:hover {
  color: #FFF;
  opacity: 0.6;
}
.breadcrumb a:active {
  color: #FFF;
  opacity: 0.6;
}

/* ----------------------------------------------

05. 各ページ

----------------------------------------------*/
.c-container {
  max-width: 100%;
}

/*  --------------------------------------

top  

--------------------------------------*/
.g-top #hdr .nav_logo {
  max-width: 400px;
  width: 30vw;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.g-top #hdr.is-animation .nav_logo {
  width: 130px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.mv_container {
  position: relative;
}

.mv_news_container {
  background-color: #FFF;
  border-radius: 10px;
  max-width: 280px;
  position: absolute;
  right: 40px;
  bottom: 40px;
  width: 100%;
  z-index: 1;
}
.mv_news_container .mv_news_img {
  position: absolute;
  bottom: -40px;
  right: -10px;
  width: 60px;
}
.mv_news_container .mv_news_img img {
  width: 100%;
  height: auto;
}
.mv_news_container .mv_news_titset {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 20px 10px;
}
.mv_news_container .mv_news_titset a {
  background-color: #b09a5e;
  border-radius: 40px;
  color: #FFF;
  font-size: 0.6875rem;
  line-height: 120%;
  padding: 5px 10px;
}
.mv_news_container .mv_news_tit {
  font-size: 0.875rem;
  line-height: 1.125rem;
  margin: 0;
}
.mv_news_container .mv_news_tit span {
  font-size: 1.125rem;
  line-height: 1.125rem;
  margin-right: 10px;
}
.mv_news_container .mv_news_tit a {
  background-color: #b09a5e;
  color: #FFF;
  font-size: 0.75rem;
  line-height: 1.125rem;
  padding: 5px;
}
.mv_news_container .wp-block-latest-posts__list {
  padding: 0 40px 0 20px;
}
.mv_news_container .wp-block-latest-posts__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 0.875rem;
  margin-bottom: 20px;
}
.mv_news_container .wp-block-latest-posts__list li:last-child {
  margin: 0;
}
.mv_news_container .wp-block-latest-posts__list li .wp-block-latest-posts__post-title {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mv_news_container .wp-block-latest-posts__list li .wp-block-latest-posts__post-date {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
  line-height: 1.2em;
}

.swiper-pagination-bullet {
  background-color: #FFF;
  outline: 1px solid #DDD;
  border-radius: 100%;
  margin: 0 10px;
  width: 8px;
  height: 8px;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #78baba;
}

/* --------------------- menu --------------------- */
.top_menu_photoset .smb-panels__item {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.top_menu_photoset .smb-panels__item__body {
  border-radius: 10px;
  overflow: hidden;
  padding: 0;
}
.top_menu_photoset div.smb-panels__item--block-link {
  cursor: default;
}

/* --------------------- news --------------------- */
.top_news_list {
  border: 1px solid #b09a5e;
  border-radius: 20px;
  padding: 30px;
}
.top_news_list li {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #DDD;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.top_news_list li:last-child {
  margin: 0;
}
.top_news_list li .wp-block-latest-posts__post-title {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: calc(100% - 120px);
}
.top_news_list li .wp-block-latest-posts__post-date {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
  line-height: 1.2em;
  margin-right: 20px;
  width: 100px;
}

/* --------------------- access --------------------- */
.top_access_container iframe {
  width: 100%;
  height: 50vh;
}
.top_access_container figure img {
  width: 100%;
  height: auto;
}

.top_access_photo figure {
  border-radius: 10px;
  overflow: hidden;
}

@media screen and (max-width: 1023px) {
  .g-top #hdr .nav_logo {
    max-width: 200px;
    width: 40vw;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .g-top #hdr.is-animation .nav_logo {
    width: 65px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
}
@media screen and (max-width: 425px) {
  .mv_news_container {
    right: 0;
    bottom: 40px;
    left: 0;
    width: 90vw;
    z-index: 1;
  }
  .mv_news_container .mv_news_img {
    position: absolute;
    bottom: -40px;
    right: -10px;
    width: 60px;
  }
  .mv_news_container .mv_news_img img {
    width: 100%;
    height: auto;
  }
  /* --------------------- access --------------------- */
  .top_access_container {
    text-align: center;
  }
  .top_access_photo figure {
    border-radius: 10px;
    gap: 10px;
    margin: 0;
    overflow: hidden;
  }
  .mv_news_container .mv_news_titset {
    padding: 15px 20px 10px;
  }
  .mv_news_container .mv_news_titset a {
    font-size: 0.6875rem;
  }
  .mv_news_container .mv_news_tit {
    font-size: 0.6875rem;
  }
  .mv_news_container .wp-block-latest-posts__list li {
    margin-bottom: 5px;
  }
  .mv_news_container .wp-block-latest-posts__list li .wp-block-latest-posts__post-title {
    font-size: 0.6875rem;
  }
  .mv_news_container .wp-block-latest-posts__list li .wp-block-latest-posts__post-date {
    font-size: 0.5rem;
  }
  .top_news_list {
    padding: 20px;
  }
  .top_news_list li {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .top_news_list li:last-child {
    margin: 0;
  }
  .top_news_list li .wp-block-latest-posts__post-title {
    font-size: 0.75rem;
    line-height: 1.375rem;
    width: 100%;
  }
  .top_news_list li .wp-block-latest-posts__post-date {
    font-size: 0.625rem;
    margin-bottom: 5px;
    width: 100%;
  }
}
/*  --------------------------------------

下層 

--------------------------------------*/
.second_wrapper {
  padding-top: 80px;
}

@media screen and (max-width: 1023px) {
  .second_wrapper {
    padding-top: 50px;
  }
}
.second_hdr {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 50px;
  min-height: 300px;
  position: relative;
  width: 100%;
}
.second_hdr.second_hdr_news {
  background-color: #78baba;
  min-height: 120px;
}
.second_hdr.second_hdr_news:before {
  display: none;
}
.second_hdr:before {
  background-color: rgba(0, 0, 0, 0.2);
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.second_hdr .hdr_tit {
  color: #FFF;
  margin: 0;
  position: relative;
  z-index: 100;
}
.second_hdr .hdr_tit span {
  display: block;
  font-size: 0.9375rem;
  font-family: "Montserrat", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", Meiryo, sans-serif;
  margin: 0 auto;
  text-align: center;
}

.entry-content {
  font-size: 1rem;
  line-height: 1.875rem;
  padding-bottom: 50px;
}
.entry-content a {
  color: #448cd0;
  text-decoration: underline;
}
.entry-content .wp-block-image img, .entry-content .wp-block-column img, .entry-content .wp-block-media-text img {
  width: 100%;
  height: auto;
}
.entry-content .wp-block-media-text .wp-block-media-text__content {
  padding: 8%;
}
.entry-content a {
  color: #027bcf;
  text-decoration: underline;
}
.entry-content ul, .entry-content ol {
  margin-left: 2em;
}
.entry-content h1 {
  font-size: 1.375rem;
  font-weight: bold;
  line-height: 1.875rem;
  margin-bottom: 15px;
  padding-bottom: 10px;
}
.entry-content h2 {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.625rem;
}
.entry-content h3 {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.5rem;
}
.entry-content p + h1, .entry-content p + h2, .entry-content p + h3, .entry-content p + h4,
.entry-content ul + h1, .entry-content ul + h2, .entry-content ul + h3, .entry-content ul + h4,
.entry-content ol + h1, .entry-content ol + h2, .entry-content ol + h3, .entry-content ol + h4,
.entry-content div + h1, .entry-content div + h2, .entry-content div + h3, .entry-content div + h4,
.entry-content figure + h1, .entry-content figure + h2, .entry-content figure + h3, .entry-content figure + h4 {
  padding-top: 30px;
}

@media screen and (max-width: 425px) {
  .second_hdr {
    min-height: 150px;
  }
}
/*  -------------------

menu 

-------------------*/
#ez-toc-container {
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0;
}

#ez-toc-container ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
}
#ez-toc-container ul li {
  float: none;
}
#ez-toc-container ul li a {
  background-color: #78baba;
  border-radius: 30px;
  padding: 10px 20px;
}
#ez-toc-container ul li a:hover {
  text-decoration: none;
}

.ez-toc-counter nav ul li a::before {
  content: none;
}

.menu_container .smb-items__item__title {
  font-size: 1rem;
}
.menu_container .smb-items__item__figure {
  border-radius: 10px;
  overflow: hidden;
}
.menu_container table {
  border: none;
}
.menu_container table th {
  border: none;
  border-bottom: 1px solid #DDD;
  padding: 10px 0;
}
.menu_container table td {
  border: none;
  border-bottom: 1px solid #DDD;
  padding: 10px 0;
}

.envira-gallery-public.justified-gallery .envira-gallery-item-inner {
  border-radius: 10px;
}
.envira-gallery-public.justified-gallery .envira-gallery-item-inner .caption {
  visibility: hidden;
}

#envirabox-title-float-main {
  display: none;
  visibility: hidden;
}

.menu_pdf {
  margin-bottom: 10px;
}
.menu_pdf .vk_block-margin-sm--margin-bottom {
  margin: 0 !important;
}

@media screen and (max-width: 425px) {
  #ez-toc-container ul {
    gap: 10px;
  }
  #ez-toc-container ul li a {
    padding: 10px;
  }
}
/*  -------------------

news 

-------------------*/
.news_list_cat {
  list-style: none;
  margin-left: 15px;
  padding: 0;
}
.news_list_cat li {
  float: left;
}
.news_list_cat li a {
  background-color: #78baba;
  border-radius: 3px;
  color: #FFF;
  font-size: 0.75rem;
  line-height: 0.875rem;
  padding: 5px 10px;
}

.single-entry-content .single_tit {
  color: #333;
  font-size: 2rem;
  line-height: 2.5rem;
  margin-bottom: 20px;
}
.single-entry-content .single_cat {
  list-style: none;
  margin: 0 0 15px;
  padding: 0;
}
.single-entry-content .single_cat li {
  float: left;
}
.single-entry-content .single_cat li a {
  color: #666;
}
.single-entry-content .single_time_text {
  color: #666;
  font-size: 0.875rem;
  margin-right: 20px;
  margin-bottom: 0;
}
.single-entry-content .single_time_text + .single_cat {
  margin: 0;
}

.pagination {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 70px;
  margin-bottom: 80px;
  text-align: center;
}

ul.page-numbers {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.9375rem;
  line-height: 0.9375rem;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}
ul.page-numbers li {
  color: #333;
  padding: 0;
  margin: 0 7px;
}
ul.page-numbers li span {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #555;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
  height: 36px;
  width: 36px;
}
ul.page-numbers li a.page-numbers {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #f1e8ec;
  color: #78baba;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: normal;
  position: relative;
  text-decoration: none !important;
  height: 36px;
  width: 36px;
}
ul.page-numbers li a.page-numbers.next, ul.page-numbers li a.page-numbers.prev {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #f1e8ec;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
ul.page-numbers li a.page-numbers .nextlink {
  border-top: 1px solid #78baba;
  border-right: 1px solid #78baba;
  width: 8px;
  height: 8px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
ul.page-numbers li a.page-numbers .prevlink {
  border-top: 1px solid #78baba;
  border-left: 1px solid #78baba;
  width: 8px;
  height: 8px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* news */
ul.news_list_set {
  list-style: none;
  margin-bottom: 30px;
  padding: 0;
  width: 100%;
}
ul.news_list_set > li {
  margin: 0 0 30px;
  width: 100%;
}
ul.news_list_set > li article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
ul.news_list_set > li p {
  color: #999;
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.125rem;
}

.news_thumbnail {
  width: 150px;
}
.news_thumbnail img {
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  height: auto;
}

.news_list_text {
  width: calc(100% - 180px);
}

.news_list_time_set {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
}

.news_list_time {
  color: #999;
  display: block;
  font-size: 0.75rem;
  line-height: 0.75rem;
}

.news_list_tit {
  font-size: 1.125rem;
  font-weight: normal;
  line-height: 1.5rem;
  margin-bottom: 10px;
}
.news_list_tit a {
  color: #333;
}

.news_list_img_set {
  margin-bottom: 15px;
  position: relative;
  width: 217px;
}

.news_list_img {
  width: 183px;
}

/* news detail */
.single-title {
  font-size: 1.625rem;
  font-weight: bold;
  line-height: 2.25rem;
  margin: 30px 0;
}

.single-entry-content .news_list_time {
  margin-bottom: 10px;
}
.single-entry-content .news_list_cat {
  margin: 0;
}
.single-entry-content .single_hdr {
  border-bottom: 1px solid #78baba;
  margin-bottom: 40px;
  padding-bottom: 40px;
}
.single-entry-content .entry-content {
  font-size: 1rem;
}

.pagenation_title {
  padding-top: 60px;
  position: relative;
}
.pagenation_title a {
  background-color: #f1e8ec;
  color: #78baba;
  padding: 8px;
  text-decoration: none !important;
}
.pagenation_title ul {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  margin: 0 0 120px;
  padding: 0;
}
.pagenation_title ul li {
  margin: 0 3px;
}
.pagenation_title .pagenation_title_prev {
  font-size: 0.875rem;
  float: right;
  line-height: 1.25rem;
}
.pagenation_title .pagenation_title_prev a {
  padding-right: 26px;
  position: relative;
}
.pagenation_title .pagenation_title_prev a:after {
  border-top: 1px solid #78baba;
  border-right: 1px solid #78baba;
  content: "";
  display: block;
  margin: auto;
  position: absolute;
  top: -1px;
  right: 7px;
  bottom: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 8px;
  height: 8px;
}
.pagenation_title .pagenation_title_next {
  font-size: 0.875rem;
  float: left;
  line-height: 1.25rem;
}
.pagenation_title .pagenation_title_next a {
  padding-left: 26px;
  position: relative;
}
.pagenation_title .pagenation_title_next a:after {
  border-top: 1px solid #78baba;
  border-left: 1px solid #78baba;
  content: "";
  display: block;
  margin: auto;
  position: absolute;
  top: -1px;
  left: 7px;
  bottom: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  width: 8px;
  height: 8px;
}

@media screen and (max-width: 425px) {
  .news_thumbnail {
    width: 100px;
  }
  .news_list_text {
    width: calc(100% - 120px);
  }
  .news_list_tit {
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.5rem;
    margin-bottom: 10px;
  }
  .news_list_tit a {
    color: #333;
  }
}
/*  -------------------

contact

-------------------*/
.must {
  color: #c20037;
}

.page-content .contact_container {
  margin: 0 auto;
  width: 740px;
}
.page-content dl.form_dl {
  margin: 0;
}
.page-content dl.form_dl > dt {
  clear: left;
  float: left;
  margin: 0;
  padding-bottom: 15px;
  text-align: right;
  width: 240px;
}
.page-content dl.form_dl > dt + dd {
  margin: 0 0 0 260px;
  padding-bottom: 15px;
}
.page-content dl.form_dl > dt + dd p {
  font-size: 0.875rem;
  line-height: 1.5rem;
}
.page-content input[type=text], .page-content input[type=email], .page-content input[type=tel], .page-content textarea, .page-content select {
  border: 1px solid #666;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 5px;
  max-width: 100%;
  padding: 5px;
  width: 100%;
}
.page-content .mwform-tel-field input[type=text] {
  width: auto;
}
.page-content input[type=text]::-webkit-input-placeholder {
  color: #666;
}
.page-content input[type=text]::-moz-placeholder {
  color: #666;
}
.page-content input[type=text]:-ms-input-placeholder {
  color: #666;
}
.page-content input[type=text]::-ms-input-placeholder {
  color: #666;
}
.page-content input[type=text]::placeholder {
  color: #666;
}
.page-content input[type=file]::-webkit-file-upload-button {
  background-color: #666;
  border-radius: 60px;
  font-weight: bold;
  color: white;
  font-size: 14px;
  border: 0;
  margin-right: 5px;
  padding: 8px 16px;
  text-align: center;
}
.page-content input[type=file]::file-selector-button {
  background-color: #666;
  border-radius: 60px;
  font-weight: bold;
  color: white;
  font-size: 14px;
  border: 0;
  margin-right: 5px;
  padding: 8px 16px;
  text-align: center;
}
.page-content select {
  padding: 8px;
}
.page-content textarea {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 0.875rem;
  line-height: 1.5625rem;
  width: 100%;
  height: 202px;
  padding: 18px 14px;
}
.page-content .mw_wp_form .horizontal-item {
  margin-right: 10px;
}
.page-content .mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0;
}
.page-content .mw_wp_form .check_block .horizontal-item {
  display: block;
}
.page-content .btn_send {
  border: none;
  font-size: 1.125rem;
  font-weight: bold;
  letter-spacing: 0;
  margin: 0 auto;
  outline: none;
  padding: 20px 0;
  width: 340px;
}
.page-content .btn_back {
  border: none;
  color: #FFF;
  margin: 20px 0 0;
  outline: none;
  padding: 0;
}
.page-content .error_text .error {
  display: none;
}
.page-content .error_text p {
  color: #c41d25;
  font-size: 1rem;
  text-align: center;
}
.page-content textarea.textarea_min {
  height: 100px;
}

@media screen and (max-width: 768px) {
  .contact_container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
  }
  .contact_textset {
    width: 100%;
  }
}
/*  -------------------

gallery

-------------------*/
#sb_instagram .sb_instagram_header .sbi_header_text, .sb_instagram_header .sbi_header_text {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sbi_feedtheme_header_text {
  -webkit-box-flex: 0;
      -ms-flex: 0;
          flex: 0;
}

#sb_instagram .sb_instagram_header a, .sb_instagram_header a {
  color: #b09a5e;
}

#sb_instagram #sbi_load .sbi_load_btn, #sb_instagram .sbi_follow_btn a {
  border-radius: 50px;
  font-size: 1rem;
  padding: 15px 40px;
}

.sbi_follow_btn a {
  background: #b09a5e !important;
  -webkit-box-shadow: inset 0 0 10px 20px #b09a5e !important;
          box-shadow: inset 0 0 10px 20px #b09a5e !important;
}
.sbi_follow_btn a:hover {
  background: #b09a5e !important;
}

#sb_instagram #sbi_images {
  padding: 12px 0 30px;
}

/*  -------------------

404

-------------------*/
#post-not-found {
  padding: 200px 0 100px;
  text-align: center;
}

.error_link_ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*  -------------------

my-blocks

-------------------*/
/******************************************************************


******************************************************************/
.is-style-default, hr.is-style-default {
  background-color: transparent;
  border-top: 1px solid #333;
  border-right: none;
  border-left: none;
  margin: 0;
  opacity: 1;
  width: 100%;
  height: 1px;
}

.is-style-separator_doublle, hr.is-style-separator_doublle {
  background-color: transparent;
  border-top: 1px solid #333;
  border-right: none;
  border-bottom: 1px solid #333;
  border-left: none;
  margin: 0;
  opacity: 1;
  width: 100%;
  height: 5px;
}

.is-style-heading00 {
  color: #b09a5e;
  font-family: "Playwrite IE", cursive;
  font-size: 2.875rem;
  font-weight: 700;
  line-height: 180%;
  margin-bottom: 30px;
  position: relative;
}
.is-style-heading00 strong {
  display: block;
  font-size: 1.25rem;
  line-height: 1.4375rem;
}
.is-style-heading00:before {
  background-image: url(../images/common/tit_bg.png);
  background-size: 190px;
  content: "";
  display: block;
  margin: 0 auto;
  width: 190px;
  height: 86px;
}

.entry-content .is-style-heading00 {
  font-size: 2rem;
  line-height: 200%;
}
.entry-content .is-style-heading00 strong {
  display: block;
  font-size: 1.125rem;
  line-height: 1.25rem;
}

.is-style-heading01 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 180%;
  margin-bottom: 30px;
}

.is-style-heading02 {
  border-bottom: 1px solid #DDD;
  font-size: 1.4375rem;
  font-weight: 700;
  line-height: 180%;
  margin-bottom: 30px;
  padding-bottom: 10px;
}

.is-style-heading03 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 180%;
  margin-bottom: 10px;
}

.is-style-heading04 {
  color: #78baba;
  font-size: 1.4375rem;
  font-weight: 700;
  line-height: 180%;
  margin-bottom: 10px;
}

.is-style-paragraph01 {
  font-size: 1.125rem;
  line-height: 140%;
  margin-bottom: 30px;
}

.is-style-paragraph02 {
  font-size: 0.875rem;
  line-height: 160%;
  margin-bottom: 20px;
}

.is-style-separator_white {
  border-top: 1px solid #FFF;
  opacity: 1;
}

.is-style-separator_base {
  border-top: 1px solid #DDD;
  opacity: 1;
}

.is-style-table01 table {
  background-color: #faf0e4;
  border: 1px solid #DDD;
  border-collapse: collapse;
}
.is-style-table01 table th, .is-style-table01 table td {
  border: 1px solid #DDD;
  padding: 8px;
}

.is-style-btn_01 .wp-block-button__link {
  background-color: #b09a5e;
  color: #FFF;
  padding-right: 40px;
  padding-left: 40px;
  text-decoration: none;
}

.is-style-chara_01 {
  margin: -30px auto 10px;
  width: 100px;
  height: auto;
}
.is-style-chara_01 img {
  width: 100px;
  height: auto;
}

.menu_container .smb-items__item__content {
  font-size: 0.875rem;
  text-align: right;
}
.menu_container .smb-items__item__content strong {
  font-family: "Playwrite IE", cursive;
  font-size: 1.125rem;
}

@media screen and (max-width: 425px) {
  .entry-content .is-style-heading00, .is-style-heading00 {
    font-size: 1.875rem;
    margin-bottom: 20px;
    position: relative;
  }
  .entry-content .is-style-heading00:before, .is-style-heading00:before {
    background-image: url(../images/common/tit_bg.png);
    background-size: 140px;
    content: "";
    display: block;
    margin: 0 auto;
    width: 140px;
    height: 64px;
  }
  .is-style-heading01 {
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 180%;
    margin-bottom: 20px;
  }
  .is-style-heading02 {
    border-bottom: 1px solid #DDD;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 180%;
    margin-bottom: 30px;
    padding-bottom: 10px;
  }
  .is-style-heading03 {
    font-size: 1.1875rem;
    font-weight: 700;
    line-height: 180%;
    margin-bottom: 10px;
  }
  .is-style-paragraph01 {
    font-size: 1rem;
    line-height: 140%;
    margin-bottom: 30px;
  }
  .is-style-paragraph02 {
    font-size: 0.8125rem;
    line-height: 160%;
    margin-bottom: 20px;
  }
  .is-style-table01 table th, .is-style-table01 table td {
    padding: 5px;
  }
  .is-style-chara_01 {
    margin: -20px auto 10px;
    width: 80px;
  }
  .is-style-chara_01 img {
    width: 80px;
  }
}
/*# sourceMappingURL=style_pcsp.css.map */