@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 {
 overflow-x: hidden;
}
.w_base {
 margin: 0 auto;
 max-width: 1000px;
 width: 100%;
}
a {
 text-decoration: none;
}
/*----------------------------------------------------------------------------
  ******************************************************************************
  ** header
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.hd_bg {
 padding: 10px 0;
 display: flex;
 position: fixed;
 align-items: center;
 justify-content: space-between;
 z-index: 1000;
 top: 0;
 left: 50%;
 transform: translateX(-50%);
 width: 100%;
 color: #000;
 background: rgb(255, 255, 255) !important;
 transition: all 0.5s ease;
 filter: drop-shadow(5px 0px 5px rgba(0, 0, 0, 0.1));
}
.hd_logo a {
 color: #000;
 transition: all 0.5s ease;
}
.hd_logo a .hd_item {
 display: flex;
 justify-content: flex-start;
 align-items: center;
}
.hd_logo a .hd_item span {
 display: block;
 font-size: 15px;
 line-height: 1.2em;
}
.hd_bg .hd .hd_logo a .hd_item span .hd_logo_en {
 font-size: 0.55em;
}
.hd_logo a .hd_item img {
 max-width: 80px;
 width: 100%;
 height: auto;
 margin: 5px;
 transition: all 0.5s ease;
}
.hd_logo a span {
 display: none;
}
.hd_lang {
 position: absolute;
 right: 0;
 top: 0;
}
/*----------------------------------------------------------------------------
  ******************************************************************************
  ** global nav PC
  ******************************************************************************
  ----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
  ******************************************************************************
  ** global nav sp
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.nav {
 position: fixed;
 top: -100vh;
 left: 0;
 z-index: 100;
 overflow-x: auto;
 overflow-y: auto;
 width: 100%;
 height: 100vh;
 background: #fff;
 transition: All 0.8s ease;
}
.nav .nav_list {
 display: flex;
 flex-direction: column;
 gap: 1px;
}
.nav .nav_list .nav_hd_logo a {
 color: #fff;
 transition: all 0.5s ease;
}
.nav .nav_list .nav_hd_logo a .hd_item {
 display: flex;
 justify-content: flex-start;
}
.nav .nav_list .nav_hd_logo a .hd_item span {
 display: block;
 margin: 2px;
 font-size: 15px;
 line-height: 1.2em;
}
.nav .nav_list .nav_hd_logo a .hd_item img {
 max-width: 100px;
 width: 100%;
 height: auto;
 margin: 5px;
 background: #fff;
 padding: 5px;
}
.nav .nav_list .nav_hd_logo a span {
 display: none;
}
.nav .nav_list .nav_icon {
 display: flex;
 justify-content: center;
 background: #191970;
}
.nav .nav_list .nav_icon .icon_items {
 margin: 20px;
}
.nav .nav_list .nav_icon .icon_items a {
 opacity: 1;
 transition: all 0.5s ease;
}
.nav .nav_list .nav_icon .icon_items a:nth-of-type(2) {
 padding: 0 30px;
}
.nav .nav_list .nav_icon .icon_items a:hover {
 opacity: 0.5;
 transition: all 0.5s ease;
}
.nav .nav_list > li {
 position: relative;
}
.nav .nav_list > li > a {
 position: relative;
 display: block;
 padding: 1em;
 background: #191970;
 color: #fff;
 font-size: 18px;
 font-weight: bold;
 text-decoration: none;
}
.nav .nav_list > li > a:hover, .nav .nav_list > li > a.current {
 background-color: rgba(0, 0, 0, 0.2);
}
.nav .nav_list > li .child_wrap_btn {
 position: absolute;
 top: 0.75em;
 right: 15px;
 z-index: 10;
 flex-shrink: 0;
 width: 40px;
 height: 40px;
}
.nav .nav_list > li .child_wrap_btn::before, .nav .nav_list > li .child_wrap_btn::after {
 position: absolute;
 content: "";
 width: 25px;
 height: 3px;
 background-color: #fff;
}
.nav .nav_list > li .child_wrap_btn::before {
 top: 50%;
 left: 20px;
 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 > p {
 display: none;
}
.nav .nav_list > li .child_wrap > .sub-menu {
 background: #191970;
}
.nav .nav_list > li .child_wrap > .sub-menu li {
 position: relative;
}
.nav .nav_list > li .child_wrap > .sub-menu li a {
 position: relative;
 display: flex;
 align-items: center;
 padding: 1.25em 0 1.25em 3.5em;
 color: #fff;
 font-size: 15px;
 text-decoration: none;
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn {
 position: absolute;
 top: 1.25em;
 right: 15px;
 z-index: 10;
 flex-shrink: 0;
 width: 30px;
 height: 30px;
 background: #191970;
}
.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: 20px;
 height: 3px;
 background-color: #fff;
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn::before {
 top: 50%;
 left: 15px;
 transform: rotate(0deg) translateX(-50%);
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn::after {
 top: 50%;
 left: 0.4em;
 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 {
 position: relative;
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap > .sub-menu li a {
 display: flex;
 align-items: center;
 padding: 1.25em 0 1.25em 3.5em;
 color: #fff;
 font-size: 15px;
 text-decoration: none;
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap > .sub-menu li a::before {
 content: "ー";
 margin-right: 5px;
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap > .sub-menu li .child_wrap > .sub-menu {
 background: #191970;
}
.sp_nav_open {
 top: 0 !important;
}
.sp_nav_trigger {
 cursor: pointer;
 z-index: 1000;
 position: fixed !important;
 top: 0;
 right: 0;
 width: 45px;
 height: 45px;
}
.sp_nav_trigger span {
 display: inline-block;
 position: absolute;
 left: 50%;
 transform: translateX(-50%);
 width: 27px;
 height: 3px;
 background-color: #000;
 transition: all 0.5s ease;
 box-sizing: border-box;
}
.sp_nav_trigger span:nth-of-type(1) {
 top: 30%;
}
.sp_nav_trigger span:nth-of-type(2) {
 top: 50%;
 transform: translate(-50%, -50%);
}
.sp_nav_trigger span:nth-of-type(3) {
 bottom: 30%;
}
.sp_nav_trigger.sp_active span:nth-of-type(1) {
 top: 50%;
 transform: translate(-50%, -50%) rotate(-45deg);
}
.sp_nav_trigger.sp_active span:nth-of-type(2) {
 opacity: 0;
}
.sp_nav_trigger.sp_active span:nth-of-type(3) {
 top: 50%;
 transform: translate(-50%, -50%) rotate(45deg);
}
/*----------------------------------------------------------------------------
  ******************************************************************************
  ** tel
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.tel {
 display: none;
}
/*----------------------------------------------------------------------------
******************************************************************************
** color change
******************************************************************************
----------------------------------------------------------------------------*/
.colorchange.hd_bg {
 color: #040404;
 background-color: rgba(255, 255, 255, 0.8);
 transition: all 0.5s ease;
}
.colorchange.hd_bg .hd .hd_logo a {
 color: #040404;
 transition: all 0.5s ease;
}
.colorchange.hd_bg .hd .hd_logo a .hd_item img {
 transition: all 0.5s ease;
}
.colorchange.sp_nav_trigger span {
 background-color: #404040;
 transition: all 0.5s ease;
}
.colorchange.sp_nav_trigger.sp_active span {
 background-color: #fff;
}
/*----------------------------------------------------------------------------
  ******************************************************************************
  ** content
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.con_bg {
 background: url(../images/con_bg.png) no-repeat;
}
.con {
 display: flex;
 flex-wrap: wrap;
 justify-content: space-between;
 padding: 30px 0;
}
.main {
 order: 1;
 width: 700px;
}
.side {
 order: 2;
 width: 230px;
}
.side h3 {
 background-color: #EEE;
 color: #111;
 font-size: 1.1em;
 font-weight: bold;
 margin-bottom: 6px;
 padding: 8px;
 text-align: center;
}
.side_nav_list li a {
 background: url(../images/icon_arrow_gray.png) no-repeat left center;
 border-bottom: 1px solid #CCC;
 color: #111;
 display: block;
 padding: 12px 10px;
 text-decoration: none;
}
.side_nav_list li a:hover, .side_nav_list li a.current {
 text-decoration: underline;
}
/*----------------------------------------------------------------------------
  ******************************************************************************
  ** footer
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.ft_bg .ft_con {
 display: flex;
 flex-wrap: wrap;
 text-align: center;
 justify-content: center;
 margin: 15px auto;
}
.ft_bg .ft_con .ft_box {
 width: 100%;
}
.ft_bg .ft_con .ft_box h2 {
 margin: 15px 0px 7px;
 font-size: 24px;
 font-weight: bold;
 line-height: 1.2em;
 color: #191970;
}
.ft_bg .ft_con .ft_box .ft_logo {
 display: flex;
 justify-content: center;
 align-items: center;
}
.ft_bg .ft_con .ft_box .ft_logo img {
 width: 150px;
 height: auto;
 margin: 5px;
}
.ft_bg .ft_con .ft_box .ft_logo h2 {
 margin: 0;
 font-size: 14px;
 text-align: left;
 color: #000;
}
.ft_bg .ft_con .ft_box .ft_address {
 display: flex;
 flex-wrap: wrap;
}
.ft_bg .ft_con .ft_box .ft_address p {
 width: 100%;
}
.ft_bg .ft_con .ft_box .ft_address p:last-of-type {
 margin-left: 5px;
}
.ft_bg .ft_con .ft_icon {
 display: flex;
 justify-content: flex-end;
 align-items: flex-end;
}
.ft_bg .ft_con .ft_icon .ft_icon_items a {
 opacity: 1;
 transition: all 0.5s ease;
}
.ft_bg .ft_con .ft_icon .ft_icon_items a img {
 margin: 5px 10px;
}
.ft_bg .ft_con .ft_icon .ft_icon_items a:hover {
 opacity: 0.5;
 transition: all 0.5s ease;
}
.ft_bg .ft {
 padding: 10px 0;
 background-color: #191970;
}
.ft_bg .ft .ft_copy {
 font-size: 10px;
 text-align: center;
 color: #fff;
}
/*----------------------------------------------------------------------------
  ******************************************************************************
  ** pagetop
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.pt {
 border-radius: 50%;
 background-color: #333;
 bottom: 30px;
 cursor: pointer;
 display: flex;
 align-items: center;
 justify-content: center;
 height: 60px;
 right: 30px;
 position: fixed;
 width: 60px;
 z-index: 100;
 opacity: 0;
 transition: all 0.3s ease;
}
.pt:hover {
 opacity: 0.6;
}
.pt_btn {
 cursor: pointer;
 display: block;
 width: 20px;
 height: 20px;
 margin-top: 8px;
 transform: rotate(45deg);
 position: relative;
 opacity: 0;
 transition: all 0.3s ease;
}
.pt_btn::before, .pt_btn::after {
 background-color: #FFF;
 content: "";
 display: block;
 top: 0;
 left: 0;
 position: absolute;
}
.pt_btn::before {
 width: 7px;
 bottom: 0;
}
.pt_btn::after {
 height: 7px;
 right: 0;
}
.advent.pt {
 opacity: 1;
 transition: all 0.3s ease;
}
.advent.pt .pt_btn {
 opacity: 1;
 transition: all 0.3s ease;
}
/*----------------------------------------------------------------------------
  ******************************************************************************
  ** index
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.index_main {
 order: 1;
 width: 700px;
}
.index_side {
 order: 2;
 width: 230px;
}
.index_bnr_list li {
 margin-bottom: 4px;
}
.index_bnr_list a {
 padding: 16px 16px 16px 42px;
 border: 1px solid #000000;
 border-radius: 3px;
 display: block;
 text-decoration: none;
 background: url(../images/icon_elink_black.png) no-repeat 16px center;
 color: #000000;
}
.index_bnr_list a:hover {
 background-color: #000;
 background-image: url(../images/icon_elink_white.png);
 color: #FFF;
}
.index_news, .index_about, .index_features, .index_project {
 display: flex;
 justify-content: space-around;
 flex-wrap: wrap;
 padding: 30px 0;
}
.index_news .index_about_box, .index_news .index_features_box, .index_news .index_project_box {
 width: 100%;
 margin: 30px;
 padding: 15px;
}
.index_about .index_about_box, .index_about .index_features_box, .index_about .index_project_box {
 width: 100%;
 margin: 30px;
 padding: 15px;
}
.index_features .index_about_box, .index_features .index_features_box, .index_features .index_project_box {
 width: 100%;
 margin: 30px;
 padding: 15px;
}
.index_project .index_about_box, .index_project .index_features_box, .index_project .index_project_box {
 width: 100%;
 margin: 30px;
 padding: 15px;
}
.index_news .index_about_box h2, .index_news .index_features_box h2, .index_news .index_project_box h2 {
 font-family: "Source Sans 3", sans-serif;
 font-size: 10vw;
 line-height: 1.5em;
 text-align: left;
}
.index_about .index_about_box h2, .index_about .index_features_box h2, .index_about .index_project_box h2 {
 font-family: "Source Sans 3", sans-serif;
 font-size: 10vw;
 line-height: 1.5em;
 text-align: left;
}
.index_features .index_about_box h2, .index_features .index_features_box h2, .index_features .index_project_box h2 {
 font-family: "Source Sans 3", sans-serif;
 font-size: 10vw;
 line-height: 1.5em;
 text-align: left;
}
.index_project .index_about_box h2, .index_project .index_features_box h2, .index_project .index_project_box h2 {
 font-family: "Source Sans 3", sans-serif;
 font-size: 10vw;
 line-height: 1.5em;
 text-align: left;
}
.index_news .index_about_box h2 span, .index_news .index_features_box h2 span, .index_news .index_project_box h2 span {
 display: block;
 font-family: "Noto Sans JP", sans-serif;
 font-size: 4vw;
}
.index_about .index_about_box h2 span, .index_about .index_features_box h2 span, .index_about .index_project_box h2 span {
 display: block;
 font-family: "Noto Sans JP", sans-serif;
 font-size: 4vw;
}
.index_features .index_about_box h2 span, .index_features .index_features_box h2 span, .index_features .index_project_box h2 span {
 display: block;
 font-family: "Noto Sans JP", sans-serif;
 font-size: 4vw;
}
.index_project .index_about_box h2 span, .index_project .index_features_box h2 span, .index_project .index_project_box h2 span {
 display: block;
 font-family: "Noto Sans JP", sans-serif;
 font-size: 4vw;
}
.index_news .index_about_box a, .index_news .index_features_box a, .index_news .index_project_box a {
 display: block;
 font-size: 15px;
 text-align: right;
}
.index_about .index_about_box a, .index_about .index_features_box a, .index_about .index_project_box a {
 display: block;
 font-size: 15px;
 text-align: right;
}
.index_features .index_about_box a, .index_features .index_features_box a, .index_features .index_project_box a {
 display: block;
 font-size: 15px;
 text-align: right;
}
.index_project .index_about_box a, .index_project .index_features_box a, .index_project .index_project_box a {
 display: block;
 font-size: 15px;
 text-align: right;
}
.index_news .index_about_box p, .index_news .index_features_box p, .index_news .index_project_box p {
 padding-bottom: 20px;
 font-size: 15px;
 color: #404040;
}
.index_about .index_about_box p, .index_about .index_features_box p, .index_about .index_project_box p {
 padding-bottom: 20px;
 font-size: 15px;
 color: #404040;
}
.index_features .index_about_box p, .index_features .index_features_box p, .index_features .index_project_box p {
 padding-bottom: 20px;
 font-size: 15px;
 color: #404040;
}
.index_project .index_about_box p, .index_project .index_features_box p, .index_project .index_project_box p {
 padding-bottom: 20px;
 font-size: 15px;
 color: #404040;
}
.index_news .index_news_scrl, .page .index_news .index_news_scrl {
 width: 100%;
 margin: 15px;
 display: flex;
 flex-wrap: wrap;
}
.index_news .index_about_scrl, .index_news .index_features_scrl, .index_news .index_project_scrl {
 width: 100%;
 margin: 15px;
 display: flex;
 flex-wrap: wrap;
}
.index_about .index_news_scrl, .index_about .index_about_scrl, .index_about .index_features_scrl, .index_about .index_project_scrl {
 width: 100%;
 margin: 15px;
 display: flex;
 flex-wrap: wrap;
}
.index_features .index_news_scrl, .index_features .index_about_scrl, .index_features .index_features_scrl, .index_features .index_project_scrl {
 width: 100%;
 margin: 15px;
 display: flex;
 flex-wrap: wrap;
}
.index_project .index_news_scrl, .index_project .index_about_scrl, .index_project .index_features_scrl, .index_project .index_project_scrl {
 width: 100%;
 margin: 15px;
 display: flex;
 flex-wrap: wrap;
}
.index_news .index_news_scrl .index_news_item, .page .index_news_scrl .index_news_item {
 display: grid;
 align-items: stretch;
 width: 100%;
 margin: 20px 0;
 padding-left: 10px;
 border-left: solid 1px #404040;
}
.index_news .index_about_scrl .index_news_item, .index_news .index_features_scrl .index_news_item, .index_news .index_project_scrl .index_news_item {
 display: grid;
 align-items: stretch;
 width: 100%;
 margin: 20px 0;
 padding-left: 10px;
 border-left: solid 1px #404040;
}
.index_about .index_news_scrl .index_news_item, .index_about .index_about_scrl .index_news_item, .index_about .index_features_scrl .index_news_item, .index_about .index_project_scrl .index_news_item {
 display: grid;
 align-items: stretch;
 width: 100%;
 margin: 20px 0;
 padding-left: 10px;
 border-left: solid 1px #404040;
}
.index_features .index_news_scrl .index_news_item, .index_features .index_about_scrl .index_news_item, .index_features .index_features_scrl .index_news_item, .index_features .index_project_scrl .index_news_item {
 display: grid;
 align-items: stretch;
 width: 100%;
 margin: 20px 0;
 padding-left: 10px;
 border-left: solid 1px #404040;
}
.index_project .index_news_scrl .index_news_item, .index_project .index_about_scrl .index_news_item, .index_project .index_features_scrl .index_news_item, .index_project .index_project_scrl .index_news_item {
 display: grid;
 align-items: stretch;
 width: 100%;
 margin: 20px 0;
 padding-left: 10px;
 border-left: solid 1px #404040;
}
.index_news .index_news_scrl .index_news_item .index_news_item_date .oshirase, .page .index_news_scrl .index_news_item .index_news_item_date .oshirase {
 padding: 2px 5px;
 color: #fff;
 background-color: #00533f
}
.index_news .index_news_scrl .index_news_item .index_news_item_date .award, .page .index_news_scrl .index_news_item .index_news_item_date .award {
 padding: 2px 5px;
 color: #fff;
 background-color: #191970
}
.index_news .index_news_scrl .index_news_item .index_news_item_date .kenkyuhi, .page .index_news_scrl .index_news_item .index_news_item_date .kenkyuhi {
 padding: 2px 5px;
 color: #fff;
 background-color: #6c9bd2
}
.index_box_bg .index_box {
 color: #fff;
 background-color: #191970;
 padding: 20px;
 text-align: right;
 margin-bottom: 20px;
}
.index_box_bg .index_box a {
 color: #fff;
 transition: all 0.3s ease;
 margin-right: 0;
}
.index_box_bg .index_box a:hover {
 color: #404040;
 margin-right: -15px;
 transition: all 0.3s ease;
}
.index_box_bg .index_box h2 {
 font-family: "Source Sans 3", sans-serif;
 font-size: 40px;
 line-height: 1.5em;
 text-align: left;
 padding-bottom: 20px;
}
.index_news_bg .index_news_box {
 width: 100%;
 text-align: center;
 color: #191970;
}
.index_news_bg .index_news_box h2 {
 font-family: "Source Sans 3", sans-serif;
 font-size: 9vw;
}
.index_news_bg .index_news_box h2 br {
 display: none;
}
.index_news_bg .index_news_box h2 span {
 display: block;
 font-size: 24px;
}
.index_news_bg .index_news_scrl a {
 display: block;
 width: 100%;
 font-size: 15px;
 text-align: right;
 color: #404040;
}
/*.index_news_bg .index_news_box a {
  display: none;
}*/
.index_news_item_icon_new {
 display: inline-block;
 color: #C00;
 font-size: 0.9em;
 font-weight: bold;
 margin-left: 0.3em;
}
.index_news_item_icon_new:before {
 content: "NEW";
}
.list_scroll {
 height: 400px;
 overflow-y: scroll;
}
.index_about_bg {
 background: url(../images/aboutus_bg.jpg) no-repeat;
 background-position: 50% 50%;
 background-size: cover;
}
.index_about_bg .index_about_box {
 color: #191970;
 background-color: #fff;
}
.index_about_bg .index_about_box a {
 color: #404040;
}
.index_features_bg {
 background: url(../images/features_bg.jpg) no-repeat;
 background-position: 75% 50%;
 background-size: cover;
}
.index_features_bg .index_features_box {
 color: #191970;
 background-color: #fff;
}
.index_features_bg .index_features_box a {
 color: #404040;
}
.index_project_bg {
 background: url(../images/project_bg.jpg) no-repeat;
 background-position: 50% 50%;
 background-size: cover;
}
.index_project_bg .index_project_box {
 color: #191970;
 background-color: #fff;
}
.index_project_bg .index_project_box a {
 color: #404040;
}
.index_slider_bg {
 width: 100%;
 height: 115vw;
}
.index_slider_bg .index_slider {
 position: relative;
}
.index_slider_bg .index_slider .catchcopy_bg {
 position: absolute;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
}
.index_slider_bg .index_slider .catchcopy_bg .catchcopy {
 color: #fff;
 text-align: center;
}
.index_slider_bg .index_slider .catchcopy_bg .catchcopy h2 {
 font-family: "Montserrat", sans-serif;
 font-size: 7vw;
 line-height: 1.2;
 margin-bottom: 20px;
}
.index_slider_bg .index_slider .catchcopy_bg .catchcopy p {
 font-size: 3vw;
}
.index_slider_bg .index_slider .slider_slick {
 width: 100%;
}
.index_slider_bg .index_slider .slider_slick img {
 width: 100%;
 height: 115vw;
 -o-object-fit: cover;
 object-fit: cover;
 filter: brightness(0.2);
}
/*----------------------------------------------------------------------------
  ******************************************************************************
  ** page
  ******************************************************************************
  ----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
  ******************************************************************************
  ** style
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.page_slider_bg {
 width: 100%;
 height: 45vw;
}
.page_slider_bg .page_slider {
 position: relative;
}
.page_slider_bg .page_slider .catchcopy_bg {
 position: absolute;
 top: 40%;
 left: 50%;
 transform: translate(-50%);
}
.page_slider_bg .page_slider .catchcopy_bg .catchcopy {
 color: #fff;
 text-align: center;
}
.page_slider_bg .page_slider .catchcopy_bg .catchcopy h1 {
 font-size: 8vw;
 white-space: nowrap;
 color: #fff;
 margin-top: 20px;
}
.page_slider_bg .page_slider .catchcopy_bg .catchcopy p {
 font-size: 4.5vw;
}
.page_slider_bg .page_slider .slider_slick {
 width: 100%;
}
.page_slider_bg .page_slider .slider_slick img {
 width: 100%;
 height: 45vw;
 -o-object-fit: cover;
 object-fit: cover;
 filter: brightness(0.2);
}
.page {
 padding: 10px;
}
.page a img:hover {
 opacity: 0.8;
 transition: all 0.3s ease;
}
.page h1 {
 font-size: 20px;
 margin-bottom: 20px;
}
.page h2 {
 font-size: 24px;
 margin-bottom: 14px;
 margin-top: 22px;
 color: #191970;
}
.page h3 {
 font-size: 20px;
 margin-bottom: 12px;
 margin-top: 18px;
 color: #191970;
}
.page h4 {
 font-size: 1.2em;
 margin-bottom: 5px;
 margin-top: 5px;
}
.page h4 span {
 font-weight: 400;
}
.page h5, .page h6 {
 font-size: 1.1em;
 margin-bottom: 2px;
 margin-top: 5px;
}
.page hr {
 border: none;
 border-top: 1px dotted #000;
}
.page iframe {
 max-width: 100%;
}
.page img {
 max-width: 100%;
 height: auto;
}
.page ol {
 margin-top: 1em;
 margin-bottom: 0.5em;
}
.page ol li {
 margin-left: 2em;
 margin-bottom: 0.5em;
}
.page p {
 margin-bottom: 0.5em;
}
.page ul {
 margin-top: 1em;
 margin-bottom: 0.5em;
}
.page ul li {
 list-style-type: disc;
 margin-left: 1.5em;
 margin-bottom: 0.5em;
}
.page .peple_list {
 font-size: 1.4em;
 margin: 10px 0px 20px 10px;
}
.page .peple_list li {
 list-style-type: none;
 margin: 0;
}
/*# sourceMappingURL=sp.css.map */