@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
******************************************************************************
----------------------------------------------------------------------------*/
.pc_only {
  display: none;
}

.sp_only {
  display: block;
}

/*--------color code -------*/
html,
body {
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}

.w_base {
  margin: 0 auto;
  max-width: 1000px;
  width: 90vw;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** header
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.hd_bg {
  background: url(../images/hd_bg_bg.png) repeat-x top left;
}

.hd {
  padding: 20px 10px;
}

.hd_logo {
  display: flex;
  align-content: center;
  align-items: center;
}
.hd_logo a {
  width: 40px;
  margin-right: 5px;
}
.hd_logo a img {
  height: auto;
  max-width: 100%;
}
.hd_logo a.site_title {
  display: block;
  width: 100%;
  font-size: 1.5rem;
  font-weight: 500;
  text-decoration: none;
  color: #000;
}
.hd_logo a.site_title span {
  display: block;
  font-size: 0.36em;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** global nav
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.nav_bg {
  background: #4472c4;
  color: #fff;
  height: calc(100% + 500px);
  padding-bottom: 500px;
  z-index: 100;
  width: 100%;
  overflow-x: none;
  overflow-y: auto;
  top: 0px;
  right: -100%;
  padding-top: 100px;
  position: fixed;
  transition: All 0.5s ease;
}
.nav_bg .sp_nav_title {
  display: block;
  margin: auto;
  margin-bottom: 30px;
}
.nav_bg .sp_nav_title img {
  display: block;
  margin: auto;
  width: 70%;
  max-width: 300px;
}

.nav_list {
  margin-top: 2rem;
  width: 85%;
  margin: auto;
}
.nav_list > li {
  border-top: solid 1px #b7b7b7;
  position: relative;
}
.nav_list > li:last-child {
  border-bottom: solid 1px #b7b7b7;
}
.nav_list > li:not(.li_has_child)::after {
  content: "→";
  position: absolute;
  font-size: 1.5rem;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.nav_list > li > a {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 16px;
  color: #fff;
  font-weight: bold;
  display: block;
  padding: 1em 1em 1em 1.5em;
  text-decoration: none;
  position: relative;
}
.nav_list > li > a:hover, .nav_list > li > a.current {
  background-color: rgba(0, 0, 0, 0.2);
}
.nav_list > li > a img {
  display: none;
}

.sub-menu {
  display: none;
}

.li_has_child {
  position: relative;
}
.li_has_child:before, .li_has_child:after {
  content: "";
  position: absolute;
  display: block;
  right: 10px;
  top: 30px;
  transform: translateX(-50%);
  height: 2px;
  width: 15px;
  background-color: #fff;
}
.li_has_child:after {
  transform: translateX(-50%) rotate(90deg);
  transition: 0.5s;
}

.active:after {
  transform: translateX(-50%) rotate(0) !important;
}

.nav_glist {
  display: none;
}

.li_has_gchild {
  position: relative;
}
.li_has_gchild:before, .li_has_gchild:after {
  content: "";
  position: absolute;
  display: block;
  right: 10px;
  top: 22px;
  transform: translateX(-50%);
  height: 2px;
  width: 10px;
  background-color: #fff;
}
.li_has_gchild:after {
  transform: translateX(-50%) rotate(90deg);
  transition: 0.5s;
}

.sub-menu > li > a {
  background-color: rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  display: block;
  font-size: 13px;
  padding: 1em 1em 1em 2em;
  text-decoration: none;
}
.sub-menu > li > a:hover, .sub-menu > li > a.current {
  background-color: #000;
  box-shadow: 0 0 4px rgba(255, 0, 0, 0.2);
}

.nav_glist > li > a {
  position: relative;
  background-color: #757575;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  display: block;
  font-size: 11px;
  padding: 1em 1em 1em 4em;
  text-decoration: none;
}
.nav_glist > li > a:before {
  content: ">";
  position: absolute;
  left: 2em;
  top: 50%;
  transform: translateY(-50%);
}
.nav_glist > li > a:hover, .nav_glist > 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;
}

.nav_sns_links {
  width: 100%;
  margin-top: 65px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
}
.nav_sns_links a {
  display: block;
  width: 50px;
  margin-right: 20px;
}
.nav_sns_links a img {
  width: 100%;
  height: auto;
}
.nav_sns_links a:last-child {
  margin-right: initial;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** content
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.con {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 30px 0;
}

.main {
  order: 1;
  width: 700px;
}

.con_bg {
  padding: 0 5%;
}

.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_innr_con {
  background-color: #d9e9f0;
}
.ft_innr_con p.ft_subtitle {
  font-size: 1.2em;
  font-weight: bold;
}
.ft_innr_con p.ft_address {
  margin-top: 30px;
  font-size: 0.9em;
}

.ft_innr_box {
  position: relative;
  padding-top: 50px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  align-items: center;
}
.ft_innr_box figure {
  width: auto;
}
.ft_innr_box figure img {
  width: 40px;
  height: auto;
  margin-right: 10px;
}
.ft_innr_box .ft_title {
  display: block;
  font-size: 2rem;
  text-decoration: none;
  color: #000;
}
.ft_innr_box .ft_title span {
  display: block;
  font-size: 0.37em;
}

.sns_links {
  width: 100%;
}
.sns_links a {
  text-decoration: none;
}
.sns_links a img {
  margin-right: 20px;
}

.ft_bg_cp {
  background: #4472c4;
  color: #fff;
}

.ft {
  padding: 30px 0;
}

.ft_copy {
  font-size: 10px;
  text-align: center;
}

/*----------------------------------------------------------------------------
	******************************************************************************
	** 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: 99;
}
.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_main {
  width: 100%;
}

.index_content {
  padding: 50px 0;
}

.index_slider_bg {
  position: relative;
}
.index_slider_bg .index_title {
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  text-shadow: 0 0 5px #fff;
}
.index_slider_bg .index_title h1 {
  font-size: max(25px, 6vw);
  text-align: left;
  width: 100%;
  font-family: serif;
}
.index_slider_bg .index_title h1 span {
  color: #fff;
}

/*-- object-fit ver IE11 サーバーアップで動作確認済み -- */
.index_slider img {
  width: 100%;
}

.index_h1 {
  font-family: "Noto Sans JP", sans-serif, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  text-align: center;
  font-size: 2.5em;
  color: #4472c4;
}

.a_i_center {
  align-items: center;
}

.index_btn {
  display: block;
  margin: auto;
  position: relative;
  color: #4472c4;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  padding: 20px 0;
  width: 300px;
  border: solid 1px #4472c4;
  cursor: pointer;
}
.index_btn:before {
  content: "→";
  font-size: 2em;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
.index_btn:hover:before {
  right: 10px;
}

.index_con1_bgimg {
  background-color: #d9e9f0;
}

.index_con1 {
  text-align: center;
}
.index_con1 > h3 {
  font-weight: bold;
  font-size: 1.5em;
  font-family: "Noto Sans JP";
}
.index_con1 > h2 {
  font-weight: bold;
  margin: 20px auto;
  font-size: min(40px, 7vw);
  font-family: serif, "Noto Serif JP";
}

.index_con2 {
  position: relative;
}
.index_con2 span {
  position: absolute;
  right: 0;
  font-weight: bold;
  font-size: max(7vw, 80px);
  color: #d9e9f0;
  top: 80px;
  z-index: -1;
}

.index_text h1 {
  position: relative;
  color: #4472c4;
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 30px;
}
.index_text h1::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  background-color: #4472c4;
  bottom: -10px;
}
.index_text h2 {
  font-weight: bold;
  font-size: 2em;
  font-family: serif, "Noto Serif JP";
}
.index_text a.more {
  display: block;
  color: #4472c4;
  font-size: 1.4rem;
  font-weight: bold;
  text-decoration: none;
  margin-top: 40px;
  transition: 0.3s;
  cursor: pointer;
}
.index_text a.more:hover {
  transform: translateX(10px);
}

.index_con3_bg {
  background-color: #d9e9f0;
}

.index_con3 {
  position: relative;
  padding: 4em 0 7em;
}
.index_con3 p {
  text-align: center;
}
.index_con3 p span {
  font-weight: bold;
  font-size: max(4vw, 70px);
  color: #ffa232;
  font-family: serif, "Noto Serif JP";
  border-bottom: 3px solid;
}
.index_con3 .box_col_02 {
  align-items: start;
}
.index_con3 .box_col_02 .index_text h2 {
  font-size: 1rem;
  font-weight: 500;
}
.index_con3 .box_col_02 .con3_fig {
  position: relative;
  padding: 0 30px 30px;
}

.index_con4 .sp_col_reverse {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column-reverse;
  position: relative;
}

h2[class^=h2_num] > span {
  font-family: "Noto Sans JP", sans-serif, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 2.2em;
  color: #4472c4;
  position: absolute;
  top: -100px;
  z-index: 0;
}

.news_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.news_list .news_list_item {
  width: 100%;
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
}
.news_list .news_list_item > a.news_thumb {
  display: block;
  overflow: hidden;
  width: 30%;
  aspect-ratio: 3/2;
}
.news_list .news_list_item > a img {
  position: relative;
  min-width: 100%;
  min-height: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
}
.news_list .news_list_item > a img:hover {
  transform: translate(-50%, -50%) scale(1.2);
}
.news_list .news_list_item time {
  font-size: 0.8rem;
  color: #4472c4;
  font-weight: bold;
  position: absolute;
  left: 37%;
}
.news_list .news_list_item > a.news_title {
  font-size: 1rem;
  width: 65%;
  padding-top: 1.5rem;
  text-decoration: none;
  color: #000;
}
.news_list .news_icon_new {
  display: inline-block;
  background: #4472c4;
  color: #fff;
  font-size: 0.8em;
  font-weight: bold;
  margin-left: 0.3em;
  padding: 0.3em 0.5em;
  border-radius: 5px;
  position: absolute;
  left: calc(37% + 50px);
}
.news_list .news_icon_new:before {
  content: "NEW";
}

/*----------------------------------------------------------------------------
******************************************************************************
** pager
******************************************************************************
----------------------------------------------------------------------------*/
.pager {
  margin: 40px 0 0;
}
.pager .pager_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.pager .pager_list .page-numbers {
  border: 1px solid #4472c4;
  border-radius: 5px;
  color: #4472c4 !important;
  display: block;
  font-size: 1rem;
  margin: 0 2px;
  padding: 5px 0;
  text-decoration: none;
  text-align: center;
  width: 2.4rem;
  transition: all 0.5s ease;
}
.pager .pager_list .page-numbers:not(.dots):hover, .pager .pager_list .page-numbers.current {
  background: #4472c4;
  color: #fff !important;
}
.pager .pager_list .page-numbers.dots {
  border-color: #4472c4;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** page
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.page_main,
.single_main,
.archive_main {
  min-height: 100px;
  background: #d9e9f0;
  display: flex;
  align-items: center;
}
.page_main h1,
.single_main h1,
.archive_main h1 {
  font-family: serif, "Noto Serif JP";
  font-weight: bold;
  font-size: max(4vw, 50px);
  color: #000;
}

.page,
.single,
#news {
  margin: 50px auto;
}
.page h1,
.single h1,
#news h1 {
  display: inline-block;
  position: relative;
  color: #4472c4;
  font-family: "Noto Sans JP", sans-serif, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 30px;
}
.page h1::before,
.single h1::before,
#news h1::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  background-color: #4472c4;
  bottom: -10px;
}
.page h2,
.single h2,
#news h2 {
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 1em;
  font-family: serif, "Noto Serif JP";
}
.page h3,
.single h3,
#news h3 {
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 1em;
  font-family: "Noto Sans JP", sans-serif, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
.page h4,
.single h4,
#news h4 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 1em;
}
.page h5,
.single h5,
#news h5 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1em;
}
.page h6,
.single h6,
#news h6 {
  font-weight: bold;
  margin-bottom: 1em;
}
.page p,
.single p,
#news p {
  line-height: 2.5rem;
  margin: 1em 0;
}
.page figure img,
.single figure img,
#news figure img {
  width: 100%;
}
.page img,
.single img,
#news img {
  width: 100%;
}

.page .btn_bdr_page a {
  border-radius: 4px;
  cursor: pointer;
  display: inline-block;
  text-decoration: none !important;
  line-height: 1.1;
  padding: 0.7em 1em;
  position: relative;
  font-size: 2rem;
  text-align: center;
  border: 1px solid rgb(20, 50, 160);
  background-color: #4472c4;
  color: #fff !important;
}
.page .btn_bdr_page a:hover, .page .btn_bdr_page a .btn_bdr_blue.active {
  background-color: #fff;
  color: #4472c4 !important;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** form
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.form table th {
  font-size: 1.3rem;
}
.form input[type=text], .form input[type=email], .form input[type=tel] {
  width: 100%;
  border: 1px solid #000;
  padding: 10px;
  background: #fff;
}
.form input[type=text]:focus, .form input[type=email]:focus, .form input[type=tel]:focus {
  background-color: #d9e9f0;
}
.form input[type=file] {
  width: 100%;
  background: #fff;
}
.form input[type=file]::file-selector-button {
  padding: 8px;
  margin-right: 1.5em;
}
.form input[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; /* デフォルトのスタイルを消す */
  border: 1px solid #4472c4;
  border-radius: 50%;
  height: 20px;
  left: -0.5em; /* ラジオボタンとラベルの余白 */
  margin: 0;
  position: relative;
  width: 20px;
}
.form input[type=radio]::before {
  background-color: #4472c4;
  border-radius: 50%;
  bottom: 0;
  content: "";
  height: 14px;
  left: 0;
  margin: auto;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 14px;
}
.form input[type=radio] {
  /* チェックされたらラジオボタン内側を表示 */
}
.form input[type=radio]:checked::before {
  opacity: 1;
}
.form .wpcf7-radio {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 1em;
}
.form .wpcf7-radio .wpcf7-list-item {
  min-width: 70px;
}
.form .wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label {
  font-size: 18px;
}
.form textarea {
  width: 100%;
  border: 1px solid #000;
  padding: 10px;
  background: #fff;
}
.form textarea:focus {
  background-color: #d9e9f0;
}
.form span.required {
  color: #ff0000;
  font-size: 0.8em;
  display: block;
}

.confirm .confirm_content {
  white-space: pre-wrap;
}
.confirm span[class^=confirm] {
  font-size: 1.5em;
}

/*----------------------------------------------------------------------------
	******************************************************************************
	** style
	******************************************************************************
	----------------------------------------------------------------------------*/
.mcon {
  word-wrap: break-word;
}
.mcon a img:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
.mcon h1 {
  font-size: 20px;
  margin-bottom: 20px;
}
.mcon h2 {
  font-size: 18px;
  margin-bottom: 10px;
  margin-top: 20px;
}
.mcon h3 {
  font-size: 16px;
  margin-bottom: 8px;
  margin-top: 16px;
}
.mcon h4 {
  font-size: 1.2em;
  margin-bottom: 5px;
  margin-top: 5px;
}
.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;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** style
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.mcon {
  line-height: 1.6;
  word-wrap: break-word;
}
.mcon a img:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
.mcon h1 {
  font-size: 20px;
  margin-bottom: 20px;
}
.mcon h2 {
  font-size: 18px;
  margin-bottom: 10px;
  margin-top: 20px;
}
.mcon h3 {
  font-size: 16px;
  margin-bottom: 8px;
  margin-top: 16px;
}
.mcon h4 {
  font-size: 1.2em;
  margin-bottom: 5px;
  margin-top: 5px;
}
.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 {
  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;
}

.tbl_bdr_btm th {
  display: block;
}
.tbl_bdr_btm td {
  display: block;
}/*# sourceMappingURL=sp.css.map */