@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: #EEE;
}
.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: 1.5em;
 line-height: 1.3;
 text-decoration: none;
}
.hd_bg .hd .hd_logo a span {
 display: block;
 font-size: 0.5em;
}
.hd_bg .hd .hd_logo a img {
 width: 40px;
 height: auto;
 margin-right: 10px;
}
.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 img {
 width: 100%;
 min-height: 150px;
 -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);
}
.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 .main {
 margin-bottom: 30px;
}
/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
 margin-top: auto;
 background: #000;
}
.ft_bg .ft {
 padding: 30px 0;
}
.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_logo img {
 flex-shrink: 0;
 width: 30px;
 margin-right: 10px;
}
.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;
}
/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.index_main {
 margin-top: 50px;
}
.index_main h2 {
 margin-top: 50px;
 margin-bottom: 30px;
 background: linear-gradient(transparent 50%, #eee 50%);
 font-size: 2.2em;
 font-weight: 600;
}
.page_main h2 {
 margin-top: 50px;
 margin-bottom: 30px;
 background: linear-gradient(transparent 50%, #eee 50%);
 font-size: 2.2em;
 font-weight: 600;
}
.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%;
}
.page_main .index_topics .index_topics_list {
 display: flex;
 flex-wrap: wrap;
 gap: 20px;
}
.page_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 p {
 margin-bottom: 0;
 padding: 10px;
 font-size: 1.2em;
 font-weight: 600;
 line-height: 1.4;
}
.index_main .index_news h2 {
 margin-bottom: 0px;
}
.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: #eee;
 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";
}
@media screen and (min-width: 520px) and (max-width: 768px) {
 .page_main .index_topics .index_topics_list .index_topics_item {
  width: calc((100% - 20px) / 2);
 }
}
.page_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;
}
.page_main .index_topics .index_topics_list .index_topics_item a img {
 display: block;
 width: 100%;
 transition-duration: 0.5s;
}
.page_main .index_topics .index_topics_list .index_topics_item a img:hover {
 transform: scale(0.9, 0.9);
 transition-duration: 0.5s;
}
.page_main .index_topics .index_topics_list .index_topics_item a p {
 margin-bottom: 0;
 padding: 10px;
 font-size: 1.2em;
 font-weight: 600;
 line-height: 1.4;
}
.page_main .index_news h2 {
 margin-bottom: 0px;
}
.page_main .index_news .index_news_scrl02 {
 max-height: 300px;
 overflow: auto;
}
.page_main .index_news .index_news_scrl02 .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;
}
.page_main .index_news .index_news_scrl02 .index_news_item .index_news_item_date {
 color: #666;
 font-weight: 600;
}
.page_main .index_news .index_news_scrl02 .index_news_item .index_news_item_category {
 flex-shrink: 0;
 padding: 2px 10px;
 background: #eee;
 font-weight: 700;
 border: 1px solid #000;
}
.page_main .index_news .index_news_scrl02 .index_news_item .index_news_item_ttl {
 width: 100%;
 margin-top: 10px;
}
.ipage_main .index_news .index_news_scrl02 .index_news_item .index_news_item_ttl a {
 color: #111;
}
.page_main .index_news .index_news_scrl02 .index_news_item .index_news_item_ttl a:hover {
 text-decoration: none;
}
.page_main .index_news .index_news_scrl02 .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;
}
.page_main .index_news .index_news_scrl02 .index_news_item .index_news_item_ttl .index_news_item_icon_new:before {
 content: "NEW";
}
/*----------------------------------------------------------------------------
******************************************************************************
** 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: #eee;
 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: #eee;
 font-weight: 700;
 border: 1px solid #000;
}
div.vid_contents {
 width: 100%;
 text-align: center;
 margin: auto;
 padding: 4%;
 background: #EEE;
}
video.vid_main {
 width: 100%;
 max-width: 920px;
}
.img_txt p {
 font-size: 1em!important
}
/*----------------------------------------------------------------------------
******************************************************************************
** 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-top: 30px;
 margin-bottom: 30px;
 background: linear-gradient(transparent 50%, #eee 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;
}
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** 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 */