@charset "UTF-8";
/******************************************************************************
******************************************************************************
**
** style.cssにおいて ( var.3.1.3 )
** -- baseでは基本タグとサイト大枠のCSS指定
** -- headerではヘッダーのCSS指定
** -- global navではグローバルナビのCSS指定
** -- contentではコンテント・メイン・サイドナビのCSS指定
** -- footerではフッターのCSS指定
** -- pagetopではページトップボタンのCSS指定
** -- indexではトップページのCSS指定
** -- pageでは汎用ページのCSS指定
** -- styleでは汎用ページのコンテンツ（データ入れ）で使用する基本タグのCSS指定
**
** 注意事項
** -- CSSの命名規則はApplicatsオリジナルの命名規則を採用しています。
** -- 初期フォントサイズはreset.cssにて13pxにリセットしています。
** -- 行間は1.6にリセットしています。
**        単位は不要です。(スタイル崩れする可能性有)
** -- コンテンツ内のフォントサイズ・行間は
**        [ base ]のcontentsクラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** style
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
html, body {
  display: flex;
  flex-direction: column;
}

body {
  min-height: 100vh;
  background: #E6ECF3;
}

/*----------------------------------------------------------------------------
******************************************************************************
** base color
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** base font
******************************************************************************
----------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** tablet
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 10;
  background: #fff;
}
.hd_bg .hd {
  padding: 10px;
}
.hd_bg .hd_logo {
  width: calc(100% - 15vw);
}
.hd_bg .hd_logo a {
  display: flex;
  align-items: center;
  color: #313131;
}
.hd_bg .hd_logo a .hd_logo_img {
  width: 100%;
  max-width: 150px;
  height: auto;
  margin-right: 15px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .hd_bg .hd_logo a .hd_logo_img {
    max-width: 240px;
  }
}
@media screen and (min-width: 520px) and (max-width: 768px) {
  .hd_bg .hd_logo a .hd_logo_img {
    max-width: 200px;
  }
}
.hd_bg .hd_logo a .hd_logo_ttl {
  display: block;
  padding-left: 15px;
  font-size: clamp(1.2rem, 0.745rem + 2.27vw, 2.2rem);
  font-weight: 500;
  line-height: 1em;
  transform: rotate(0.03deg);
  border-left: 1px solid #ddd;
  line-height: 1.5em;
}
.hd_bg .hd_logo a .hd_logo_ttl > span {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: clamp(0.6rem, 0.327rem + 1.36vw, 1.2rem);
  transform: rotate(0deg);
  line-height: 1.3em;
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.nav_bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 100vh;
  background: #37B8B6;
  transition: all 0.3s ease;
}
.nav_bg.sp_nav_open {
  z-index: 999;
  opacity: 1;
  visibility: visible;
}
.nav_bg .nav {
  position: fixed;
  z-index: 1;
  width: 100%;
  height: 100vh;
  padding: 70px 20px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.nav_bg .nav_list > li {
  position: relative;
}
.nav_bg .nav_list > li > a {
  position: relative;
  display: block;
  padding: 20px 15px 20px 35px;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  border-bottom: 1px solid #fff;
  transform: rotate(0.03deg);
  transition: all 0.3s ease;
}
.nav_bg .nav_list > li > a::before {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: url(../images/icon_nav_ov_sp.svg) no-repeat center center;
  transition: all 0.3s ease;
  opacity: 0;
}
.nav_bg .nav_list > li > a:hover, .nav_bg .nav_list > li > a:focus {
  background: #fff;
  color: #37B8B6;
}
.nav_bg .nav_list > li > a:hover::before, .nav_bg .nav_list > li > a:focus::before {
  background: url(../images/icon_nav_ov.svg) no-repeat center center;
  opacity: 1;
}
.nav_bg .nav_list > li.current > a::before {
  opacity: 1;
}
.nav_bg .nav_list > li .child_wrap_btn {
  position: absolute;
  top: 1.4em;
  right: 0;
  z-index: 10;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: #fff;
}
.nav_bg .nav_list > li .child_wrap_btn::before, .nav_bg .nav_list > li .child_wrap_btn::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 1px;
  background-color: #37B8B6;
}
.nav_bg .nav_list > li .child_wrap_btn::before {
  top: 50%;
  left: 50%;
  transform: rotate(0deg) translateX(-50%);
}
.nav_bg .nav_list > li .child_wrap_btn::after {
  top: 50%;
  left: 25%;
  transform: rotate(90deg);
  transition: all 0.3s ease;
}
.nav_bg .nav_list > li .child_wrap_btn.close::after {
  transform: rotate(0deg);
}
.nav_bg .nav_list > li .child_wrap {
  display: none;
}
.nav_bg .nav_list > li .child_wrap > .sub-menu li {
  position: relative;
}
.nav_bg .nav_list > li .child_wrap > .sub-menu li a {
  display: flex;
  align-items: center;
  padding: 1em 1em 1em 1.5em;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  font-size: 13px;
  text-decoration: none;
  transform: rotate(0.03deg);
  border-bottom: 1px solid #fff;
}
.nav_bg .nav_list > li .child_wrap > .sub-menu li a::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  margin-right: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}
.nav_bg .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn {
  position: absolute;
  top: 0.65em;
  right: 0.5em;
  z-index: 10;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: #fff;
}
.nav_bg .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn::before, .nav_bg .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 1px;
  background-color: #37B8B6;
}
.nav_bg .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn::before {
  top: 50%;
  left: 50%;
  transform: rotate(0deg) translateX(-50%);
}
.nav_bg .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn::after {
  top: 50%;
  left: 0.5em;
  transform: rotate(90deg);
  transition: all 0.3s ease;
}
.nav_bg .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn.close::after {
  transform: rotate(0deg);
}
.nav_bg .nav_list > li .child_wrap > .sub-menu li .child_wrap > .sub-menu li {
  position: relative;
}
.nav_bg .nav_list > li .child_wrap > .sub-menu li .child_wrap > .sub-menu li a {
  display: flex;
  align-items: center;
  padding: 1em 1em 1em 2em;
  background-color: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 11px;
  text-decoration: none;
  border-bottom: 1px solid #fff;
}
.nav_bg .nav_list > li .child_wrap > .sub-menu li .child_wrap > .sub-menu li a::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  margin-right: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}
.nav_bg .nav_list > li .child_wrap > .sub-menu li .child_wrap > .sub-menu li .child_wrap > .sub-menu {
  background: #ccc;
}

.sp_nav_open {
  right: 0 !important;
}

.sp_nav_trigger {
  cursor: pointer;
  position: fixed !important;
  top: 25px;
  right: 15px;
  z-index: 1000;
  width: 36px;
  height: 24px;
  margin-top: -5px;
  padding: 0;
  background: transparent;
  border: none;
}
.sp_nav_trigger span {
  display: inline-block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #37B8B6;
  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: 11px;
}
.sp_nav_trigger span:nth-of-type(3) {
  bottom: 0;
}
.sp_nav_trigger.sp_active span:nth-of-type(1) {
  transform: translateY(12px) rotate(-45deg);
  background: #fff;
}
.sp_nav_trigger.sp_active span:nth-of-type(2) {
  opacity: 0;
  background: #fff;
}
.sp_nav_trigger.sp_active span:nth-of-type(3) {
  transform: translateY(-10px) rotate(45deg);
  background: #fff;
}

/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.con_bg {
  overflow-x: hidden;
  padding: 30px 10px;
}
.con_bg .con {
  padding: 30px 10px;
  background: #fff;
}
.con_bg .con .main {
  margin-bottom: 30px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
  margin-top: auto;
  background: #fff;
}
.ft_bg .ft {
  padding: 20px 10px;
}
.ft_bg .ft_logo {
  width: calc(100% - 15vw);
}
.ft_bg .ft_logo a {
  display: flex;
  align-items: center;
  color: #313131;
}
.ft_bg .ft_logo a .ft_logo_img {
  width: 100%;
  max-width: 150px;
  height: auto;
  margin-right: 15px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .ft_bg .ft_logo a .ft_logo_img {
    max-width: 240px;
  }
}
@media screen and (min-width: 520px) and (max-width: 768px) {
  .ft_bg .ft_logo a .ft_logo_img {
    max-width: 200px;
  }
}
.ft_bg .ft_logo a .ft_logo_ttl {
  display: block;
  margin-top: 0.5em;
  padding-left: 15px;
  font-size: clamp(1.2rem, 0.745rem + 2.27vw, 2.2rem);
  font-weight: 500;
  transform: rotate(0.03deg);
  border-left: 1px solid #ddd;
  line-height: 1.5em;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .ft_bg .ft_logo a .ft_logo_ttl {
    margin-top: 0;
  }
}
@media screen and (min-width: 520px) and (max-width: 768px) {
  .ft_bg .ft_logo a .ft_logo_ttl {
    margin-top: 0;
  }
}
.ft_bg .ft_logo a .ft_logo_ttl > span {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: clamp(0.6rem, 0.327rem + 1.36vw, 1.2rem);
  transform: rotate(0deg);
  line-height: 1.3em;
}
.ft_bg .ft_copy {
  padding: 20px 10px;
  background: #37B8B6;
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  transform: rotate(0.03deg);
}

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 100;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  padding: 0;
  background-color: #9F9F9F;
  border: none;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.pt:hover {
  opacity: 0.7;
}
.pt .pt_btn {
  cursor: pointer;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 3px;
  height: 25px;
  background: currentColor;
  color: #fff;
  line-height: 1;
}
.pt .pt_btn::before {
  position: absolute;
  top: -0.08em;
  right: 50%;
  transform: rotate(-45deg);
  transform-origin: top right;
  content: "";
  width: 15px;
  height: 15px;
  border: 3px solid currentColor;
  border-bottom: 0;
  border-left: 0;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pager
******************************************************************************
----------------------------------------------------------------------------*/
.pager {
  margin: 40px 0 0;
}
.pager .pager_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.pager .pager_list .page-numbers {
  display: block;
  margin: 0 0.3em;
  padding: 0.5em 1em;
  color: #37B8B6 !important;
  text-align: center;
  border: 1px solid #37B8B6;
  border-radius: 50vh;
  transition: all 0.5s ease;
  transform: rotate(0.03deg);
}
.pager .pager_list .page-numbers:not(.dots):hover, .pager .pager_list .page-numbers:not(.dots):focus, .pager .pager_list .page-numbers.current {
  background: #37B8B6;
  color: #FFF !important;
}
.pager .pager_list .page-numbers.dots {
  border-color: #37B8B6;
}

/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.index_slider_bg {
  position: relative;
}
.index_slider_bg .index_slider {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.index_slider_bg .index_slider h2 {
  position: absolute;
  top: 30%;
  left: 0;
  z-index: 1;
  transform: translateY(-30%);
  padding: 0 10px;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(2rem, 1.818rem + 0.91vw, 2.4rem);
  font-weight: 500;
  line-height: 2em;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .index_slider_bg .index_slider h2 {
    line-height: 2.5em;
  }
}
@media screen and (min-width: 520px) and (max-width: 768px) {
  .index_slider_bg .index_slider h2 {
    line-height: 2.5em;
  }
}
.index_slider_bg .index_slider h2 br {
  display: none;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .index_slider_bg .index_slider h2 br {
    display: block;
  }
}
@media screen and (min-width: 520px) and (max-width: 768px) {
  .index_slider_bg .index_slider h2 br {
    display: block;
  }
}
.index_slider_bg .index_slider .index_news {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1000px;
  height: auto;
  min-height: 90px;
  background: rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .index_slider_bg .index_slider .index_news {
    bottom: 70px;
  }
}
@media screen and (min-width: 520px) and (max-width: 768px) {
  .index_slider_bg .index_slider .index_news {
    bottom: 70px;
  }
}
.index_slider_bg .index_slider .index_news_item {
  width: 100%;
  padding: 10px 15px;
}
.index_slider_bg .index_slider .index_news_item_date {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  gap: 10px;
  width: 200px;
  margin-bottom: 10px;
}
.index_slider_bg .index_slider .index_news_item_date .cate {
  flex-shrink: 0;
  display: block;
  width: 100%;
  max-width: 110px;
  padding: 5px 10px;
  font-size: clamp(0.8rem, 0.618rem + 0.91vw, 1.2rem);
  text-align: center;
  border-radius: 30vh;
  transform: rotate(0.03deg);
}
.index_slider_bg .index_slider .index_news_item_date time {
  color: #fff;
  font-size: 1.2rem;
  transform: rotate(0.03deg);
}
.index_slider_bg .index_slider .index_news_item .index_news_item_ttl {
  width: calc(100% - 45px);
  transform: rotate(0.03deg);
  font-size: clamp(1rem, 0.818rem + 0.91vw, 1.4rem);
}
.index_slider_bg .index_slider .index_news_item .index_news_item_ttl a {
  display: block;
  color: #fff;
  transition: all 0.5s ease;
}
.index_slider_bg .index_slider .index_news_item .index_news_item_ttl a:hover, .index_slider_bg .index_slider .index_news_item .index_news_item_ttl a:focus {
  text-decoration: underline;
}
.index_slider_bg .index_slider .index_news_more {
  position: absolute;
  top: 50%;
  right: 15px;
  z-index: 1;
  transform: translateY(-50%);
  padding: 0;
  background: transparent;
  border: none;
}
.index_slider_bg .index_slider .index_news_more a {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50vh;
  transition: all 0.5s ease;
}
.index_slider_bg .index_slider .index_news_more a::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: block;
  width: 18px;
  height: 10px;
  background: url(../images/icon_arrow_white.svg) no-repeat center center;
  transition: all 0.5s ease;
}
.index_slider_bg .index_slider .index_news_more a:hover, .index_slider_bg .index_slider .index_news_more a:focus {
  background: #F4A000;
}
.index_slider_bg .index_slider .index_news_more a span {
  display: none;
}
.index_slider_bg img {
  width: 100%;
  height: 100dvh !important;
  max-height: 555px !important;
  -o-object-fit: cover;
     object-fit: cover;
}

.index_main h2 {
  position: relative;
  margin: 10px 0 5px;
  color: #37B8B6;
  font-family: "Poppins", sans-serif;
  font-size: clamp(3rem, 2.545rem + 2.27vw, 4rem);
  text-align: center;
  letter-spacing: 0.03em;
  transform: rotate(0);
}
.index_main h2::before {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  background: url(../images/icon_nav_ov.svg) no-repeat center center;
  background-size: cover;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .index_main h2::before {
    width: 15px;
    height: 15px;
  }
}
.index_main h2::after {
  content: attr(data-subttl);
  display: block;
  margin-top: -0.5em;
  color: #313131;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: clamp(1.6rem, 1.418rem + 0.91vw, 2rem);
  transform: rotate(0.03deg);
}
.index_main h3 {
  margin-bottom: 0.3em;
  font-size: clamp(2rem, 1.818rem + 0.91vw, 2.4rem);
  font-weight: 500;
}
.index_main p {
  margin-bottom: 1em;
  line-height: 2em;
}
.index_main .index_about h2::after {
  margin-top: 0;
}
.index_main .index_sns .facebook_wrap {
  max-width: 500px;
  margin: 0 auto;
}
.index_main .index_sns .facebook_wrap > .fb-group {
  width: 100%;
}
.index_main .index_sns .facebook_wrap > .fb-group > span,
.index_main .index_sns .facebook_wrap iframe {
  width: 100% !important;
}
.index_main .index_contact h3 {
  font-size: clamp(1.6rem, 1.509rem + 0.45vw, 1.8rem);
}
.index_main .index_contact address {
  font-size: clamp(1.2rem, 1.109rem + 0.45vw, 1.4rem);
}
.index_main .index_contact_map {
  display: flex;
  justify-content: center;
  width: 100vw;
  height: -moz-max-content;
  height: max-content;
  margin: 20px calc(50% - 50vw) 0;
}
.index_main .index_contact_map iframe {
  aspect-ratio: 16/9;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  max-height: 550px;
  padding: 0 10px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
.news_list .news_item {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
}
.news_list .news_item_date {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  gap: 10px;
  width: 200px;
}
.news_list .news_item_date .cate {
  flex-shrink: 0;
  display: block;
  width: 100%;
  max-width: 110px;
  padding: 5px 10px;
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  border-radius: 30vh;
  transform: rotate(0.03deg);
}
.news_list .news_item_date .cate.news {
  background: #F4A000;
}
.news_list .news_item_date time {
  transform: rotate(0.03deg);
}
.news_list .news_item_ttl {
  transform: rotate(0.03deg);
}
.news_list .news_item_ttl a {
  display: block;
  color: #313131;
  transition: all 0.5s ease;
}
.news_list .news_item_ttl a:hover, .news_list .news_item_ttl a:focus {
  text-decoration: underline;
}

.news_back {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  margin: 40px auto 0;
  padding: 0;
  background: transparent;
  border: 2px solid #37B8B6;
}
.news_back a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 10px;
  background: #37B8B6;
  color: #fff;
  font-weight: 500;
  transform: rotate(0.03deg);
  transition: all 0.3s ease;
}
.news_back a:hover, .news_back a:focus {
  background: #fff;
  color: #37B8B6;
}

/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mcon {
  line-height: 1.6;
  word-wrap: break-word;
}
.mcon a img:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
.mcon h1 {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 13px 0 30px;
  color: #37B8B6;
  font-size: 3rem;
  letter-spacing: 0.03em;
  transform: rotate(0);
}
.mcon h1::before {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  background: url(../images/icon_nav_ov.svg) no-repeat center center;
  background-size: cover;
}
.mcon h2 {
  position: relative;
  margin-top: 20px;
  margin-bottom: 10px;
  padding-top: 10px;
  font-size: 2.2rem;
}
.mcon h2::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  background: #ddd;
  border-radius: 50vh;
}
.mcon h2::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 20%;
  height: 5px;
  background: #37B8B6;
  border-radius: 50vh;
}
.mcon h3 {
  position: relative;
  margin-top: 20px;
  margin-bottom: 10px;
  padding-left: 15px;
  font-size: 2rem;
}
.mcon h3::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 5px;
  height: 100%;
  background: #37B8B6;
  border-radius: 50vh;
}
.mcon h4 {
  position: relative;
  margin-top: 20px;
  margin-bottom: 10px;
  padding-left: 30px;
  font-size: 1.8rem;
}
.mcon h4::before {
  position: absolute;
  top: 1.2rem;
  left: 0;
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: #37B8B6;
}
.mcon h5, .mcon h6 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 1.6rem;
}
.mcon hr {
  border: none;
  border-top: 1px dotted #000;
}
.mcon iframe {
  aspect-ratio: 16/9;
  max-width: 100%;
  height: 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;
  line-height: 2em;
  transform: rotate(0.03deg);
}
.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;
  line-height: 2em;
  transform: rotate(0.03deg);
}/*# sourceMappingURL=sp.css.map */