@charset "UTF-8";
/******************************************************************************
******************************************************************************
**
** style.cssにおいて ( var.3.1.3 )
** -- baseでは基本タグとサイト大枠のCSS指定
** -- headerではヘッダーのCSS指定
** -- global navではグローバルナビのCSS指定
** -- contentではコンテント・メイン・サイドナビのCSS指定
** -- footerではフッターのCSS指定
** -- pagetopではページトップボタンのCSS指定
** -- indexではトップページのCSS指定
** -- pageでは汎用ページのCSS指定
** -- styleでは汎用ページのコンテンツ（データ入れ）で使用する基本タグのCSS指定
**
** 注意事項
** -- CSSの命名規則はApplicatsオリジナルの命名規則を採用しています。
** -- 初期フォントサイズはreset.cssにて13pxにリセットしています。
** -- 行間は1.6にリセットしています。
**        単位は不要です。(スタイル崩れする可能性有)
** -- コンテンツ内のフォントサイズ・行間は
**        [ base ]のcontentsクラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** style
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
html, body {
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
}

.w_base {
  width: 95%;
  margin: 0 auto;
}

/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg .hdBlock {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -100;
  width: 50vw;
  height: 200px !important;
  background: #dd911f;
}
.hd_bg .hd {
  position: relative;
  top: 15px;
  min-height: 40px;
  margin-bottom: 20px;
}
.hd_bg .hd .hd_logo a {
  display: flex;
  align-items: center;
  width: calc(100% - 13vw);
  color: #000;
  font-size: clamp(0.844rem, 0.588rem + 1.28vw, 1.406rem);
  line-height: 1.3;
  text-decoration: none;
}
.hd_bg .hd .hd_lang {
  display: none;
}
.hd_bg .hd .icon {
  display: none;
}
.hd_bg .hd_b {
  display: flex;
}
.hd_bg .hd_b .icon_sp a {
  display: block;
  margin-left: 5px;
  padding-top: 10px;
}
.hd_bg .hd_b .hd_img {
  margin-top: 10px;
  margin-right: calc(50% - 50vw);
  margin-left: 5%;
}
.hd_bg .hd_b .hd_img .metaslider {
  height: 100%;
}
.hd_bg .hd_b .hd_img .metaslider > div {
  height: 100%;
}
.hd_bg .hd_b .hd_img .metaslider > div .flexslider {
  height: 100%;
  margin: 0;
}
.hd_bg .hd_b .hd_img .metaslider > div .flexslider .slides {
  height: 100%;
}
.hd_bg .hd_b .hd_img .metaslider > div .flexslider .slides .ms-image {
  height: 100%;
}
.hd_bg .hd_b .hd_img .metaslider > div .flexslider .slides .ms-image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hd_bg .hd_b .hd_img img {
  width: 100%;
  aspect-ratio: 3/1;
  -o-object-fit: cover;
     object-fit: cover;
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.nav {
  position: fixed;
  top: 0px;
  right: -70%;
  width: 70%;
  z-index: 100;
  overflow-x: none;
  overflow-y: auto;
  height: calc(100% + 500px);
  padding-bottom: 500px;
  background: #333;
  color: #fff;
  transition: All 0.5s ease;
}
.nav .nav_list > li {
  position: relative;
}
.nav .nav_list > li > a {
  display: block;
  padding: 1.5em 3em 1.5em 1.5em;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.nav .nav_list > li > a:hover {
  background-color: rgba(0, 0, 0, 0.2);
}
.nav .nav_list > li.current a {
  background-color: rgba(0, 0, 0, 0.2);
}
.nav .nav_list > li .child_wrap_btn {
  position: absolute;
  top: 1.35em;
  right: 0.5em;
  z-index: 10;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: #fff;
}
.nav .nav_list > li .child_wrap_btn::before, .nav .nav_list > li .child_wrap_btn::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 1px;
  background-color: #333;
}
.nav .nav_list > li .child_wrap_btn::before {
  top: 50%;
  left: 50%;
  transform: rotate(0deg) translateX(-50%);
}
.nav .nav_list > li .child_wrap_btn::after {
  top: 50%;
  left: 0.5em;
  transform: rotate(90deg);
  transition: all 0.3s ease;
}
.nav .nav_list > li .child_wrap_btn.close::after {
  transform: rotate(0deg);
}
.nav .nav_list > li .child_wrap {
  display: none;
}
.nav .nav_list > li .child_wrap > .sub-menu > li {
  position: relative;
}
.nav .nav_list > li .child_wrap > .sub-menu > li > a {
  display: block;
  padding: 1.5em 3em 1.5em 2em;
  background-color: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 13px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.nav .nav_list > li .child_wrap > .sub-menu > li > a:hover, .nav .nav_list > li .child_wrap > .sub-menu > li > a.current {
  background-color: #000;
  box-shadow: 0 0 4px rgba(255, 0, 0, 0.2);
}
.nav .nav_list > li .child_wrap > .sub-menu > li .child_wrap_btn {
  position: absolute;
  top: 0.98em;
  right: 0.5em;
  z-index: 10;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: #fff;
}
.nav .nav_list > li .child_wrap > .sub-menu > li .child_wrap_btn::before, .nav .nav_list > li .child_wrap > .sub-menu > li .child_wrap_btn::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 1px;
  background-color: #333;
}
.nav .nav_list > li .child_wrap > .sub-menu > li .child_wrap_btn::before {
  top: 50%;
  left: 50%;
  transform: rotate(0deg) translateX(-50%);
}
.nav .nav_list > li .child_wrap > .sub-menu > li .child_wrap_btn::after {
  top: 50%;
  left: 0.5em;
  transform: rotate(90deg);
  transition: all 0.3s ease;
}
.nav .nav_list > li .child_wrap > .sub-menu > li .child_wrap_btn.close::after {
  transform: rotate(0deg);
}
.nav .nav_list > li .child_wrap > .sub-menu > li .child_wrap > .sub-menu > li > a {
  background-color: rgba(0, 0, 0, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  display: block;
  font-size: 11px;
  padding: 1.5em 1.5em 1.5em 3em;
  text-decoration: none;
}
.nav .nav_list > li .child_wrap > .sub-menu > li .child_wrap > .sub-menu > li > a:hover, .nav .nav_list > li .child_wrap > .sub-menu > li .child_wrap > .sub-menu > li > a.current {
  background-color: #000;
  box-shadow: 0 0 4px rgba(255, 0, 0, 0.2);
}
.nav .nav_lang {
  padding: 50px 0;
}
.nav .nav_lang a {
  display: block;
  width: 80%;
  max-width: 300px;
  margin: auto;
  padding: 1em;
  background-color: #fff;
  color: #333;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
}

.sp_nav_open {
  right: 0 !important;
}

.sp_nav_trigger {
  cursor: pointer;
  z-index: 1000;
  position: fixed !important;
  top: 25px;
  right: 15px;
  margin-top: -5px;
  width: 36px;
  height: 24px;
}
.sp_nav_trigger span {
  display: inline-block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #000;
  border-radius: 4px;
  transition: all 0.4s;
  box-sizing: border-box;
}
.sp_nav_trigger span:nth-of-type(1) {
  top: 0;
}
.sp_nav_trigger span:nth-of-type(2) {
  top: 10px;
}
.sp_nav_trigger span:nth-of-type(3) {
  bottom: 0;
}
.sp_nav_trigger::after {
  position: absolute;
  left: 0;
  bottom: -20px;
  content: "MENU";
  display: block;
  width: 100%;
  padding-top: 20px;
  color: #000;
  font-size: 10px;
  text-decoration: none;
  text-align: center;
  transition: all 0.4s;
}
.sp_nav_trigger.sp_active::after {
  content: "CLOSE";
  bottom: -25px;
  color: #fff;
}
.sp_nav_trigger.sp_active span:nth-of-type(1) {
  transform: translateY(10px) rotate(-45deg);
  background: #fff;
}
.sp_nav_trigger.sp_active span:nth-of-type(2) {
  opacity: 0;
  background: #fff;
}
.sp_nav_trigger.sp_active span:nth-of-type(3) {
  transform: translateY(-10px) rotate(45deg);
  background: #fff;
}

/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.con_bg .con {
  padding: 20px 10px 30px;
}
.con_bg .con:has(aside) {
  display: grid;
  gap: 50px;
}
.con_bg .con .alignright {
  display: block;
  margin: 0 0 0 auto !important;
}
.con_bg .con .alignleft {
  display: block;
  margin: 0 auto 0 0 !important;
}
.con_bg .con .aligncenter {
  display: block;
  margin: 0 auto !important;
}
.con_bg .con .wp-block-image img,
.con_bg .con .wp-block-image.has-custom-border img {
  width: 100%;
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
  margin-top: auto;
  background: #000;
}
.ft_bg .ft {
  padding: 30px 10px;
}
.ft_bg .ft .ft_l {
  color: #fff;
}
.ft_bg .ft .ft_l .ft_logo {
  display: flex;
  align-items: center;
  font-size: 1.5em;
}
.ft_bg .ft .ft_l .ft_address {
  margin-top: 20px;
}
.ft_bg .ft .ft_r .ft_nav {
  display: none;
}
.ft_bg .ft .ft_r .ft_copy {
  margin-top: 30px;
  color: #fff;
  font-size: 12px;
  text-align: center;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pageTop {
  position: sticky;
  right: 20px;
  bottom: 20px;
}
.pageTop .pt {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 60px;
  z-index: 100;
  margin-left: auto;
  margin-right: 20px;
  margin-bottom: 20px;
}
.pageTop .pt:hover {
  opacity: 0.6;
}
.pageTop .pt::after {
  position: absolute;
  content: "PAGE TOP";
  display: block;
  margin-top: 30px;
  font-size: 0.5em;
}
.pageTop .pt .pt_btn {
  position: relative;
  cursor: pointer;
  display: block;
  width: 20px;
  height: 20px;
  margin-top: 8px;
  transform: rotate(45deg);
}
.pageTop .pt .pt_btn::before, .pageTop .pt .pt_btn::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  background-color: #000;
}
.pageTop .pt .pt_btn::before {
  bottom: 0;
  width: 1px;
}
.pageTop .pt .pt_btn::after {
  right: 0;
  height: 1px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pager
******************************************************************************
----------------------------------------------------------------------------*/
.pager {
  margin: 40px 0 0;
}
.pager .pager_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.pager .pager_list .page-numbers {
  border: 1px solid #333;
  border-radius: 5px;
  color: #333 !important;
  display: block;
  font-size: 1rem;
  margin: 0 2px;
  padding: 5px 0;
  text-decoration: none;
  text-align: center;
  width: 2.4rem;
  transition: all 0.5s ease;
}
.pager .pager_list .page-numbers:not(.dots):hover, .pager .pager_list .page-numbers.current {
  background: #333;
  color: #FFF !important;
}
.pager .pager_list .page-numbers.dots {
  border-color: #333;
}

/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.index_main h2 {
  margin-bottom: 30px;
  background: linear-gradient(transparent 50%, #dd911f 50%);
  font-size: 2.2em;
  font-weight: 600;
  line-height: 1.35;
}
.index_main .index_greet h2 {
  margin-top: 0px;
}
.index_main .index_topics .index_topics_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.index_main .index_topics .index_topics_list .index_topics_item {
  width: 100%;
}
@media screen and (min-width: 520px) and (max-width: 768px) {
  .index_main .index_topics .index_topics_list .index_topics_item {
    width: calc((100% - 20px) / 2);
  }
}
.index_main .index_topics .index_topics_list .index_topics_item a {
  overflow: visible;
  display: block;
  width: 100%;
  height: 100%;
  color: #000;
  font-size: 1.3em;
  text-align: center;
  text-decoration: none;
  line-height: 3em;
  box-shadow: 5px 3px 15px -5px #c7c7c7;
}
.index_main .index_topics .index_topics_list .index_topics_item a img {
  display: block;
  width: 100%;
  transition-duration: 0.5s;
}
.index_main .index_topics .index_topics_list .index_topics_item a img:hover {
  transform: scale(0.9, 0.9);
  transition-duration: 0.5s;
}
.index_main .index_topics .index_topics_list .index_topics_item a .text {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.index_main .index_topics .index_topics_list .index_topics_item a .text .title {
  margin-bottom: 0;
  font-size: 1.2em;
  font-weight: 600;
  line-height: 1.6;
}
.index_main .index_topics .index_topics_list .index_topics_item a .text .description {
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.6;
}
.index_main .index_news .index_news_scrl {
  max-height: 300px;
  overflow: auto;
}
.index_main .index_news .index_news_scrl .index_news_item {
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  width: 100%;
  padding: 16px 0;
  border-bottom: 1px dotted #999;
}
.index_main .index_news .index_news_scrl .index_news_item .index_news_item_date {
  color: #666;
  font-weight: 600;
}
.index_main .index_news .index_news_scrl .index_news_item .index_news_item_category {
  flex-shrink: 0;
  padding: 2px 10px;
  background: #dd911f;
  font-weight: 700;
  border: 1px solid #000;
}
.index_main .index_news .index_news_scrl .index_news_item .index_news_item_ttl {
  width: 100%;
  margin-top: 10px;
}
.index_main .index_news .index_news_scrl .index_news_item .index_news_item_ttl a {
  color: #111;
}
.index_main .index_news .index_news_scrl .index_news_item .index_news_item_ttl a:hover {
  text-decoration: none;
}
.index_main .index_news .index_news_scrl .index_news_item .index_news_item_ttl .index_news_item_icon_new {
  display: inline-block;
  margin-left: 0.3em;
  color: #C00;
  font-size: 0.9em;
  font-weight: bold;
}
.index_main .index_news .index_news_scrl .index_news_item .index_news_item_ttl .index_news_item_icon_new:before {
  content: "NEW";
}

.index_side {
  display: grid;
  gap: 20px;
}
.index_side .index_side_access {
  border: 5px solid #dd911f;
}
.index_side .index_side_access .index_side_access_inner {
  padding: 20px;
}
.index_side .index_side_access .index_side_access_inner .index_side_access_content h2 {
  text-align: center;
  color: #dd911f;
  margin-bottom: 1em;
  padding: 0.5em;
  border-bottom: 2px dotted;
}
.index_side .index_side_access .index_side_access_inner .index_side_access_content .text {
  display: grid;
  gap: 1em;
  text-align: center;
}
.index_side .index_side_link .index_side_link_inner .index_side_link_list {
  display: grid;
  gap: 1em;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
}
.index_side .index_side_link .index_side_link_inner .index_side_link_list .index_side_link_item {
  border: 1px solid #999;
}
.index_side .index_side_link .index_side_link_inner .index_side_link_list .index_side_link_item a {
  display: block;
  padding: 1em 2em 1em 1em;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: all 0.3s ease;
}
.index_side .index_side_link .index_side_link_inner .index_side_link_list .index_side_link_item a:hover {
  opacity: 0.7;
}
.index_side .index_side_link .index_side_link_inner .index_side_link_list .index_side_link_item a::after {
  content: "";
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #999;
  border-right: solid 2px #999;
  transform: translateY(-50%) rotate(45deg);
  position: absolute;
  top: 50%;
  right: 1em;
}

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
.news_list {
  max-height: 300px;
  overflow: auto;
}
.news_list .news_item {
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  width: 100%;
  padding: 16px 0;
  border-bottom: 1px dotted #999;
}
.news_list .news_item .news_item_date {
  color: #666;
  font-weight: 600;
}
.news_list .news_item .news_item_category {
  flex-shrink: 0;
  padding: 2px 10px;
  background: #dd911f;
  font-weight: 700;
  border: 1px solid #000;
}
.news_list .news_item .news_item_ttl {
  width: 100%;
  margin-top: 10px;
}
.news_list .news_item .news_item_ttl a {
  color: #111;
}
.news_list .news_item .news_item_ttl a:hover {
  text-decoration: none;
}

.news_date {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  align-items: center;
  margin: -15px 0;
  font-size: 13px;
}
.news_date .news_cate {
  flex-shrink: 0;
  display: inline-block;
  margin-left: 10px;
  padding: 2px 10px;
  background: #dd911f;
  font-weight: 700;
  border: 1px solid #000;
}

/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.page_main {
  line-height: 1.6;
  word-wrap: break-word;
}
.page_main a img:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
.page_main h1 {
  margin-bottom: 30px;
  background: linear-gradient(transparent 50%, #dd911f 50%);
  font-size: 2.2em;
  font-weight: 600;
  line-height: 1.35;
}
.page_main h2 {
  position: relative;
  left: 0;
  margin-top: 16px;
  margin-bottom: 8px;
  padding: 15px 15px 15px 20px;
  font-size: 1.6em;
}
.page_main h2::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  width: 10px;
  height: 3px;
  background: #000;
}
.page_main h3 {
  position: relative;
  left: 0;
  margin-top: 16px;
  margin-bottom: 8px;
  padding: 15px 15px 15px 20px;
  font-size: 1.4em;
}
.page_main h3::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  width: 6px;
  height: 6px;
  background: #000;
}
.page_main h4 {
  position: relative;
  left: 0;
  margin-top: 16px;
  margin-bottom: 8px;
  padding: 15px 15px 15px 20px;
  font-size: 1.2em;
}
.page_main h4::before {
  position: absolute;
  top: 50%;
  left: 3px;
  transform: translateY(-50%);
  content: "";
  width: 6px;
  height: 6px;
  background: #999;
}
.page_main h5, .page_main h6 {
  margin-top: 5px;
  margin-bottom: 2px;
  font-size: 1.1em;
}
.page_main hr {
  border: none;
  border-top: 1px dotted #000;
}
.page_main iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
}
.page_main img {
  max-width: 100%;
  height: auto;
}
.page_main ol {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.page_main ol li {
  margin-left: 2em;
  margin-bottom: 0.5em;
}
.page_main p {
  margin-bottom: 1em;
}
.page_main ul {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.page_main ul li {
  margin-left: 1.5em;
  margin-bottom: 0.5em;
}
.page_main .wp-block-table table {
  width: 1000px;
}

/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** tabスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
@media screen and (min-width: 769px) and (max-width: 1024px) {
  /*----------------------------------------------------------------------------
  ******************************************************************************
  ** index
  ******************************************************************************
  ----------------------------------------------------------------------------*/
  .index_main .index_topics .index_topics_list {
    display: flex;
    flex-wrap: wrap;
  }
  .index_main .index_topics .index_topics_list .index_topics_item {
    width: calc((100% - 40px) / 3);
  }
}/*# sourceMappingURL=sp.css.map */