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

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

/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
  background: #fff;
}
.hd_bg .hd {
  padding: 10px;
}
.hd_bg .hd_logo {
  display: flex;
  align-content: center;
  align-items: center;
  gap: 10px;
}
.hd_bg .hd_logo a {
  color: #222;
  font-size: 1.2rem;
  text-decoration: none;
  line-height: 1.3;
}
.hd_bg .hd_logo a img {
  width: 60px;
}
.hd_bg .hd_logo a .site_title {
  display: block;
  margin-top: 5px;
  font-weight: 500;
  letter-spacing: -0.5px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.nav {
  position: fixed;
  top: 0px;
  right: -70%;
  z-index: 100;
  overflow-x: none;
  overflow-y: auto;
  width: 70%;
  height: calc(100% + 500px);
  padding-bottom: 500px;
  background: #354a5f;
  color: #fff;
  transition: All 0.5s ease;
}
.nav .nav_list > li.current {
  background-color: rgba(0, 0, 0, 0.2);
  border-bottom: 2px solid #c31900;
}
.nav .nav_list > li > a {
  position: relative;
  display: block;
  padding: 1em 1em 1em 1.5em;
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  letter-spacing: 0.03em;
}
.nav .nav_list > li > a:hover {
  background-color: rgba(0, 0, 0, 0.2);
  border-bottom: 2px solid #c31900;
}
.nav .nav_list > li.contact a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.nav .nav_list > li.contact a::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 12px;
  margin: 1px 10px 0 0;
  background: url(../images/icon_contact.png) no-repeat center center;
  background-size: contain;
}
.nav .nav_list > li.en a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.nav .nav_list > li.en a::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 1px 10px 0 0;
  background: url(../images/icon_lang.png) no-repeat center center;
  background-size: contain;
}

.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 .main {
  margin-bottom: 30px;
}
.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 .main h1 span {
  display: block;
  font-size: 36px;
  font-weight: 700;
}
.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: flex-start;
  padding: 30px 10px 20px;
}
.ft_bg .ft .ft_address {
  padding: 0;
  color: #fff;
  border-bottom: 1px solid #fff;
}
.ft_bg .ft .ft_address .ft_logo {
  margin: 0 0 10px;
}
.ft_bg .ft .ft_address .ft_logo a {
  color: #fff;
  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;
  margin: 0 0 15px;
}
.ft_bg .ft .ft_address .ft_contact dd span {
  font-weight: 500;
}
.ft_bg .ft .ft_nav {
  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: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  right: 10px;
  position: fixed;
  width: 40px;
  z-index: 10;
}
.pt:hover {
  opacity: 0.6;
}

.pt_btn {
  cursor: pointer;
  display: block;
  width: 14px;
  height: 14px;
  margin-top: 5px;
  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: 5px;
  bottom: 0;
}
.pt_btn::after {
  height: 5px;
  right: 0;
}

/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.index_slider_bg {
  position: relative;
}
.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_slider_bg .index_slider_txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  width: 90%;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  text-shadow: 0 0 18px rgba(34, 34, 34, 0.8);
}
.index_slider_bg .index_slider_txt span {
  display: inline-block;
  font-size: 26px;
  line-height: 1.3;
  letter-spacing: 0.05em;
}
.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_main {
  margin-bottom: 20px;
  padding: 20px 10px 0;
}
.index_main .index_movie {
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin: 0 calc(50% - 50vw) 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_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_main .index_movie_con {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 10px;
}
.index_main .index_movie_con iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
}
.index_main .index_about {
  margin-bottom: 60px;
  padding: 30px 15px;
  box-shadow: 0 0 8px 0 rgba(34, 34, 34, 0.15);
}
.index_main .index_about h2 {
  position: relative;
  margin-bottom: 30px;
  font-size: 13px;
  text-align: center;
  line-height: 1.25;
}
.index_main .index_about h2 span {
  display: block;
  font-size: 28px;
  font-weight: 800;
}
.index_main .index_about h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  margin: 15px auto 0;
  background: #c31900;
}
.index_main .index_about_con h3 {
  display: block;
  margin: 0 0 10px;
  font-size: 26px;
  font-weight: 800;
}
.index_main .index_about_con .vision_img {
  -o-object-fit: contain;
     object-fit: contain;
}
.index_main .index_about_con img {
  display: block;
  width: 100% !important;
  height: auto;
}

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

.index_main .index_about_con h4 {
  display: block;
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
}
.index_main .index_about_con h4.italic {
  font-family: "Abril Fatface", serif;
  font-weight: 400;
  font-style: italic;
}
.index_main .index_partnership {
  margin-bottom: 60px;
  padding: 30px 15px;
  box-shadow: 0 0 8px 0 rgba(34, 34, 34, 0.15);
}
.index_main .index_partnership h2 {
  position: relative;
  margin-bottom: 30px;
  font-size: 13px;
  text-align: center;
  line-height: 1.25;
}
.index_main .index_partnership h2 span {
  display: block;
  font-size: 28px;
  font-weight: 800;
}
.index_main .index_partnership h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  margin: 15px auto 0;
  background: #c31900;
}
.index_main .index_partnership_con h3 {
  text-align: center;
}
.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_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_main .index_partnership_con_list {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
}
.index_main .index_partnership_con_list > * {
  width: calc((100% - 2em) / 2);
}
.index_main .index_partnership_con_list > * a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  height: 100%;
  color: #111;
  text-decoration: none;
}
.index_main .index_partnership_con_list > * a figure {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 200px;
  height: 100%;
  padding: 20px;
  background: #fff;
}
.index_main .index_partnership_con_list > * a figure img {
  width: 100%;
  height: auto;
  background: #fff;
}
.index_main .index_partnership_con_list > * a span {
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}
.index_main .index_partnership_con_list > * a:hover figure img {
  opacity: 0.8;
}
.index_main .index_partnership_con_list > * a:hover span {
  text-decoration: underline;
}
.index_main .index_partnership_con_list > * .wanchor_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  height: 100%;
}
.index_main .index_partnership_con_list > * .wanchor_box figure {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 200px;
  height: 100%;
  padding: 20px;
  background: #fff;
}
.index_main .index_partnership_con_list > * .wanchor_box figure img {
  width: 100%;
  height: auto;
  background: #fff;
}
.index_main .index_partnership_con_list > * .wanchor_box span {
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}
.index_main .index_partnership_con_list > * .wanchor_box span a {
  height: auto;
  color: #111;
  text-decoration: none;
}
.index_main .index_partnership_con_list > * .wanchor_box span a:hover {
  text-decoration: underline;
}
.index_main .index_participant {
  margin-bottom: 60px;
  padding: 30px 15px;
  box-shadow: 0 0 8px 0 rgba(34, 34, 34, 0.15);
}
.index_main .index_participant h2 {
  position: relative;
  margin-bottom: 30px;
  font-size: 16px;
  text-align: center;
  line-height: 1.25;
}
.index_main .index_participant h2 span {
  display: block;
  font-size: 36px;
  font-weight: 800;
}
.index_main .index_participant h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  margin: 15px auto 0;
  background: #c31900;
}
.index_main .index_participant .index_participant_con h3 {
  margin: 16px 0;
  padding: 5px 0 5px 10px;
  background: rgba(227, 174, 174, 0.4);
  font-size: 24px;
  border-left: 5px solid #d71b1b;
}
.index_main .index_participant .index_participant_con h4 {
  margin: 30px 0 0px;
  padding: 0 0 0 5px;
  font-size: 18px;
  border-left: 4px solid #b93b3b;
}
.index_main .index_participant .index_participant_con .participant_list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.index_main .index_participant .index_participant_con .participant_list .participant_item {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #e5e5e5;
}
.index_main .index_participant .index_participant_con .participant_list .participant_item .participant_logo a {
  width: 80px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}
.index_main .index_participant .index_participant_con .participant_list .participant_item .participant_logo a img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
}
.index_main .index_participant .index_participant_con .participant_list .participant_item .participant_name {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
}
.index_main .index_voice_con h3 {
  margin: 16px 0;
  padding: 5px 0 5px 10px;
  background: rgba(189, 195, 199, 0.4);
  font-size: 18px;
  border-left: 5px solid #354a5f;
}
.index_main .index_voice_con h4 {
  margin: 5px 0 10px;
  padding: 0 0 0 5px;
  font-size: 16px;
  border-left: 3px solid #5d6d7e;
}
.index_main .index_voice {
  margin-bottom: 60px;
  padding: 30px 15px;
  box-shadow: 0 0 8px 0 rgba(34, 34, 34, 0.15);
}
.index_main .index_voice h2 {
  position: relative;
  margin-bottom: 30px;
  font-size: 16px;
  text-align: center;
  line-height: 1.25;
}
.index_main .index_voice h2 span {
  display: block;
  font-size: 36px;
  font-weight: 800;
}
.index_main .index_voice h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  margin: 15px auto 0;
  background: #c31900;
}
.index_main .index_voice_con h3 {
  display: block;
  margin: 0 0 10px;
  font-size: 26px;
  font-weight: 800;
}
.index_main .index_voice_con h4 {
  display: block;
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
}
.index_main .index_voice_con .slider {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
.index_main .index_voice_con .slider img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 500/327;
}
.index_main .index_financial {
  margin-bottom: 60px;
  padding: 30px 15px;
  box-shadow: 0 0 8px 0 rgba(34, 34, 34, 0.15);
}
.index_main .index_financial h2 {
  position: relative;
  margin-bottom: 30px;
  font-size: 16px;
  text-align: center;
  line-height: 1.25;
}
.index_main .index_financial h2 span {
  display: block;
  font-size: 36px;
  font-weight: 800;
}
.index_main .index_financial h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  margin: 15px auto 0;
  background: #c31900;
}
.index_main .index_financial_con h3 {
  display: block;
  margin: 0 0 10px;
  font-size: 26px;
  font-weight: 800;
}
.index_main .index_financial_con h4 {
  display: block;
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
}
.index_main .index_financial_con .program_fee {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 30px;
  text-align: center;
}
.index_main .index_financial_con .program_fee h3 {
  margin: 0;
  color: #c31900;
}
.index_main .index_financial_con .program_fee p {
  font-size: 20px;
  line-height: 1.3;
}
.index_main .index_financial_con .program_fee p span {
  display: block;
  font-size: 50px;
}
.index_main .index_financial_con .services_included {
  margin-top: 1.2em;
  margin-bottom: 0.7em;
}
.index_main .index_financial_con .services_included li {
  position: relative;
  margin-bottom: 0.5em;
  padding-left: 24px;
}
.index_main .index_financial_con .services_included li:before, .index_main .index_financial_con .services_included li:after {
  content: "";
  display: block;
  position: absolute;
}
.index_main .index_financial_con .services_included li:before {
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  background: #c31900;
  border-radius: 8px;
}
.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;
}

.index_news {
  position: relative;
  z-index: 10;
  margin-top: -40px;
  margin-bottom: 60px;
  padding: 30px 10px 40px;
  box-shadow: 0 0 8px 0 rgba(34, 34, 34, 0.15);
}
.index_news .fb-wrap {
  text-align: center;
  width: 100%;
}
.index_news h2 {
  position: relative;
  margin-bottom: 30px;
  font-size: 13px;
  text-align: center;
  line-height: 1.25;
}
.index_news h2 span {
  display: block;
  font-size: 28px;
  font-weight: 800;
}
.index_news h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  margin: 15px auto 0;
  background: #c31900;
}
.index_news .index_news_scrl {
  overflow: auto;
}
.index_news .index_news_scrl .index_news_item {
  border-bottom: 1px solid #beb6b5;
  padding: 15px 0;
  width: 100%;
}
.index_news .index_news_scrl .index_news_item:first-of-type {
  border-top: 1px solid #beb6b5;
}
.index_news .index_news_scrl .index_news_item_date {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
.index_news .index_news_scrl .index_news_item_date .index_news_item_cate {
  display: flex;
  justify-content: center;
  width: 60px;
  padding: 3px;
  font-size: 12px;
  font-weight: 700;
}
.index_news .index_news_scrl .index_news_item_ttl {
  position: relative;
  width: 100%;
  padding: 0 20px 0 0;
}
.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_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_news .index_news_scrl .index_news_item_ttl a {
  position: relative;
  text-decoration: none;
}
.index_news .index_news_scrl .index_news_item_ttl a:hover {
  text-decoration: underline;
}
.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_news .index_news_scrl .index_news_item_ttl .index_news_item_icon_new:before {
  content: "NEW";
}

.btn {
  display: block;
  width: -moz-max-content;
  width: max-content;
  margin: 20px auto;
}
.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;
}
.btn a:hover {
  background: #fff;
  color: #005E3C;
}

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mcon {
  padding: 0 10px;
  line-height: 1.6;
  word-wrap: break-word;
}
.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 1em;
  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 center, -2px center;
  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 {
  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 {
  font-size: 1.2rem;
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.mcon ol li {
  margin-left: 2em;
  margin-bottom: 0.5em;
}
.mcon p {
  margin-bottom: 1em;
}
.mcon ul {
  font-size: 1.2rem;
  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 {
  margin: 20px auto;
  position: static;
  transform: none;
  left: auto;
  justify-content: center;
}

/*# sourceMappingURL=sp.css.map */