@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 {
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

body {
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  min-height: 100vh;
  overflow-y: hidden;
  text-align: justify;
}

.w_base {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
  position: fixed;
  z-index: 100;
  width: 100%;
  background: #fff;
  color: #222;
  box-shadow: 0 8px 8px -8px rgba(34, 34, 34, 0.15);
}
.hd_bg .hd {
  position: relative;
  height: 90px;
}
.hd_bg .hd_logo {
  position: absolute;
  top: 10px;
  left: 50px;
}
.hd_bg .hd_logo a {
  color: #222;
  font-size: 18px;
  text-decoration: none;
}
.hd_bg .hd_logo a span {
  display: block;
  margin-top: 5px;
  font-size: 13px;
  font-weight: 500;
}
.hd_bg .hd .nav_bg {
  position: absolute;
  right: 50px;
  bottom: 10px;
}
.hd_bg .hd .nav_bg .nav {
  overflow: visible;
}
.hd_bg .hd .nav_bg .nav_list {
  display: flex;
  flex-wrap: wrap;
  gap: 3em;
  width: 100%;
}
.hd_bg .hd .nav_bg .nav_list > li {
  z-index: 1000;
}
.hd_bg .hd .nav_bg .nav_list > li > a {
  position: relative;
  display: inline-block;
  color: #222;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}
.hd_bg .hd .nav_bg .nav_list > li > a:hover {
  color: #c31900;
}
.hd_bg .hd .nav_bg .nav_list > li > a::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  z-index: 3;
  content: "";
  width: 0;
  height: 2px;
  background-color: #c31900;
  transition: all 0.3s ease;
}
.hd_bg .hd .nav_bg .nav_list > li > a:hover::after {
  width: 100%;
}
.hd_bg .hd .nav_bg .nav_list > li > a.current::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  z-index: 3;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #c31900;
}
.hd_bg .hd .nav_bg .nav_list > li.current {
  position: relative;
}
.hd_bg .hd .nav_bg .nav_list > li.current::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  z-index: 3;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #c31900;
}
.hd_bg .hd .nav_bg .nav_list > li.contact, .hd_bg .hd .nav_bg .nav_list > li.en {
  display: none;
}
.hd_bg .hd_lang {
  position: absolute;
  top: 0;
  right: 200px;
}
.hd_bg .hd_lang a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 36px;
  background: #000;
  color: #fff;
  font-size: 13px;
  text-decoration: none;
  border: 2px solid #000;
  border-top: none;
  transition: all 0.3s ease;
}
.hd_bg .hd_lang a::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 1px 5px 0 0;
  background: url(../images/icon_lang.png) no-repeat center center;
  background-size: contain;
  transition: all 0.3s ease;
}
.hd_bg .hd_lang a:hover {
  background: #fff;
  color: #000;
}
.hd_bg .hd_lang a:hover::before {
  background: url(../images/icon_lang_ov.png) no-repeat center center;
}
.hd_bg .hd_contact {
  position: absolute;
  top: 0;
  right: 50px;
}
.hd_bg .hd_contact a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 140px;
  height: 36px;
  background: #c31900;
  color: #fff;
  font-size: 13px;
  text-decoration: none;
  border: 2px solid #c31900;
  border-top: none;
  transition: all 0.3s ease;
}
.hd_bg .hd_contact a::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 12px;
  margin: 1px 5px 0 0;
  background: url(../images/icon_contact.png) no-repeat center center;
  background-size: contain;
  transition: all 0.3s ease;
}
.hd_bg .hd_contact a:hover {
  background: #fff;
  color: #c31900;
}
.hd_bg .hd_contact a:hover::before {
  background: url(../images/icon_contact_ov.png) no-repeat center center;
}
.hd_bg.smaller .hd_logo a, .hd_bg.smaller .nav_list a {
  color: #222 !important;
  text-shadow: none !important;
}

/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.con_bg {
  margin-top: 90px;
}
.con_bg .con .main {
  order: 1;
  width: 100%;
}
.con_bg .con .main h1 {
  width: 100%;
  padding: 30px 0;
  background: url(../images/title_bg.png);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
}
.con_bg .con .main h1 span {
  display: block;
  font-size: 36px;
  font-weight: 700;
}
.con_bg .con .main h1::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  margin: 15px auto 0;
  background: #c31900;
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
  margin-top: auto;
  background: #2b3d4f;
}
.ft_bg .ft {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 30px 0;
}
.ft_bg .ft .ft_address {
  width: 50%;
  padding-right: 40px;
  color: #fff;
  border-right: 1px solid #fff;
}
.ft_bg .ft .ft_address .ft_logo {
  margin: 0 0 10px;
}
.ft_bg .ft .ft_address .ft_logo a {
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  text-shadow: 0 0 18px rgba(34, 34, 34, 0.8);
}
.ft_bg .ft .ft_address .ft_logo a span {
  display: block;
}
.ft_bg .ft .ft_address .ft_contact {
  display: flex;
  flex-wrap: nowrap;
  gap: 15px;
}
.ft_bg .ft .ft_address .ft_contact dd span {
  font-weight: 500;
}
.ft_bg .ft .ft_nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 50%;
  padding-left: 40px;
}
.ft_bg .ft .ft_nav_list {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}
.ft_bg .ft .ft_nav_list li a {
  display: flex;
  align-items: center;
  height: 100%;
  color: #fff;
  text-decoration: none;
}
.ft_bg .ft .ft_nav_list li a:hover {
  text-decoration: underline;
}
.ft_bg .ft .ft_nav_list li a::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 10px 0 0;
  background: url(../images/icon_arrow_white.png) no-repeat center center;
  background-size: cover;
}
.ft_bg .ft .ft_nav_list li.contact, .ft_bg .ft .ft_nav_list li.en {
  display: none;
}
.ft_bg .ft_copy {
  padding: 0 0 20px;
  color: #fff;
  font-size: 10px;
  text-align: center;
  letter-spacing: 0.05em;
}

/*----------------------------------------------------------------------------
******************************************************************************
** 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;
}
.pt:hover {
  opacity: 0.6;
}

.pt_btn {
  cursor: pointer;
  display: block;
  width: 20px;
  height: 20px;
  margin-top: 8px;
  transform: rotate(45deg);
  position: relative;
}
.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;
}

/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
#index .hd_bg {
  background: transparent;
  box-shadow: none;
  transition: all 0.5s ease;
}
#index .hd_bg .hd .hd_logo a, #index .hd_bg .hd .nav_bg .nav .nav_list > li > a {
  color: #fff;
  text-shadow: 0 0 18px rgba(34, 34, 34, 0.8);
}
#index .hd_bg.smaller {
  background: #fff;
  color: #222;
  box-shadow: 0 8px 8px -8px rgba(34, 34, 34, 0.15);
}
#index .hd_bg.smaller .hd_logo a, #index .hd_bg.smaller .nav_list a {
  color: #222 !important;
  text-shadow: none !important;
}
#index .index_slider_bg {
  position: relative;
}
#index .index_slider_bg::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  background-size: contain;
}
#index .index_slider_bg .index_slider_txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-shadow: 0 0 18px rgba(34, 34, 34, 0.8);
}
#index .index_slider_bg .index_slider_txt span {
  display: inline-block;
  font-size: 48px;
  line-height: 1.3;
  letter-spacing: 0.05em;
}
#index .index_slider_bg img {
  width: 100%;
  max-height: 560px !important;
  -o-object-fit: cover !important;
  object-fit: cover;
  font-family: "object-fit: cover!important;";
}
#index .con_bg {
  margin-top: 0;
}
#index .con_bg .index_main {
  order: 1;
  width: 100%;
}
#index .con_bg .index_main .index_news {
  position: relative;
  z-index: 10;
  margin-top: -40px;
  margin-bottom: 60px;
  padding: 30px 60px 60px;
  background: #f2f2f2;
  box-shadow: 0 8px 8px -8px rgba(34, 34, 34, 0.15);
}
#index .con_bg .index_main .index_news .fb-wrap {
  text-align: center;
  width: 100%;
}
#index .con_bg .index_main .index_news h2 {
  position: relative;
  margin-bottom: 30px;
  font-size: 16px;
  text-align: center;
  line-height: 1.25;
}
#index .con_bg .index_main .index_news h2 span {
  display: block;
  font-size: 36px;
  font-weight: 800;
}
#index .con_bg .index_main .index_news h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  margin: 15px auto 0;
  background: #c31900;
}
#index .con_bg .index_main .index_news .index_news_scrl {
  max-height: 300px;
  overflow: auto;
}
#index .con_bg .index_main .index_news .index_news_scrl .index_news_item {
  border-bottom: 1px solid #beb6b5;
  display: flex;
  gap: 10px;
  padding: 15px 0;
  width: 100%;
}
#index .con_bg .index_main .index_news .index_news_scrl .index_news_item:first-of-type {
  border-top: 1px solid #beb6b5;
}
#index .con_bg .index_main .index_news .index_news_scrl .index_news_item_date {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 160px;
  font-size: 16px;
}
#index .con_bg .index_main .index_news .index_news_scrl .index_news_item_date .index_news_item_cate {
  display: flex;
  justify-content: center;
  width: 100px;
  padding: 3px;
  font-size: 12px;
  font-weight: 700;
}
#index .con_bg .index_main .index_news .index_news_scrl .index_news_item_ttl {
  position: relative;
  width: calc(100% - 180px);
  padding: 0 20px 0 0;
}
#index .con_bg .index_main .index_news .index_news_scrl .index_news_item_ttl::after {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  content: "";
  display: block;
  width: 6px;
  height: 10px;
  background: url(../images/icon_news_gray.png) no-repeat center center;
  background-size: contain;
}
#index .con_bg .index_main .index_news .index_news_scrl .index_news_item_ttl.news_link::after {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  content: "";
  display: block;
  width: 6px;
  height: 10px;
  background: url(../images/icon_news_green.png) no-repeat center center;
  background-size: contain;
}
#index .con_bg .index_main .index_news .index_news_scrl .index_news_item_ttl a {
  position: relative;
  color: #2b3d4f;
  text-decoration: none;
}
#index .con_bg .index_main .index_news .index_news_scrl .index_news_item_ttl a:hover {
  text-decoration: underline;
}
#index .con_bg .index_main .index_news .index_news_scrl .index_news_item_ttl .index_news_item_icon_new {
  display: inline-block;
  margin-left: 10px;
  color: #f00;
  font-size: 13px;
  font-weight: 700;
}
#index .con_bg .index_main .index_news .index_news_scrl .index_news_item_ttl .index_news_item_icon_new:before {
  content: "NEW";
}
#index .con_bg .index_main .index_movie {
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
  background: url(../images/i_movie_bg.jpg) no-repeat center center;
  background-size: cover;
  box-shadow: 0 8px 8px -8px rgba(34, 34, 34, 0.15);
}
#index .con_bg .index_main .index_movie::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
#index .con_bg .index_main .index_movie_con {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 20px 0;
}
#index .con_bg .index_main .index_movie_con iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
}
#index .con_bg .index_main .index_about {
  margin-top: 60px;
  margin-bottom: 60px;
  padding: 30px 60px;
  box-shadow: 0 0 8px 0 rgba(34, 34, 34, 0.15);
}
#index .con_bg .index_main .index_about h2 {
  position: relative;
  margin-bottom: 30px;
  font-size: 16px;
  text-align: center;
  line-height: 1.25;
}
#index .con_bg .index_main .index_about h2 span {
  display: block;
  font-size: 36px;
  font-weight: 800;
}
#index .con_bg .index_main .index_about h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  margin: 15px auto 0;
  background: #c31900;
}
#index .con_bg .index_main .index_about_con h3 {
  display: block;
  margin: 0 0 10px;
  font-size: 26px;
  font-weight: 800;
}

.ark-block-accordion__title {
  argin: 16px 0;
  padding: 5px 0 5px 10px;
  background: #DDDFE1 !important;
  font-size: 18px;
  border-left: 5px solid #354a5f;
}

#index .con_bg .index_main .index_about_con h4 {
  display: block;
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
}
#index .con_bg .index_main .index_about_con h4.italic {
  font-family: "Abril Fatface", serif;
  font-weight: 400;
  font-style: italic;
}
#index .con_bg .index_main .index_about_con .btn {
  display: inline-block;
  width: -moz-max-content;
  width: max-content;
  margin: 20px auto;
}
#index .con_bg .index_main .index_about_con .btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 10px;
  background: #005E3C;
  color: #fff;
  font-size: 13px;
  text-decoration: none;
  border: 2px solid #005E3C;
  transition: all 0.3s ease;
}
#index .con_bg .index_main .index_about_con .btn a:hover {
  background: #fff;
  color: #005E3C;
}
#index .con_bg .index_main .index_partnership {
  margin-bottom: 60px;
  padding: 30px 60px;
  box-shadow: 0 0 8px 0 rgba(34, 34, 34, 0.15);
}
#index .con_bg .index_main .index_partnership h2 {
  position: relative;
  margin-bottom: 30px;
  font-size: 16px;
  text-align: center;
  line-height: 1.25;
}
#index .con_bg .index_main .index_partnership h2 span {
  display: block;
  font-size: 36px;
  font-weight: 800;
}
#index .con_bg .index_main .index_partnership h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  margin: 15px auto 0;
  background: #c31900;
}
#index .con_bg .index_main .index_partnership_con h3 {
  text-align: center;
}
#index .con_bg .index_main .index_partnership_con h3.japan::before {
  content: "";
  display: block;
  width: 32px;
  height: 22px;
  margin: 0 auto;
  background: url(../images/icon_japan.png) no-repeat center center;
  background-size: contain;
}
#index .con_bg .index_main .index_partnership_con h3.usa::before {
  content: "";
  display: block;
  width: 32px;
  height: 22px;
  margin: 0 auto;
  background: url(../images/icon_usa.png) no-repeat center center;
  background-size: contain;
}
#index .con_bg .index_main .index_partnership_con_list {
  display: flex;
  flex-wrap: wrap;
  gap: 3em;
}
#index .con_bg .index_main .index_partnership_con_list > div {
  width: calc((100% - 6em) / 3);
}
#index .con_bg .index_main .index_partnership_con_list > div > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  height: 100%;
  color: #111;
  text-decoration: none;
}
#index .con_bg .index_main .index_partnership_con_list > div > a figure {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  height: 100%;
  padding: 20px;
  background: #fff;
}
#index .con_bg .index_main .index_partnership_con_list > div > a figure img {
  width: 100%;
  height: auto;
  background: #fff;
  transition: all 0.3s ease;
}
#index .con_bg .index_main .index_partnership_con_list > div > a span {
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s ease;
}
#index .con_bg .index_main .index_partnership_con_list > div > a:hover figure img {
  opacity: 0.8;
}
#index .con_bg .index_main .index_partnership_con_list > div > a:hover span {
  text-decoration: underline;
}
#index .con_bg .index_main .index_partnership_con_list > div > .wanchor_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  height: 100%;
}
#index .con_bg .index_main .index_partnership_con_list > div > .wanchor_box figure {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  height: 100%;
  padding: 20px;
  background: #fff;
}
#index .con_bg .index_main .index_partnership_con_list > div > .wanchor_box figure img {
  width: 100%;
  height: auto;
  background: #fff;
  transition: all 0.3s ease;
}
#index .con_bg .index_main .index_partnership_con_list > div > .wanchor_box span {
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s ease;
}
#index .con_bg .index_main .index_partnership_con_list > div > .wanchor_box span a {
  color: #111;
  text-decoration: none;
}
#index .con_bg .index_main .index_partnership_con_list > div > .wanchor_box span a:hover {
  text-decoration: underline;
}
#index .con_bg .index_main .index_participant {
  margin-bottom: 60px;
  padding: 30px 60px;
  box-shadow: 0 0 8px 0 rgba(34, 34, 34, 0.15);
}
#index .con_bg .index_main .index_participant h2 {
  position: relative;
  margin-bottom: 30px;
  font-size: 16px;
  text-align: center;
  line-height: 1.25;
}
#index .con_bg .index_main .index_participant h2 span {
  display: block;
  font-size: 36px;
  font-weight: 800;
}
#index .con_bg .index_main .index_participant h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  margin: 15px auto 0;
  background: #c31900;
}
#index .con_bg .index_main .index_participant_con h3 {
  display: block;
  margin: 0 0 10px;
  font-size: 26px;
  font-weight: 800;
}
#index .con_bg .index_main .index_participant_con h4 {
  display: block;
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
}
#index .con_bg .index_main .index_participant_con .slider {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
#index .con_bg .index_main .index_participant_con .slider img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 500/327;
}
#index .con_bg .index_main .index_financial {
  margin-bottom: 60px;
  padding: 30px 60px;
  box-shadow: 0 0 8px 0 rgba(34, 34, 34, 0.15);
}
#index .con_bg .index_main .index_financial h2 {
  position: relative;
  margin-bottom: 30px;
  font-size: 16px;
  text-align: center;
  line-height: 1.25;
}
#index .con_bg .index_main .index_financial h2 span {
  display: block;
  font-size: 36px;
  font-weight: 800;
}
#index .con_bg .index_main .index_financial h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  margin: 15px auto 0;
  background: #c31900;
}
#index .con_bg .index_main .index_financial_con h3 {
  display: block;
  margin: 0 0 10px;
  font-size: 26px;
  font-weight: 800;
}
#index .con_bg .index_main .index_financial_con h4 {
  display: block;
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
}
#index .con_bg .index_main .index_financial_con .program_fee {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 30px;
  text-align: center;
}
#index .con_bg .index_main .index_financial_con .program_fee h3 {
  margin: 0;
  color: #c31900;
}
#index .con_bg .index_main .index_financial_con .program_fee p {
  font-size: 20px;
  line-height: 1.3;
}
#index .con_bg .index_main .index_financial_con .program_fee p span {
  display: block;
  font-size: 50px;
}
#index .con_bg .index_main .index_financial_con .services_included {
  margin-top: 1.2em;
  margin-bottom: 0.7em;
}
#index .con_bg .index_main .index_financial_con .services_included li {
  position: relative;
  margin-bottom: 0.5em;
  padding-left: 24px;
}
#index .con_bg .index_main .index_financial_con .services_included li:before, #index .con_bg .index_main .index_financial_con .services_included li:after {
  content: "";
  display: block;
  position: absolute;
}
#index .con_bg .index_main .index_financial_con .services_included li:before {
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  background: #c31900;
  border-radius: 8px;
}
#index .con_bg .index_main .index_financial_con .services_included li:after {
  top: 7px;
  left: 5px;
  transform: rotate(-45deg);
  width: 6px;
  height: 3px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
}

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mcon {
  word-wrap: break-word;
}
.mcon > section {
  margin: 30px 0;
  padding: 20px;
  background: #f2f2f2;
}
.mcon a img:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
.mcon h2 {
  margin: 20px 0;
  font-size: 20px;
  overflow: hidden;
  text-align: center;
}
.mcon h2 span {
  position: relative;
  display: inline-block;
  margin: 0 2.5em;
  padding: 0 2em;
  background-image: url(../images/h2_title_bg_r.png), url(../images/h2_title_bg_l.png);
  background-repeat: no-repeat, no-repeat;
  background-position: right 7px, -1px 7px;
  background-size: 8px 20px, 8px 20px;
  text-align: center;
}
.mcon h2 span::before, .mcon h2 span::after {
  position: absolute;
  top: 50%;
  content: "";
  width: 400%;
  height: 2px;
  background-color: #4f4e4a;
}
.mcon h2 span::before {
  right: 100%;
}
.mcon h2 span::after {
  left: 100%;
}
.mcon h3 {
  margin: 16px 0;
  padding: 5px 0 5px 10px;
  background: rgba(189, 195, 199, 0.4);
  font-size: 18px;
  border-left: 5px solid #354a5f;
}
.mcon h4 {
  margin: 5px 0 10px;
  padding: 0 0 0 5px;
  font-size: 16px;
  border-left: 3px solid #5d6d7e;
}
.mcon h5, .mcon h6 {
  font-size: 1.1em;
  margin-bottom: 2px;
  margin-top: 5px;
}
.mcon hr {
  border: none;
  border-top: 1px dotted #000;
}
.mcon iframe {
  max-width: 100%;
}
.mcon img {
  max-width: 100%;
  height: auto;
}
.mcon ol {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.mcon ol li {
  margin-left: 2em;
  margin-bottom: 0.5em;
}
.mcon p {
  margin-bottom: 1em;
}
.mcon ul {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.mcon ul li {
  list-style-type: disc;
  margin-left: 1.5em;
  margin-bottom: 0.5em;
}

.index_mokuji {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.index_mokuji a {
  display: inline-block;
  margin: 10px;
  color: #000;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 3px solid;
  transition: all 0.2s;
}
.index_mokuji a:hover {
  color: #005E3C;
  transition: all 0.2s;
}

.fb-container {
  display: flex;
  justify-content: center;
  /* Center by default (mobile/tablet) */
  margin: 0 auto;
  max-width: 100%;
}

.fb-wrap-fixed {
  width: 100%;
  max-width: 500px;
  /* Adjust width as needed */
}

/* Large monitors (fixed on left) */
@media (min-width: 1200px) {
  .fb-container {
    position: fixed;
    left: 20px;
    top: 85%;
    transform: translateY(-50%);
    margin: 0;
    z-index: 1000;
    transition: all 0.2s;
  }
  .fb-container.sticky {
    position: fixed;
    top: 50% !important;
    left: 20px !important;
    transform: translateY(-50%);
    box-shadow: none;
    background: none;
    transition: all 0.2s;
  }
}
/* Reset fixed positioning on tablets & mobiles */
@media (max-width: 1199px) {
  .fb-container {
    margin: 20px auto;
    position: static !important;
    /* Force reset */
    transform: none !important;
    /* Remove translateY */
    left: auto !important;
    /* Reset left positioning */
    justify-content: center;
    /* Ensure centering */
  }
}
/*# sourceMappingURL=style.css.map */