@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クラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** PCスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
html, body {
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
}

.w_base {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-right: 20px;
  padding-left: 20px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg .hdBlock {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -100;
  width: 50vw;
  height: 300px;
  background: #dd911f;
}
.hd_bg .hd {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  padding-bottom: 30px;
}
.hd_bg .hd .hd_logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #000;
  font-size: 2em;
}
.hd_bg .hd .hd_lang a {
  display: block;
  padding: 0.5em 1em;
  background-color: #dd911f;
  text-decoration: none;
  color: #000;
  font-weight: bold;
  border: 1px solid;
  transition: all 0.3s ease;
}
.hd_bg .hd .hd_lang a:hover {
  opacity: 0.7;
}
.hd_bg .hd .icon {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.hd_bg .hd .icon a {
  display: block;
  transition: all 0.3s ease;
}
.hd_bg .hd .icon a img {
  width: 100%;
  height: auto;
  transition: all 0.3s ease;
}
.hd_bg .hd .icon a:hover img {
  opacity: 0.7;
}
.hd_bg .hd_b .icon_sp {
  display: none;
}
.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_list {
  display: flex;
  justify-content: center;
  gap: 2em;
  width: 100%;
  margin: 0 0 20px;
}
.nav_list > li {
  position: relative;
  z-index: 1000;
}
.nav_list > li > a {
  position: relative;
  left: 0;
  display: block;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  text-align: left;
  white-space: nowrap;
  line-height: 2em;
  transition: all 0.3s ease;
}
.nav_list > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #000;
  transition: all 0.3s ease;
}
.nav_list > li > a:hover {
  opacity: 0.7;
}
.nav_list > li > a:hover::after {
  width: 100%;
}
.nav_list > li.current a::after {
  width: 100%;
}
.nav_list > li:hover .child_wrap {
  display: block;
  animation: nav_active 1s ease 0s 1 alternate;
}
@keyframes nav_active {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.nav_list > li > .child_wrap {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 100;
  display: none;
  width: -moz-max-content;
  width: max-content;
  transition: All 0.5s ease;
}
.nav_list > li > .child_wrap > .sub-menu > li {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}
.nav_list > li > .child_wrap > .sub-menu > li > a {
  display: block;
  padding: 10px;
  background: #000;
  color: #fff;
  text-decoration: none;
}
.nav_list > li > .child_wrap > .sub-menu > li > a:hover, .nav_list > li > .child_wrap > .sub-menu > li > a.current {
  opacity: 0.8;
}
.nav_list > li > .child_wrap > .sub-menu > li.current a {
  opacity: 0.8;
}
.nav_list > li > .child_wrap > .sub-menu > li:hover .child_wrap {
  display: block;
  animation: nav_active 1s ease 0s 1 alternate;
}
.nav_list > li > .child_wrap > .sub-menu > li > .child_wrap {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: 100;
  display: none;
  width: -moz-max-content;
  width: max-content;
}
.nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  border-left: 1px solid rgba(255, 255, 255, 0.4);
}
.nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li > a {
  display: block;
  padding: 10px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  text-decoration: none;
}
.nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li > a:hover, .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li > a.current {
  background: #222;
  box-shadow: 0 0 4px rgba(255, 0, 0, 0.2);
}

.nav_lang {
  display: none;
}

/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.con_bg .con {
  padding-top: 50px;
  padding-bottom: 50px;
}
.con_bg .con:has(aside) {
  display: flex;
  align-items: flex-start;
  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 {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 30px;
  padding-bottom: 30px;
}
.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 .ft_nav_list {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}
.ft_bg .ft .ft_r .ft_nav .ft_nav_list li a {
  display: block;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.ft_bg .ft .ft_r .ft_nav .ft_nav_list li a:hover {
  opacity: 0.6;
}
.ft_bg .ft .ft_r .ft_nav .ft_nav_list li > .child_wrap {
  display: none;
}
.ft_bg .ft .ft_r .ft_copy {
  margin-top: 20px;
  color: #fff;
  font-size: 12px;
  text-align: center;
  text-align: right;
}

/*----------------------------------------------------------------------------
******************************************************************************
** 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;
  font-size: 0.5em;
  margin-top: 30px;
}
.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: #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 {
  display: grid;
  gap: 50px;
}
.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_topics .index_topics_list {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.index_main .index_topics .index_topics_list .index_topics_item {
  width: calc((100% - 40px) / 3);
}
.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 .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_topics .index_topics_list .index_topics_item a:hover img {
  transform: scale(0.9, 0.9);
  transition-duration: 0.5s;
}

.index_news .index_news_scrl {
  max-height: 300px;
  overflow: auto;
}
.index_news .index_news_scrl .index_news_item {
  display: flex;
  align-items: flex-start;
  align-content: space-between;
  -moz-column-gap: 20px;
       column-gap: 20px;
  width: 100%;
  padding: 16px 0;
  border-bottom: 1px dotted #999;
}
.index_news .index_news_scrl .index_news_item .index_news_item_date {
  color: #666;
  font-weight: 600;
}
.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_news .index_news_scrl .index_news_item .index_news_item_ttl {
  width: calc(100% - 140px);
}
.index_news .index_news_scrl .index_news_item .index_news_item_ttl a {
  color: #111;
}
.index_news .index_news_scrl .index_news_item .index_news_item_ttl a:hover {
  text-decoration: none;
}
.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_news .index_news_scrl .index_news_item .index_news_item_ttl .index_news_item_icon_new:before {
  content: "NEW";
}
.index_news.en .index_news_scrl .index_news_item .index_news_item_ttl {
  width: calc(100% - 170px);
}

.index_side {
  display: grid;
  gap: 20px;
  width: 25%;
  flex-shrink: 0;
}
.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;
}
.index_side .index_side_link .index_side_link_inner .index_side_link_list {
  display: grid;
  gap: 1em;
}
.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 .news_item {
  display: flex;
  align-items: flex-start;
  align-content: space-between;
  -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 {
  padding: 2px 10px;
  background: #dd911f;
  font-weight: 700;
  border: 1px solid #000;
}
.news_list .news_item .news_item_ttl {
  width: calc(100% - 140px);
}
.news_list .news_item .news_item_ttl a {
  color: #111;
}
.news_list .news_item .news_item_ttl a:hover {
  text-decoration: none;
}
.news_list.en .news_item .news_item_ttl {
  width: calc(100% - 170px);
}

.news_date {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  align-items: center;
  margin: -15px 0 -25px;
  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 {
  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;
  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: 5px;
  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;
}/*# sourceMappingURL=style.css.map */